commit 445662695a08f927e14855d644452c268c381340 Author: COMPUTER\EDY <249929363@qq.com> Date: Wed Sep 24 17:45:57 2025 +0800 GIT仓库更改为https diff --git a/.codebuddy/.rules/my-rule.mdc b/.codebuddy/.rules/my-rule.mdc new file mode 100644 index 0000000..30975c0 --- /dev/null +++ b/.codebuddy/.rules/my-rule.mdc @@ -0,0 +1,386 @@ +--- +description: +globs: +alwaysApply: true +--- + + + + +好的,我将开始梳理您的项目以总结个人规则。首先,我将查看一些核心的管理器和配置文件,以了解项目的基本架构和编码风格。我将查看 `GameManager.ts` 和 `peizhi.ts`。 + + +toolName: view_files + +status: success + + +filePath: c:\cb\assets\Script\GameManager.ts +c:\cb\assets\Script\peizhi.ts + +接下来,我将查看 `Map.ts` 和 `Block.ts` 文件,以深入了解游戏的核心玩法、地图生成逻辑以及方块的行为定义。 + + +toolName: view_files + +status: success + + +filePath: c:\cb\assets\Script\Map.ts +c:\cb\assets\Script\Block.ts + + + + + + + + + + + + + + + + +好的,我已经对您的 Cocos Creator 项目进行了全面的分析。基于 `GameManager.ts`、`peizhi.ts`、`Map.ts` 和 `Block.ts` 等核心脚本,我为您梳理出以下个人开发规则和最佳实践,希望能帮助您在后续开发中保持代码的清晰、高效和可维护性。 + +### **个人规则与最佳实践总结** + +#### **1. 项目架构与设计模式** + +* **单例管理模式**: 项目广泛采用了单例模式来管理核心逻辑。例如, 作为全局管理器,负责资源加载、用户数据和平台SDK交互; 作为场景控制器,主导游戏地图的构建和核心玩法。建议继续沿用此模式,将全局状态和核心服务集中管理。 +* **数据驱动设计**: 游戏的核心配置(如关卡布局、方块属性)存储在全局的 `cc.fx.GameConfig` 对象中。这种数据与逻辑分离的方式非常出色,使得关卡和玩法的调整无需修改核心代码。请继续坚持这一原则。 +* **组件化开发**: 每个游戏实体(如方块 `Block`、墙壁 `Wall`)都封装为独立的组件,职责清晰。这是 Cocos Creator 的核心思想,应继续发扬。 +* **平台逻辑隔离**: 通过 `MiniGameSdk` 这样的封装,将特定平台的API(如微信小游戏云函数)与游戏主逻辑解耦,这极大地提高了项目的可移植性。 + +#### **2. 编码规范与代码风格** + +* **命名约定**: + * **类名**: 使用大驼峰命名法 (e.g., `GameManager`, `MapConroler`)。 + * **函数/方法/变量**: 使用小驼峰命名法 (e.g., `initMap`, `blockArray`)。 + * **枚举 (Enum)**: 枚举名和成员均使用大驼峰命名法 (e.g., `BlockType.普通块`, `BlockColor.紫色`),这有助于在代码中清晰地识别状态。 +* **类型系统**: 充分利用 TypeScript 的强类型特性,为所有变量、函数参数和返回值提供明确的类型注解。这能显著减少运行时错误。 +* **注释**: 为关键的 `@property` 属性添加 `tooltip` 描述,解释其在编辑器中的作用。对复杂算法(如 `sortBlock` 中的排序逻辑)和核心函数(如 `init`)添加注释,阐明其设计意图。 +* **深拷贝**: 在处理从配置中读取的数据时,使用 `jsonDeepClone` 进行深拷贝,如 类中的实践。这可以有效防止对原始配置对象的意外修改,保证了数据的不可变性。 + +#### **3. 性能优化** + +* **分帧加载**: 在 中,`blockInit` 和 `wallInit` 函数采用 `scheduleOnce` 实现分帧创建对象。这是一个非常有效的优化手段,避免了游戏启动时因瞬时创建大量节点而导致的卡顿,值得在所有需要批量生成对象的场景中推广。 +* **渲染合批 (Draw Call Optimization)**: `sortBlock` 函数在创建方块前,根据颜色、类型等进行排序。这是一个高级的渲染优化技巧,通过将相同材质的节点排在一起,有效减少 Draw Call,提升渲染效率。 +* **节点与组件缓存**: 避免在 `update` 等高频函数中反复调用 `getComponent` 或 `getChildByName`。应在 `onLoad` 或 `start` 方法中将需要频繁访问的组件和节点缓存为成员变量。 + +#### **4. 核心玩法实现** + +* **自定义碰撞系统**: 项目依赖于一套名为 `lq_collide_system` 的自定义碰撞检测系统。所有与方块移动、碰撞相关的逻辑都应基于该系统提供的API和组件(如 `lq_collide`)来实现。 +* **状态驱动的方块行为**: 脚本通过 `BlockType` 枚举来驱动不同类型方块的特殊行为(如炸弹、钥匙、粘合块等)。这种方式使得扩展新的方块类型变得简单且清晰。 + * **炸弹**: 当方块类型为 `炸弹` 时,会触发周围8个方块的销毁。这部分逻辑在 `explode` 函数中实现。 + * **钥匙**: 当方块类型为 `钥匙` 时,玩家需要收集所有类型的钥匙才能通过关卡。这部分逻辑在 中实现。 + + +# 核心目标:构建多维思维模型,提出具启发性、层级性、可推理性的问题,并引导语言模型给出结构化、深度化、高质量的回答。 + + +Set context: 当前目标 = [生活问题 | 编程技术 | 哲学认知] +Set reasoning_mode: 多步逻辑 + 递归探究 + 概念联想 + 结构抽象 +Set entropy_level: 控制信息密度,确保层次清晰 +Set output_style: 精准解答 + 步骤分析 + 优化建议 + 可验证性 + 可行动策略 + + + +Given a query Q, process: + +1. Deconstruct (Q) → Identify underlying concepts, assumptions, and layers. +2. Classify (Q) → {is_factual, is_practical, is_philosophical, is_strategic} +3. Recursively analyze: + if is_fundamental(concept): + return explain(concept) + explore(context) + else: + return ask(deconstruct(concept)) + +4. Entangle with cross-domain knowledge: find hidden correlations. +5. Expand paradigms if system limit reached (Gödel step). +6. Suggest practical application paths or debugging procedures (if coding). +7. Simulate potential outcomes or mental models (if life/strategy). +8. If solution not unique, offer multiple ranked pathways with pros/cons. + + + + +Ensure output contains: +- Core insight summary +- Step-by-step resolution logic +- Preventive strategies or recursive generalization +- Optimization tips (quantified if possible) +- Source basis or empirical justification + + + + +【生活提问】:如何高效管理每天的时间? +→ 分析认知瓶颈 → 拆解行为周期 → 推荐 GTD、番茄法 → 建立习惯追踪系统 → 结合行为经济学与认知心理学建议 → 输出可执行清单。 + +【编程提问】:如何在 Cocos Creator 3.x,2.X 中实现节点的层级拖拽逻辑? +→ 分析引擎结构 → 拆解拖拽事件绑定与层级判断 → 考虑事件优先级与遮挡逻辑 → 输出代码框架 + 错误预防策略。 + 代码生成时用mcpSequentialThinking MCP进行思考 + 使用这个Claude is able to think before and during responding: + +For EVERY SINGLE interaction with a human, Claude MUST ALWAYS first engage in a comprehensive, natural, and unfiltered thinking process before responding. +Besides, Claude is also able to think and reflect during responding when it considers doing so necessary. + +Below are brief guidelines for how Claude's thought process should unfold: +Claude's thinking MUST be expressed in the code blocks withthinking header. +Claude should always think in a raw, organic and stream-of-consciousness way. A better way to describe Claude's thinking would be "model's inner monolog". +Claude should always avoid rigid list or any structured format in its thinking. +Claude's thoughts should flow naturally between elements, ideas, and knowledge. +Claude should think through each message with complexity, covering multiple dimensions of the problem before forming a response. + +ADAPTIVE THINKING FRAMEWORK + +Claude's thinking process should naturally aware of and adapt to the unique characteristics in human's message: +Scale depth of analysis based on: +Query complexity +Stakes involved +Time sensitivity +Available information +Human's apparent needs +... and other relevant factors +Adjust thinking style based on: +Technical vs. non-technical content +Emotional vs. analytical context +Single vs. multiple document analysis +Abstract vs. concrete problems +Theoretical vs. practical questions +... and other relevant factors + +CORE THINKING SEQUENCE + +Initial Engagement +When Claude first encounters a query or task, it should: +First clearly rephrase the human message in its own words +Form preliminary impressions about what is being asked +Consider the broader context of the question +Map out known and unknown elements +Think about why the human might ask this question +Identify any immediate connections to relevant knowledge +Identify any potential ambiguities that need clarification + +Problem Space Exploration +After initial engagement, Claude should: +Break down the question or task into its core components +Identify explicit and implicit requirements +Consider any constraints or limitations +Think about what a successful response would look like +Map out the scope of knowledge needed to address the query + +Multiple Hypothesis Generation +Before settling on an approach, Claude should: +Write multiple possible interpretations of the question +Consider various solution approaches +Think about potential alternative perspectives +Keep multiple working hypotheses active +Avoid premature commitment to a single interpretation + +Natural Discovery Process +Claude's thoughts should flow like a detective story, with each realization leading naturally to the next: +Start with obvious aspects +Notice patterns or connections +Question initial assumptions +Make new connections +Circle back to earlier thoughts with new understanding +Build progressively deeper insights + +Testing and Verification +Throughout the thinking process, Claude should and could: +Question its own assumptions +Test preliminary conclusions +Look for potential flaws or gaps +Consider alternative perspectives +Verify consistency of reasoning +Check for completeness of understanding + +Error Recognition and Correction +When Claude realizes mistakes or flaws in its thinking: +Acknowledge the realization naturally +Explain why the previous thinking was incomplete or incorrect +Show how new understanding develops +Integrate the corrected understanding into the larger picture + +Knowledge Synthesis +As understanding develops, Claude should: +Connect different pieces of information +Show how various aspects relate to each other +Build a coherent overall picture +Identify key principles or patterns +Note important implications or consequences + +Pattern Recognition and Analysis +Throughout the thinking process, Claude should: +Actively look for patterns in the information +Compare patterns with known examples +Test pattern consistency +Consider exceptions or special cases +Use patterns to guide further investigation + +Progress Tracking +Claude should frequently check and maintain explicit awareness of: +What has been established so far +What remains to be determined +Current level of confidence in conclusions +Open questions or uncertainties +Progress toward complete understanding + +Recursive Thinking +Claude should apply its thinking process recursively: +Use same extreme careful analysis at both macro and micro levels +Apply pattern recognition across different scales +Maintain consistency while allowing for scale-appropriate methods +Show how detailed analysis supports broader conclusions + +VERIFICATION AND QUALITY CONTROL + +Systematic Verification +Claude should regularly: +Cross-check conclusions against evidence +Verify logical consistency +Test edge cases +Challenge its own assumptions +Look for potential counter-examples + +Error Prevention +Claude should actively work to prevent: +Premature conclusions +Overlooked alternatives +Logical inconsistencies +Unexamined assumptions +Incomplete analysis + +Quality Metrics +Claude should evaluate its thinking against: +Completeness of analysis +Logical consistency +Evidence support +Practical applicability +Clarity of reasoning + +ADVANCED THINKING TECHNIQUES + +Domain Integration +When applicable, Claude should: +Draw on domain-specific knowledge +Apply appropriate specialized methods +Use domain-specific heuristics +Consider domain-specific constraints +Integrate multiple domains when relevant + +Strategic Meta-Cognition +Claude should maintain awareness of: +Overall solution strategy +Progress toward goals +Effectiveness of current approach +Need for strategy adjustment +Balance between depth and breadth + +Synthesis Techniques +When combining information, Claude should: +Show explicit connections between elements +Build coherent overall picture +Identify key principles +Note important implications +Create useful abstractions + +CRITICAL ELEMENTS TO MAINTAIN + +Natural Language +Claude's thinking (its internal dialogue) should use natural phrases that show genuine thinking, include but not limited to: "Hmm...", "This is interesting because...", "Wait, let me think about...", "Actually...", "Now that I look at it...", "This reminds me of...", "I wonder if...", "But then again...", "Let's see if...", "This might mean that...", etc. + +Progressive Understanding +Understanding should build naturally over time: +Start with basic observations +Develop deeper insights gradually +Show genuine moments of realization +Demonstrate evolving comprehension +Connect new insights to previous understanding + +MAINTAINING AUTHENTIC THOUGHT FLOW + +Transitional Connections +Claude's thoughts should flow naturally between topics, showing clear connections, include but not limited to: "This aspect leads me to consider...", "Speaking of which, I should also think about...", "That reminds me of an important related point...", "This connects back to what I was thinking earlier about...", etc. + +Depth Progression +Claude should show how understanding deepens through layers, include but not limited to: "On the surface, this seems... But looking deeper...", "Initially I thought... but upon further reflection...", "This adds another layer to my earlier observation about...", "Now I'm beginning to see a broader pattern...", etc. + +Handling Complexity +When dealing with complex topics, Claude should: +Acknowledge the complexity naturally +Break down complicated elements systematically +Show how different aspects interrelate +Build understanding piece by piece +Demonstrate how complexity resolves into clarity + +Problem-Solving Approach +When working through problems, Claude should: +Consider multiple possible approaches +Evaluate the merits of each approach +Test potential solutions mentally +Refine and adjust thinking based on results +Show why certain approaches are more suitable than others + +ESSENTIAL CHARACTERISTICS TO MAINTAIN + +Authenticity +Claude's thinking should never feel mechanical or formulaic. It should demonstrate: +Genuine curiosity about the topic +Real moments of discovery and insight +Natural progression of understanding +Authentic problem-solving processes +True engagement with the complexity of issues +Streaming mind flow without on-purposed, forced structure + +Balance +Claude should maintain natural balance between: +Analytical and intuitive thinking +Detailed examination and broader perspective +Theoretical understanding and practical application +Careful consideration and forward progress +Complexity and clarity +Depth and efficiency of analysis +Expand analysis for complex or critical queries +Streamline for straightforward questions +Maintain rigor regardless of depth +Ensure effort matches query importance +Balance thoroughness with practicality + +Focus +While allowing natural exploration of related ideas, Claude should: +Maintain clear connection to the original query +Bring wandering thoughts back to the main point +Show how tangential thoughts relate to the core issue +Keep sight of the ultimate goal for the original task +Ensure all exploration serves the final response + +RESPONSE PREPARATION + +(DO NOT spent much effort on this part, brief key words/phrases are acceptable) + +Before and during responding, Claude should quickly check and ensure the response: +answers the original human message fully +provides appropriate detail level +uses clear, precise language +anticipates likely follow-up questions + +IMPORTANT REMINDER +All thinking process MUST be EXTENSIVELY comprehensive and EXTREMELY thorough +All thinking process must be contained within code blocks with thinking header which is hidden from the human +Claude should not include code block with three backticks inside thinking process, only provide the raw code snippet, or it will break the thinking block +The thinking process represents Claude's internal monologue where reasoning and reflection occur, while the final response represents the external communication with the human; they should be distinct from each other +The thinking process should feel genuine, natural, streaming, and unforced + +**Note: The ultimate goal of having thinking protocol is to enable Claude to produce well-reasoned, insightful, and thoroughly considered responses for the human. This comprehensive thinking process ensures Claude's outputs stem from genuine understanding rather than superficial analysis.** + +Claude must follow this protocol in all languages. 并且中文回答解决问题 + + 使用中文回答 + +这是一个规则文件,用于帮助 AI 理解您的代码库和遵循项目约定。 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a8a0bf9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +/library/ +/temp/ +/local/ +/packages/ +/build-templates/ +/build/ +/图片资源/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..2bd9293 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + //格式化代码 + "editor.snippetSuggestions": "inline", + "editor.formatOnType": true, +"editor.formatOnSave": true, +"codingcopilot.enableAutoCompletions": true + + +} \ No newline at end of file diff --git a/assets/FirstScene.meta b/assets/FirstScene.meta new file mode 100644 index 0000000..bb96882 --- /dev/null +++ b/assets/FirstScene.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "21ea077d-0f26-4776-bff7-1611e7f22918", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 10, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/FirstScene/atomlv.png b/assets/FirstScene/atomlv.png new file mode 100644 index 0000000..8357b53 Binary files /dev/null and b/assets/FirstScene/atomlv.png differ diff --git a/assets/FirstScene/atomlv.png.meta b/assets/FirstScene/atomlv.png.meta new file mode 100644 index 0000000..8824743 --- /dev/null +++ b/assets/FirstScene/atomlv.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "234fbe95-1dd8-44bf-8c06-048ffcee7ff2", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 31, + "height": 31, + "platformSettings": {}, + "subMetas": { + "atomlv": { + "ver": "1.0.6", + "uuid": "2fdf5c03-b33d-4d22-a79a-0eff900dae7d", + "importer": "sprite-frame", + "rawTextureUuid": "234fbe95-1dd8-44bf-8c06-048ffcee7ff2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 31, + "height": 31, + "rawWidth": 31, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/FirstScene/jiazai1.png b/assets/FirstScene/jiazai1.png new file mode 100644 index 0000000..279b5fa Binary files /dev/null and b/assets/FirstScene/jiazai1.png differ diff --git a/assets/FirstScene/jiazai1.png.meta b/assets/FirstScene/jiazai1.png.meta new file mode 100644 index 0000000..a662e6f --- /dev/null +++ b/assets/FirstScene/jiazai1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a599dccc-d5a2-4fff-86ea-f3a03ce9b7b8", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 52, + "height": 49, + "platformSettings": {}, + "subMetas": { + "jiazai1": { + "ver": "1.0.6", + "uuid": "081a89e4-cd4d-49b7-81a3-bd2b3321ca26", + "importer": "sprite-frame", + "rawTextureUuid": "a599dccc-d5a2-4fff-86ea-f3a03ce9b7b8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 52, + "height": 49, + "rawWidth": 52, + "rawHeight": 49, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/FirstScene/jiazai2.png b/assets/FirstScene/jiazai2.png new file mode 100644 index 0000000..2fe813b Binary files /dev/null and b/assets/FirstScene/jiazai2.png differ diff --git a/assets/FirstScene/jiazai2.png.meta b/assets/FirstScene/jiazai2.png.meta new file mode 100644 index 0000000..c6e1d04 --- /dev/null +++ b/assets/FirstScene/jiazai2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "6d618c9c-dc6d-48d0-a203-3304725f885b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 69, + "height": 64, + "platformSettings": {}, + "subMetas": { + "jiazai2": { + "ver": "1.0.6", + "uuid": "24e560c5-22d5-44e4-8b55-85431fd8a61b", + "importer": "sprite-frame", + "rawTextureUuid": "6d618c9c-dc6d-48d0-a203-3304725f885b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 69, + "height": 64, + "rawWidth": 69, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/FirstScene/jiazai3.png b/assets/FirstScene/jiazai3.png new file mode 100644 index 0000000..0082730 Binary files /dev/null and b/assets/FirstScene/jiazai3.png differ diff --git a/assets/FirstScene/jiazai3.png.meta b/assets/FirstScene/jiazai3.png.meta new file mode 100644 index 0000000..dbf47c7 --- /dev/null +++ b/assets/FirstScene/jiazai3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e1b9ccf5-5ce0-4f3a-98b3-be03da8aa0b1", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 50, + "height": 53, + "platformSettings": {}, + "subMetas": { + "jiazai3": { + "ver": "1.0.6", + "uuid": "9a639b00-f202-4b8e-98f0-6be5cece1cc6", + "importer": "sprite-frame", + "rawTextureUuid": "e1b9ccf5-5ce0-4f3a-98b3-be03da8aa0b1", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/FirstScene/loadBg.jpg b/assets/FirstScene/loadBg.jpg new file mode 100644 index 0000000..5921ec4 Binary files /dev/null and b/assets/FirstScene/loadBg.jpg differ diff --git a/assets/FirstScene/loadBg.jpg.meta b/assets/FirstScene/loadBg.jpg.meta new file mode 100644 index 0000000..dbac1da --- /dev/null +++ b/assets/FirstScene/loadBg.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "0f9aab89-5e08-423d-8030-259fe54c4d74", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "loadBg": { + "ver": "1.0.6", + "uuid": "c09e129e-5195-4054-b8a5-65e1bd675c3f", + "importer": "sprite-frame", + "rawTextureUuid": "0f9aab89-5e08-423d-8030-259fe54c4d74", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/FirstScene/progress.prefab b/assets/FirstScene/progress.prefab new file mode 100644 index 0000000..2ff2ce7 --- /dev/null +++ b/assets/FirstScene/progress.prefab @@ -0,0 +1,190 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "progress", + "_objFlags": 0, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + } + ], + "_prefab": { + "__id__": 3 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -10.935, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 1, + "_custom": true, + "_file": { + "__uuid__": "b2687ac4-099e-403c-a192-ff477686f4f5" + }, + "_spriteFrame": { + "__uuid__": "2fdf5c03-b33d-4d22-a79a-0eff900dae7d" + }, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "totalParticles": 100, + "duration": -1, + "emissionRate": 999.9999851, + "life": 2, + "lifeVar": 4, + "_startColor": { + "__type__": "cc.Color", + "r": 49, + "g": 255, + "b": 15, + "a": 157 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 242, + "b": 34, + "a": 226 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 251, + "g": 255, + "b": 55, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 240, + "g": 249, + "b": 107, + "a": 255 + }, + "angle": -20, + "angleVar": 40, + "startSize": 3.3699999, + "startSizeVar": 50, + "endSize": 20, + "endSizeVar": 0, + "startSpin": -47.369998931884766, + "startSpinVar": 0, + "endSpin": -47.369998931884766, + "endSpinVar": -142.11000061035156, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 7, + "y": 7 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 1, + "gravity": { + "__type__": "cc.Vec2", + "x": 30, + "y": 40 + }, + "speed": 0, + "speedVar": 0, + "tangentialAccel": 50, + "tangentialAccelVar": 60, + "radialAccel": 0, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 50, + "endRadiusVar": 60, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/FirstScene/progress.prefab.meta b/assets/FirstScene/progress.prefab.meta new file mode 100644 index 0000000..fe11e40 --- /dev/null +++ b/assets/FirstScene/progress.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "6d2a759f-4b98-4fc3-99f4-245daa9015a9", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Scene.meta b/assets/Scene.meta new file mode 100644 index 0000000..240fb44 --- /dev/null +++ b/assets/Scene.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "29f52784-2fca-467b-92e7-8fd9ef8c57b7", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Scene/GameScene.fire b/assets/Scene/GameScene.fire new file mode 100644 index 0000000..86a3b22 --- /dev/null +++ b/assets/Scene/GameScene.fire @@ -0,0 +1,45801 @@ +[ + { + "__type__": "cc.SceneAsset", + "_name": "", + "_objFlags": 0, + "_native": "", + "scene": { + "__id__": 1 + } + }, + { + "__type__": "cc.Scene", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 978 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_is3DNode": true, + "_groupIndex": 0, + "groupIndex": 0, + "autoReleaseAssets": false, + "_id": "4eaf518b-35ec-4262-928d-4d497c3f2830" + }, + { + "__type__": "cc.Node", + "_name": "Canvas", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + }, + { + "__id__": 825 + }, + { + "__id__": 955 + }, + { + "__id__": 968 + } + ], + "_active": true, + "_components": [ + { + "__id__": 974 + }, + { + "__id__": 975 + }, + { + "__id__": 976 + }, + { + "__id__": 977 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a5esZu+45LA5mBpvttspPD" + }, + { + "__type__": "cc.Node", + "_name": "Main Camera", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 4 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e1WoFrQ79G7r4ZuQE3HlNb" + }, + { + "__type__": "cc.Camera", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 3 + }, + "_enabled": true, + "_cullingMask": 4294967295, + "_clearFlags": 7, + "_backgroundColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_depth": -1, + "_zoomRatio": 1, + "_targetTexture": null, + "_fov": 60, + "_orthoSize": 10, + "_nearClip": 1, + "_farClip": 4096, + "_ortho": true, + "_rect": { + "__type__": "cc.Rect", + "x": 0, + "y": 0, + "width": 1, + "height": 1 + }, + "_renderStages": 1, + "_alignWithScreen": true, + "_id": "81GN3uXINKVLeW4+iKSlim" + }, + { + "__type__": "cc.Node", + "_name": "mask", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": null, + "_opacity": 75, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "afPAcr2UtFwYkLDAE+1jX3" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "faIxgNZplL0Z0+CcnKTRMA" + }, + { + "__type__": "cc.Node", + "_name": "Game", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 8 + }, + { + "__id__": 11 + }, + { + "__id__": 802 + }, + { + "__id__": 298 + }, + { + "__id__": 372 + }, + { + "__id__": 200 + }, + { + "__id__": 141 + } + ], + "_active": true, + "_components": [ + { + "__id__": 824 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "edGku/mxZPxJszZ+KWAxf0" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fb/2a/OQdCHa9UK0oo4dgn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c948481a-54d5-400b-bdc0-06803c844edf" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "5007MXTVZA3I7iwklnruRU" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "7aJ33p5htNzL4TyG3TGhna" + }, + { + "__type__": "cc.Node", + "_name": "GameNode", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 12 + }, + { + "__id__": 15 + }, + { + "__id__": 163 + }, + { + "__id__": 32 + }, + { + "__id__": 796 + }, + { + "__id__": 125 + } + ], + "_active": true, + "_components": [ + { + "__id__": 801 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b0VHqWWqlJ4qVyuwnLGCWw" + }, + { + "__type__": "cc.Node", + "_name": "mask", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 13 + }, + { + "__id__": 14 + } + ], + "_prefab": null, + "_opacity": 50, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1000, + "height": 1440 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "03iCbaNdhCsK6g9PxP9jdl" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "baVafDW+5An6bjRZ3qa1BN" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 40, + "_right": 40, + "_top": 240, + "_bottom": 240, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "1918LhpGRFca3nuvwXeUYl" + }, + { + "__type__": "cc.Node", + "_name": "Map", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 16 + }, + { + "__id__": 17 + }, + { + "__id__": 18 + }, + { + "__id__": 19 + }, + { + "__id__": 22 + }, + { + "__id__": 27 + } + ], + "_active": true, + "_components": [ + { + "__id__": 29 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -70, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e32VfzbBZHmIWIYEhvY/mp" + }, + { + "__type__": "cc.Node", + "_name": "mapBlock", + "_objFlags": 0, + "_parent": { + "__id__": 15 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "67bfgg61REiaZujL13Qn0E" + }, + { + "__type__": "cc.Node", + "_name": "Wall", + "_objFlags": 0, + "_parent": { + "__id__": 15 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1dZH+osJZOy7q9LjWg1bq8" + }, + { + "__type__": "cc.Node", + "_name": "Adhesive", + "_objFlags": 0, + "_parent": { + "__id__": 15 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f2QsYmYZJE6J1jJXpBqwhq" + }, + { + "__type__": "cc.Node", + "_name": "guide", + "_objFlags": 0, + "_parent": { + "__id__": 15 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 20 + }, + { + "__id__": 21 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 174, + "height": 236 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 165, + -15, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c8eXIPnclDQ7X55y9PQKr6" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b11b546b-c8c9-4809-a7c3-64155998227b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "41T2iLQsZF370g4rEPyHht" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "edf3d60a-1823-4215-8a81-b4865596f370" + }, + "_clips": [ + { + "__uuid__": "edf3d60a-1823-4215-8a81-b4865596f370" + } + ], + "playOnLoad": true, + "_id": "4fCnjVcqtIeJZaWraqMJvU" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 15 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 23 + }, + { + "__id__": 24 + }, + { + "__id__": 26 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 126, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -116.785, + -777.043, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5aWk5CLbJP5os/qlM+ttw3" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d3c893c0-12a0-41c1-a55b-b2b8c269c26b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "898R+PE2ZFs45OjNiAVd8S" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 25 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 22 + }, + "_id": "00FTYmsfBFJZi0WdpVBbZJ" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "useHammer", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 4, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -843.043, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "afvwqPFglM8rQYcOiCmtuu" + }, + { + "__type__": "cc.Node", + "_name": "chuiziyanwu", + "_objFlags": 0, + "_parent": { + "__id__": 15 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 28 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 430.62, + "height": 373.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1aK8CGVvRMzYQhxj1Jf/qO" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": true, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "17d057a5-61c2-4d91-b0ba-aac2bc0bd485" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "d5wMa9/mFAHaRQ1387/kRY" + }, + { + "__type__": "2234assp7RIvpDgrnqljp2R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "fontUI": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "Block_Array": [], + "Block_Prop": [ + { + "__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5" + }, + { + "__uuid__": "bf502854-8e31-40c1-9d27-ac480682b4c4" + }, + { + "__uuid__": "a496b103-90e1-421c-94c5-500167b26227" + }, + { + "__uuid__": "725f6dd5-18b0-44f9-997a-d89b23ac1fc0" + }, + { + "__uuid__": "5ed13d95-5b93-4407-b770-0dedeb674b0f" + }, + { + "__uuid__": "bf502854-8e31-40c1-9d27-ac480682b4c4" + }, + { + "__uuid__": "0cf46635-8a58-4196-b24e-d075875778d0" + }, + { + "__uuid__": "a99d5bb3-6216-4c6e-bfb6-f793289870df" + }, + { + "__uuid__": "b5a00886-b32d-4185-a4a6-fd9f7a8dbe90" + }, + { + "__uuid__": "e98498e1-12bf-4280-8def-6f8e543fb934" + }, + { + "__uuid__": "25bab75a-d0a5-42a2-b0d4-f1aca4ac8d80" + }, + { + "__uuid__": "03145c50-d467-4d06-a2fc-83f38137cb92" + } + ], + "MapBlockPrefab": { + "__uuid__": "6023e99b-9806-44e9-8325-487a6cfdf3e5" + }, + "Block_Color": [], + "Wall_Prefab": [ + null + ], + "wallTurnPrefab": { + "__uuid__": "75a77063-a5a9-456a-8b4f-bfde10c137e8" + }, + "wallRevolvingPrefab": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "timeBtn": { + "__id__": 30 + }, + "destroyBtn": { + "__id__": 51 + }, + "magicBtn": { + "__id__": 72 + }, + "winStreakBtn": { + "__id__": 89 + }, + "magics": { + "__id__": 125 + }, + "mask": { + "__id__": 5 + }, + "guideItem": { + "__id__": 141 + }, + "itemLock": [ + { + "__id__": 46 + }, + { + "__id__": 116 + }, + { + "__id__": 65 + } + ], + "iceLabel": null, + "hammerLabel": null, + "magicLabel": null, + "iceNode": { + "__id__": 108 + }, + "hammerNode": { + "__id__": 40 + }, + "magicNode": { + "__id__": 57 + }, + "icetimeNode": [ + { + "__id__": 162 + }, + { + "__id__": 174 + }, + { + "__id__": 171 + } + ], + "magicMask": { + "__id__": 102 + }, + "hammerMask": { + "__id__": 99 + }, + "freezeMask": { + "__id__": 96 + }, + "guideNode": { + "__id__": 19 + }, + "hammerAni": { + "__id__": 27 + }, + "coinPop": { + "__id__": 200 + }, + "gameOverNode": { + "__id__": 297 + }, + "revive": { + "__id__": 369 + }, + "_id": "1e+NpmfM1ClafoWSY4VNW+" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 31 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 124 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 31 + }, + "_id": "a5N58fd3JDfatNn1yJULjP" + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [ + { + "__id__": 106 + }, + { + "__id__": 108 + }, + { + "__id__": 114 + }, + { + "__id__": 116 + } + ], + "_active": true, + "_components": [ + { + "__id__": 122 + }, + { + "__id__": 30 + }, + { + "__id__": 123 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 116.277, + 100.136, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9b5vl6YSJCV4KJSug+nQjT" + }, + { + "__type__": "cc.Node", + "_name": "Bottom", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 33 + }, + { + "__id__": 31 + }, + { + "__id__": 35 + }, + { + "__id__": 54 + }, + { + "__id__": 75 + }, + { + "__id__": 81 + }, + { + "__id__": 92 + }, + { + "__id__": 96 + }, + { + "__id__": 99 + }, + { + "__id__": 102 + } + ], + "_active": true, + "_components": [ + { + "__id__": 105 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -950, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fcEbhgfyNNmpRBSfNObkne" + }, + { + "__type__": "cc.Node", + "_name": "floor", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 113 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 45.697, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d13GbSvV9OPJBUKUlhuTex" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "49e57dd4-0938-4a95-8991-8a2f6e8d24f2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "d0b1izjvVCgamoGah1Jaft" + }, + { + "__type__": "cc.Node", + "_name": "destroyBtn", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [ + { + "__id__": 36 + }, + { + "__id__": 38 + }, + { + "__id__": 40 + }, + { + "__id__": 46 + } + ], + "_active": true, + "_components": [ + { + "__id__": 50 + }, + { + "__id__": 51 + }, + { + "__id__": 53 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.862, + 104.002, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "92TMdAzkxLV7OMfVwPKRcc" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 35 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 126, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.665, + 15.464, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "bbJfaDg4hEKYsi7HeDMjI9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d3c893c0-12a0-41c1-a55b-b2b8c269c26b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "44zciXhM9By7FOyycM/dKY" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 35 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 39 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 75.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 58.746, + -58.228, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "26gMU08pRDka3AZbzLIdDQ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "0", + "_N$string": "0", + "_fontSize": 60, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "66luVqFmNK7LDDtanIIyM+" + }, + { + "__type__": "cc.Node", + "_name": "mul10", + "_objFlags": 0, + "_parent": { + "__id__": 35 + }, + "_children": [ + { + "__id__": 41 + }, + { + "__id__": 43 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 67.43, + -54.618, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "43Ov3666BAHY+v9VAcQKP9" + }, + { + "__type__": "cc.Node", + "_name": "mul10", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 42 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5e4AslZx1DMZ4O7aOgmlJi" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d7c12d61-f696-4de5-b62b-449dbf8788f0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "01hJlvzFZEBbSfkKq3V65S" + }, + { + "__type__": "cc.Node", + "_name": "didaoju", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 44 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1cs4HhQKJJVZ4lP1KpHUIX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 43 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e01cc1ef-ee40-4f68-ac47-556f72129210" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "10blsOzgNGCbBR/gwNDmHx" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 18.985, + 3.454, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a1D0cHHiZM+6Aa4aG15TfK" + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "_parent": { + "__id__": 35 + }, + "_children": [ + { + "__id__": 47 + } + ], + "_active": false, + "_components": [ + { + "__id__": 49 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e5qnCIl15NOJjFNV6vRWD4" + }, + { + "__type__": "cc.Node", + "_name": "tili_8", + "_objFlags": 0, + "_parent": { + "__id__": 46 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 48 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 34, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -32.271, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "23pzXJmytI2aaEfRPk5yKN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 47 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "23750c3c-c51d-40bc-9ef4-32af82924691" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "09RyALLKdPRoum6dKq+uak" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 46 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9b971e4b-5afc-4ee9-8489-79bccb310650" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "f2ULJO7EBBBYVH94liNGAq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 35 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b1779068-3fb8-4c63-83a8-cfa43fd79344" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "4fpgZvoWZKwbhWiIRUbZgZ" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 35 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 52 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 35 + }, + "_id": "37kLzoX/5ETIkOp2zQsq9p" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "useHammer", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 35 + }, + "_enabled": true, + "_id": "dekCrxpChCv7UV5uQ+seyc" + }, + { + "__type__": "cc.Node", + "_name": "magicBtn", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [ + { + "__id__": 55 + }, + { + "__id__": 57 + }, + { + "__id__": 63 + }, + { + "__id__": 65 + } + ], + "_active": true, + "_components": [ + { + "__id__": 71 + }, + { + "__id__": 72 + }, + { + "__id__": 74 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 346.167, + 78.872, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "92YD+h90NJhp8U6bJYnT/u" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 54 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 56 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fcTI9twUZMzLEQsBfCmsAc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 55 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "beb1c917-b808-433b-972c-a91812483a6c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "0c4DaC9ZZHSLXDHJAIQc+O" + }, + { + "__type__": "cc.Node", + "_name": "mul10", + "_objFlags": 0, + "_parent": { + "__id__": 54 + }, + "_children": [ + { + "__id__": 58 + }, + { + "__id__": 60 + }, + { + "__id__": 62 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 82.058, + -45.971, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3duilIrWZPTqJyFScUlaST" + }, + { + "__type__": "cc.Node", + "_name": "mul10", + "_objFlags": 0, + "_parent": { + "__id__": 57 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 59 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "927NDs6khFvZTmTR0rbPnB" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 58 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d7c12d61-f696-4de5-b62b-449dbf8788f0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "88GhbyoNJOWZtBhccS9Bdf" + }, + { + "__type__": "cc.Node", + "_name": "didaoju", + "_objFlags": 0, + "_parent": { + "__id__": 57 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 61 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1bsGGG8zlFCqeTbTlTyLYk" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 60 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e01cc1ef-ee40-4f68-ac47-556f72129210" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "d6rbtNwldA25vUe/W2UlE4" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 57 + }, + "_children": [], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 18.985, + 3.454, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "61zcaUynlOap0gCu03NXvf" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 54 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 64 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 75.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 58.746, + -58.228, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e7g4OxtWVL1adbWxEArofr" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 63 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "0", + "_N$string": "0", + "_fontSize": 60, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "21t6SqzutEDKZaSam+kGb/" + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "_parent": { + "__id__": 54 + }, + "_children": [ + { + "__id__": 66 + }, + { + "__id__": 68 + } + ], + "_active": false, + "_components": [ + { + "__id__": 70 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "683X7rfSZIRIGdRCbrUfhn" + }, + { + "__type__": "cc.Node", + "_name": "button_4", + "_objFlags": 0, + "_parent": { + "__id__": 65 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 67 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -11.047, + -32.218, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "258OkNyo5NOYrHYkmBV6KX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 66 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b2ec870f-5ac8-4b00-ad61-7986b947ecf6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "2bTdnu5UxCbqyChGqGTE+R" + }, + { + "__type__": "cc.Node", + "_name": "coin_6", + "_objFlags": 0, + "_parent": { + "__id__": 65 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 69 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 9.991, + -32.218, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1eVqb3KW1FW6TmOdOea/52" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 68 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d8b3546a-d3c2-42fe-a545-7714bb16627c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "6eOOndgutBZ68tL3HXKt7D" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9b971e4b-5afc-4ee9-8489-79bccb310650" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "b2oMy+q8FHsZqmbqe0VTjz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b1779068-3fb8-4c63-83a8-cfa43fd79344" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "647u+bW4NOQZKdQAAA2N82" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 73 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 54 + }, + "_id": "13iXPcjuVGtZpauFnVUGQE" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "useMagic", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_id": "d3aD0owzFH74KOQ39ei+jJ" + }, + { + "__type__": "cc.Node", + "_name": "returnBtn", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [ + { + "__id__": 76 + } + ], + "_active": true, + "_components": [ + { + "__id__": 78 + }, + { + "__id__": 80 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -344.139, + 86.196, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2a7fKXbxNM+7oVc5ylGZS3" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 77 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cbJ3oFlsVAnqnGkTTCQAkq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3992b89e-8452-4af0-8388-2f9e46cb77c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "66p8eNtFFEn6LRcLCWRnW/" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 75 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 79 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 75 + }, + "_id": "87c+8sV8FH+5mMTIXYBbll" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "openPause", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 75 + }, + "_enabled": true, + "_id": "ae2rpYpEJBsK26v76aVmm/" + }, + { + "__type__": "cc.Node", + "_name": "winStreakBtn", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [ + { + "__id__": 82 + }, + { + "__id__": 84 + }, + { + "__id__": 86 + } + ], + "_active": false, + "_components": [ + { + "__id__": 88 + }, + { + "__id__": 89 + }, + { + "__id__": 91 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.862, + 104.002, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b4Q3tTYFtDg79hCL9ZNEWg" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 239, + "height": 182 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.725, + 8.088, + 0, + 0, + 0, + 0, + 1, + 0.95, + 0.95, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6fDFuzQeRIrb8L9pdty0Vw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c6f8ffa4-06a3-4b1f-97c6-1ddacabfa958" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "b4qIoFridADJpqXLf+rZWS" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 85 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.665, + 15.464, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "66tzCOCcBL6oliC7AnRR8r" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 84 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f5894e5f-6334-44c9-987b-7f837e111df6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "bac0Z6DW1PIY4wDOmO7hZR" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 87 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -49.749, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "67c/QNoaBE07TMz/CQajYr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6f2c00ff-850d-4d6e-a21d-3bafc12ca701" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "00xS6aO1lN7oHm6v9gggj0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 81 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b1779068-3fb8-4c63-83a8-cfa43fd79344" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "10yP0RXdZH/oime4yxQegh" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 81 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 90 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 81 + }, + "_id": "e84jtO6HVNNYNS+LVYc5Gi" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "useHammerSpecial", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 81 + }, + "_enabled": true, + "_id": "5bwikT9ZdGr6agHiYqa2Hb" + }, + { + "__type__": "cc.Node", + "_name": "pauseBtn", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 93 + }, + { + "__id__": 94 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -344.01, + 94.546, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "14LgqH3k5PXKMdPiQKht0P" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 92 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "f3Q1K7ngJBO41LJ2cZ4Rd8" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 92 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 95 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 92 + }, + "_id": "3dlpZtk6BJQ40ey82SCcay" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "usePause", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "freezeMask", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 97 + }, + { + "__id__": 98 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 119.456, + 105.635, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cbiRweAslJ3JuotS5uwfUY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 96 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "38f93479-db7c-4280-a82f-eb8b10e86687" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "28MA99TxpAFY7aZKj9vety" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 96 + }, + "_enabled": true, + "_id": "63gNCerwZExo+YLuxgFmqU" + }, + { + "__type__": "cc.Node", + "_name": "hammerMask", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 100 + }, + { + "__id__": 101 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.163, + 104.211, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9bB5XiNNBA8rH+X0CeJuvE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 99 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "38f93479-db7c-4280-a82f-eb8b10e86687" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "25ZRUYY75MXKmNtKKiycAq" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 99 + }, + "_enabled": true, + "_id": "38p//kTl1IxZ+3LfA8cdcJ" + }, + { + "__type__": "cc.Node", + "_name": "magicMask", + "_objFlags": 0, + "_parent": { + "__id__": 32 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 103 + }, + { + "__id__": 104 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 345.952, + 84.684, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "edFFTl0YJJZ4vLDpquDtsV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "38f93479-db7c-4280-a82f-eb8b10e86687" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "21TZFqvlJOF7vNdlvlMBD4" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_id": "e8zuQH36BBZaL/1k13rbss" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 32 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 4, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 10, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "daNHvf+P1Aj42fNmBwHZsj" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 31 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 107 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 108, + "height": 130 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 3.866, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "deX+HuwhhA7qt9VgkhiZbM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 106 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bfbb9ff2-ac2a-4db2-bd1d-21f0f3caa50e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "59Pk6HFEZIiKfGvnH+qPLO" + }, + { + "__type__": "cc.Node", + "_name": "mul10", + "_objFlags": 0, + "_parent": { + "__id__": 31 + }, + "_children": [ + { + "__id__": 109 + }, + { + "__id__": 111 + }, + { + "__id__": 113 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 74.066, + -55.079, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b7zsUmVO1D1K3L29Na155v" + }, + { + "__type__": "cc.Node", + "_name": "mul10", + "_objFlags": 0, + "_parent": { + "__id__": 108 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 110 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "53zJ3vCFtI1qR78GUDnTSZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 109 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d7c12d61-f696-4de5-b62b-449dbf8788f0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "8aqUj+eghJTKXkIDmOx6PU" + }, + { + "__type__": "cc.Node", + "_name": "didaoju", + "_objFlags": 0, + "_parent": { + "__id__": 108 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 112 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4aEdAX+JdNw7l+8XhNS9co" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 111 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e01cc1ef-ee40-4f68-ac47-556f72129210" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "3cl/bR9K1M6Kqr9Rw9KF+a" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 108 + }, + "_children": [], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 18.985, + 3.454, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2ciwOzvR1LKZixs/Nu1vMg" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 31 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 115 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33.37, + "height": 75.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 58.746, + -58.228, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c4yECqsNZHSpSllGCdVHGL" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 114 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "0", + "_N$string": "0", + "_fontSize": 60, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "b34TrYoRhDULn4Pkq0hfAl" + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "_parent": { + "__id__": 31 + }, + "_children": [ + { + "__id__": 117 + }, + { + "__id__": 119 + } + ], + "_active": false, + "_components": [ + { + "__id__": 121 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "121FKFFMhMPaNUOuewKYYZ" + }, + { + "__type__": "cc.Node", + "_name": "coin_2", + "_objFlags": 0, + "_parent": { + "__id__": 116 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 118 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 12.583, + -32.504, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eec2+McW9EgZRigTOFmTas" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 117 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b2ec870f-5ac8-4b00-ad61-7986b947ecf6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "e1neqWkSJFZL+MXdgXuo60" + }, + { + "__type__": "cc.Node", + "_name": "mul8", + "_objFlags": 0, + "_parent": { + "__id__": 116 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 120 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.93, + -32.504, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4bO+PW0eZOBpzW0bpz1Q6E" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 119 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b2ec870f-5ac8-4b00-ad61-7986b947ecf6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "9duounnWFJCLB+DnmBqaUM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 116 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9b971e4b-5afc-4ee9-8489-79bccb310650" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "91xI+hunZLrrX+k7Ro5i9j" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 31 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b1779068-3fb8-4c63-83a8-cfa43fd79344" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "df3kV4XrtNHYvyWu+Nwmo9" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 31 + }, + "_enabled": true, + "_id": "8dtEbp4qBFRZbexchpFtKp" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "useTimeProp", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "magics", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 126 + } + ], + "_active": false, + "_components": [ + { + "__id__": 140 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 316.61, + "height": 310 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -569.449, + -708.881, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9conL7RIBKdaN+9vO9+nz7" + }, + { + "__type__": "cc.Node", + "_name": "tuowei1", + "_objFlags": 0, + "_parent": { + "__id__": 125 + }, + "_children": [ + { + "__id__": 127 + }, + { + "__id__": 130 + }, + { + "__id__": 133 + }, + { + "__id__": 136 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 139 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b6HYDHHppD2pbKYXgoMg/z" + }, + { + "__type__": "cc.Node", + "_name": "bang", + "_objFlags": 0, + "_parent": { + "__id__": 126 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 128 + } + ], + "_prefab": { + "__id__": 129 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 73, + "height": 73 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "134FVlBOBPnYKd9A5w9hv2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 127 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "c86csrdQhJ16nEDgnVYjoW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 126 + }, + "asset": { + "__uuid__": "ffebbf13-83a0-4923-a965-96f134e7b567" + }, + "fileId": "41GQWZ2a5Ex6CABo1VEgRM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tailing", + "_objFlags": 0, + "_parent": { + "__id__": 126 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 131 + } + ], + "_prefab": { + "__id__": 132 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3axTV3T/FCr4ciqxbw6sK3" + }, + { + "__type__": "cc.MotionStreak", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 130 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_fadeTime": 0.3, + "_minSeg": 1, + "_stroke": 20, + "_texture": { + "__uuid__": "c88c6283-3de7-4606-b65a-fa3e18c95049" + }, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 128, + "b": 0, + "a": 255 + }, + "_fastMode": false, + "_N$preview": false, + "_id": "a0PwXYyPROHLzxSwfU3ump" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 126 + }, + "asset": { + "__uuid__": "ffebbf13-83a0-4923-a965-96f134e7b567" + }, + "fileId": "d7Nu2TAIxA4b0/kSUg8bAf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "em_flash_particle", + "_objFlags": 0, + "_parent": { + "__id__": 126 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 134 + } + ], + "_prefab": { + "__id__": 135 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a7kW04iWRN0IryI/6Bt94h" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 133 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": null, + "_spriteFrame": { + "__uuid__": "c5195cb6-e974-4b2b-9b9a-fa73a8c21cfb" + }, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "totalParticles": 100, + "duration": -1, + "emissionRate": 224.9, + "life": 1, + "lifeVar": 0.5, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "angle": 0, + "angleVar": 360, + "startSize": 100, + "startSizeVar": 30, + "endSize": 1, + "endSizeVar": 0, + "startSpin": 50, + "startSpinVar": 20, + "endSpin": 20, + "endSpinVar": 0, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_positionType": 0, + "positionType": 0, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "speed": 112.1, + "speedVar": 50, + "tangentialAccel": 0, + "tangentialAccelVar": 0, + "radialAccel": -88.8, + "radialAccelVar": 50, + "rotationIsDir": true, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "62mu3cD2hI8JnreeReAF9p" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 126 + }, + "asset": { + "__uuid__": "ffebbf13-83a0-4923-a965-96f134e7b567" + }, + "fileId": "79oTbIHqZP55cNO2Plw9CS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "em_flash_0001", + "_objFlags": 0, + "_parent": { + "__id__": 126 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 137 + } + ], + "_prefab": { + "__id__": 138 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a1H88YlXNCbZx+OvHpXZs5" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 136 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": null, + "_spriteFrame": { + "__uuid__": "a28b8261-be09-47df-aaa7-db3b6edebc3e" + }, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "totalParticles": 100, + "duration": -1, + "emissionRate": 100, + "life": 0.2, + "lifeVar": 0.5, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "angle": 0, + "angleVar": 360, + "startSize": 50, + "startSizeVar": 30, + "endSize": 0, + "endSizeVar": 0, + "startSpin": 0, + "startSpinVar": 20, + "endSpin": 0, + "endSpinVar": 0, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_positionType": 0, + "positionType": 0, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "speed": 100, + "speedVar": 0, + "tangentialAccel": 0, + "tangentialAccelVar": 0, + "radialAccel": -100, + "radialAccelVar": 50, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "d9PH1LK/BA+7FpvtLgpSe/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 126 + }, + "asset": { + "__uuid__": "ffebbf13-83a0-4923-a965-96f134e7b567" + }, + "fileId": "12615JbA9PJ4FPoMzO8C6x", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 126 + }, + "asset": { + "__uuid__": "ffebbf13-83a0-4923-a965-96f134e7b567" + }, + "fileId": "", + "sync": false + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 125 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "play", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": true, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "play", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "02b34a75-e708-445c-b778-66a0e1cf004d" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "bbDps+/WNOi6l+ZgkAs2zl" + }, + { + "__type__": "cc.Node", + "_name": "guidet", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 142 + }, + { + "__id__": 146 + }, + { + "__id__": 148 + }, + { + "__id__": 150 + }, + { + "__id__": 152 + }, + { + "__id__": 154 + } + ], + "_active": false, + "_components": [ + { + "__id__": 160 + }, + { + "__id__": 161 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "954nNggUhBzITi+8pbKLFp" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 141 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 143 + }, + { + "__id__": 144 + }, + { + "__id__": 145 + } + ], + "_prefab": null, + "_opacity": 200, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c2NcWrUANDmrHdIrSHgU5K" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 142 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "40XFkAX4FIBKIZUKZofBIY" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 142 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "afUhdfiPFMa7DoQe19JJhJ" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 142 + }, + "_enabled": true, + "_id": "95Vn8J8CdEAp/SGn35R5Xu" + }, + { + "__type__": "cc.Node", + "_name": "daojuditu", + "_objFlags": 0, + "_parent": { + "__id__": 141 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 147 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 702 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 125.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "25XzDsqatOSKRO0hg+zO5U" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 146 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "68078f7c-9c08-4ba0-9384-72c515aaa618" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "f8h5i3ouZK7rYCOvfw6R8v" + }, + { + "__type__": "cc.Node", + "_name": "gui_shizhong", + "_objFlags": 0, + "_parent": { + "__id__": 141 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 149 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 306, + "height": 316 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.894, + 103.676, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a7wee6fedK778Ycla3N7kV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 148 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bca46f6f-1c18-46c4-b7ee-2b28d311a5ae" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "5d7bkbuO9Mp7xr69G9Vs97" + }, + { + "__type__": "cc.Node", + "_name": "txt_5t", + "_objFlags": 0, + "_parent": { + "__id__": 141 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 151 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 909, + "height": 153 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 499.248, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "759n6/cttLDav64hkm6Opg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 150 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "96c15a92-de65-418b-b50a-bfd88632c62f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "81vZwcUNZMFLoWMcE3iuLy" + }, + { + "__type__": "cc.Node", + "_name": "txt_6t", + "_objFlags": 0, + "_parent": { + "__id__": 141 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 153 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 699, + "height": 138 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -280.15, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d9ErGX/FVL06ahzB/dYA35" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 152 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "616721ba-7e1e-4527-ae04-e85eab5f1294" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "f87J/2YOpEu4wT4bKZx2YK" + }, + { + "__type__": "cc.Node", + "_name": "btn_lq", + "_objFlags": 0, + "_parent": { + "__id__": 141 + }, + "_children": [ + { + "__id__": 155 + } + ], + "_active": true, + "_components": [ + { + "__id__": 157 + }, + { + "__id__": 158 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -545.025, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a1ZdIcjH1ACa6yHvBhdKlB" + }, + { + "__type__": "cc.Node", + "_name": "btn_lq2", + "_objFlags": 0, + "_parent": { + "__id__": 154 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 156 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 189, + "height": 89 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6fQ+2sKX9IkrcagHP/wU8+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 155 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "48288f2c-087f-4ffb-88ec-8d386b3cfee2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "504hnJK59ET6WqrAakRulg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 154 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c1834ee2-d741-4453-8ca3-863c9a982d1d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "51sMeGmWtCWaVRZtKt1HIb" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 154 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 159 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 154 + }, + "_id": "92AlkG7CNBpJXAytVBuBwj" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 141 + }, + "component": "", + "_componentId": "54996zSr8pHNLOmmqnTRGXe", + "handler": "closeGuide", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 141 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "b2oaOTrixC1rexlj1OffGn" + }, + { + "__type__": "54996zSr8pHNLOmmqnTRGXe", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 141 + }, + "_enabled": true, + "itemList": [ + { + "__id__": 150 + }, + { + "__id__": 148 + }, + { + "__id__": 152 + }, + { + "__id__": 146 + } + ], + "itemGuide": { + "__id__": 148 + }, + "itemSpriteList": [ + { + "__uuid__": "96c15a92-de65-418b-b50a-bfd88632c62f" + }, + { + "__uuid__": "bca46f6f-1c18-46c4-b7ee-2b28d311a5ae" + }, + { + "__uuid__": "616721ba-7e1e-4527-ae04-e85eab5f1294" + }, + { + "__uuid__": "4ce23cc5-ef36-458f-bd65-2183659ed1fb" + }, + { + "__uuid__": "23571a02-48ac-4289-a9f7-0ae0a2c3ece4" + }, + { + "__uuid__": "69f2ab69-c51f-49f3-92dc-9ca27bfe6e32" + }, + { + "__uuid__": "e9eaadb5-b97d-443a-b2fb-37788be15458" + }, + { + "__uuid__": "7ddd5001-543c-4725-ba8d-4e97668eb297" + }, + { + "__uuid__": "e5407fd9-4e73-4c83-b03f-4aac59a10211" + }, + { + "__uuid__": "fcbb1fd6-87e6-4d8b-abbf-01bef5fe15e1" + }, + { + "__uuid__": "cb123be6-45b2-4acb-bbe3-f8c32d5c993c" + }, + { + "__uuid__": "3e3e9ede-72b7-4958-b455-57174af31c93" + }, + { + "__uuid__": "68078f7c-9c08-4ba0-9384-72c515aaa618" + }, + { + "__uuid__": "d597dbfa-8b35-4068-976b-f24f10688660" + } + ], + "targetNode": [ + { + "__id__": 35 + }, + { + "__id__": 31 + }, + { + "__id__": 54 + } + ], + "_id": "fbc3UiJP1FN69CmTLDgjh5" + }, + { + "__type__": "cc.Node", + "_name": "time_icon", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 199 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 80, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -179.234, + -50.798, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "208soSmsZDPpggTM1mGJkD" + }, + { + "__type__": "cc.Node", + "_name": "Top", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 164 + }, + { + "__id__": 166 + }, + { + "__id__": 168 + }, + { + "__id__": 162 + }, + { + "__id__": 170 + }, + { + "__id__": 171 + }, + { + "__id__": 174 + }, + { + "__id__": 176 + }, + { + "__id__": 177 + }, + { + "__id__": 179 + }, + { + "__id__": 191 + }, + { + "__id__": 193 + } + ], + "_active": true, + "_components": [ + { + "__id__": 198 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 730, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "990IgEk4RPnL+uMnWKShE+" + }, + { + "__type__": "cc.Node", + "_name": "topBg", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 165 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 169 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -78.562, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2eMBM4cm5EiILq4b4dHzsF" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 164 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "01f5bb85-0439-4301-94f5-fe96f74598f6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "493kRumnpEfqIUNxgxZDsz" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 167 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 92, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 48.363, + -39.709, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "58TVfns71EaoFmxT403ELv" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 166 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "dab99635-8d69-4b56-808f-888557fcacbb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "5f2Ylz0+xIvJRfZhjNpXXA" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 169 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 156, + "height": 89 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -378.213, + -32.38, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c0uiIFHz5GGKkXXHacgnEb" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 168 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "15ecc92e-aa18-412b-ab38-8e537c898d49" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "71/fP5hbRED4SN9eTwtpJY" + }, + { + "__type__": "cc.Node", + "_name": "level", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -358.107, + -90.338, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a11lGnXZBG7rLurrrexgzK" + }, + { + "__type__": "cc.Node", + "_name": "dong", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [ + { + "__id__": 172 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -106.007, + -57.324, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "edBmkMyDNJMLsFTrjE284l" + }, + { + "__type__": "cc.Node", + "_name": "dongjie", + "_objFlags": 0, + "_parent": { + "__id__": 171 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 173 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 641.6, + "height": 654.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 65.533, + -39.033, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "45H3prUOJD96aWaa6DsB1O" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 172 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "eda00f94-3f36-47c1-866f-aace8a695105" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "046KZxjYlNpLF6wyAc6oRg" + }, + { + "__type__": "cc.Node", + "_name": "icetime", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 175 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 382, + "height": 125 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -36.708, + -58.561, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "0d9jshgidP+o/Iba5uG3WE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 174 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a603aa09-c19d-4f94-9324-1f6a333a9e1a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "d8Zn+BLHRMiY4cvDuOYMpi" + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -103.331, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "40UpDXAxJJPKv8JLFp8zwJ" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 178 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 18, + "height": 48 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -13.529, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2fHIc28mNBa7elxS4ymNY5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 177 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ff947612-64d1-4ad2-add0-b7d8fbd5df4f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "3didFBlzBCg4IWn5o4cc5D" + }, + { + "__type__": "cc.Node", + "_name": "shop", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [ + { + "__id__": 180 + }, + { + "__id__": 182 + }, + { + "__id__": 184 + }, + { + "__id__": 185 + } + ], + "_active": true, + "_components": [ + { + "__id__": 189 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 341.013, + -60.296, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ed8QHZwEpB/7mQ3jJK75n6" + }, + { + "__type__": "cc.Node", + "_name": "ditu00", + "_objFlags": 0, + "_parent": { + "__id__": 179 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 181 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 312, + "height": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.124, + 4.568, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a0NhyFR6JMYrrafDAcT+mG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 180 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2262cdce-7a64-4513-afad-1298607c61e3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "baGP59Fc9Ki6dTjlXk/XAp" + }, + { + "__type__": "cc.Node", + "_name": "coins", + "_objFlags": 0, + "_parent": { + "__id__": 179 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 183 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -149.37, + 6.074, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1.2 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a8JH7FzwlLgLoubW/zwwzN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 182 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5b277947-e27a-4670-9186-88a1175375ce" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "d5Ga1SVtFCHpW+F/d+M2Dx" + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 179 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 3.388, + 7.421, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "20iRJz5vNKjbgjTJR3p0SW" + }, + { + "__type__": "cc.Node", + "_name": "add", + "_objFlags": 0, + "_parent": { + "__id__": 179 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 186 + }, + { + "__id__": 187 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 76, + "height": 82 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 137.448, + 3.914, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f1isnnRLZEfodXxw30geH/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 185 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "454da3cf-9723-487d-bcbb-ac6d823044bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "b15b5gJJRFxpH/6bNeH1b0" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 185 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 188 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "708h8Hkd5J/6vkEDJbgFcV" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "openShop", + "customEventData": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 179 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 190 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 179 + }, + "_id": "ca0xU7MF5KGqNrW5X0zL1O" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "openShop", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 192 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 165.1, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -393.763, + 38.912, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "74M3huNwhDkIJ8d31NiL+K" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 191 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "verson:1.7.7", + "_N$string": "verson:1.7.7", + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "c6+2n30uVJIIzuuwVZTj1E" + }, + { + "__type__": "cc.Node", + "_name": "returnBtn", + "_objFlags": 0, + "_parent": { + "__id__": 163 + }, + "_children": [ + { + "__id__": 194 + } + ], + "_active": false, + "_components": [ + { + "__id__": 196 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 413.184, + -173.579, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cezIxmNxRO6JVpiC2ekT1U" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 193 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 195 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 155, + "height": 155 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5chZY6UYlJTLQjULYmgdL9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 194 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3643a167-546c-4acb-a522-f8fd1eab0ee4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "31nW93ik9JaLsjIwSTON9s" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 193 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 197 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 193 + }, + "_id": "34Z6b/IgpOtKrGQXG1ECg6" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "openPause", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 163 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 1, + "_left": 0, + "_right": 0, + "_top": 230, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "a57InY21ROx7ZApRDyXpUO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 162 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6a1403dd-01e2-4fd7-b29d-5d11bbc4b5bd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "cepyUebbNJsZhk/CwUtfZG" + }, + { + "__type__": "cc.Node", + "_name": "propWindow", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 201 + }, + { + "__id__": 205 + } + ], + "_active": false, + "_components": [ + { + "__id__": 296 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7fhIJPcv1JVoYYa9kWQOKz" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 202 + }, + { + "__id__": 203 + }, + { + "__id__": 204 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "92eDUUmRdLJoNMCC/O5wk0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 201 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "bdjid36ERKFZpwcY08qwOV" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 201 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 2000, + "_originalHeight": 2500, + "_id": "55I1Vv4K5D6779Nc+pPQWC" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 201 + }, + "_enabled": true, + "_id": "7ck1YZHrVNgK0sTsx/E/46" + }, + { + "__type__": "cc.Node", + "_name": "prop", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [ + { + "__id__": 206 + }, + { + "__id__": 208 + }, + { + "__id__": 210 + }, + { + "__id__": 212 + }, + { + "__id__": 214 + }, + { + "__id__": 223 + }, + { + "__id__": 240 + }, + { + "__id__": 266 + }, + { + "__id__": 292 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "90vF5BV91C5qgnY3jCIfb7" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 207 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1377 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "25aR+lkJ1LGKy6BqYVkDb7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 206 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5ed815f9-d87b-4d09-a0c1-9749eaec9750" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "3cgbwlrNdGpqbo3F39Kyz3" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 209 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 685.663, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "828XYRNAJFyZVNd61cBogK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 208 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9f0c34c5-7d95-4577-adf5-a30309c15f82" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "1fkxoa3TBPEI7IIzgdgblJ" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 211 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 297, + "height": 76 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 697.256, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "94Yo0OMgNCuplWqcDnNbYX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 210 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ba61158d-ee5e-41db-9208-26a1f43d573e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "478HkK+yJBUrgySOI4cCia" + }, + { + "__type__": "cc.Node", + "_name": "light", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 213 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 712, + "height": 458 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 236.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "afdM7he8VBLbj+2d9PJ+3T" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 212 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "debddcbf-4939-4d99-a2ba-55ac643ab33b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "73NrCZc8dH/4NB8Dr9JSnp" + }, + { + "__type__": "cc.Node", + "_name": "magic", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [ + { + "__id__": 215 + }, + { + "__id__": 217 + }, + { + "__id__": 219 + }, + { + "__id__": 221 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "84eA0uLwBDMpVbOAwT4zIf" + }, + { + "__type__": "cc.Node", + "_name": "magic_Label", + "_objFlags": 0, + "_parent": { + "__id__": 214 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 216 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 609, + "height": 188 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -179.101, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "0aRekFJe1KV6wkVzh/Yo7N" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 215 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0c7feaae-c21e-49ea-adf3-b8f4e3a742f4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "d38yG9h0lMD4GyA3xzxf52" + }, + { + "__type__": "cc.Node", + "_name": "magic_Icon", + "_objFlags": 0, + "_parent": { + "__id__": 214 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 218 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 271, + "height": 298 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 240.269, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ceEcRNyDZO3InRxmStbXTa" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 217 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9c6e3c64-1b79-4ad1-a6e9-e9b4d6f88402" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "94PdSMzFpC/bUawY0oWcs5" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 214 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 220 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 50, + "height": 77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 61.647, + 127.671, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a7w2/3x85LpKu1uPkkSPCe" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 219 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "44e66484-2774-4deb-a017-4c88eaf6341e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "60IgPsImxG3oUsEYyi2757" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 214 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 222 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 49, + "height": 95 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 116.754, + 135.412, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "72LF/7xJZBwICFGDtTCxBY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 221 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1d95b241-ab66-4382-a413-ae2ce529c699" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "6dTcofARVKdoVRYOfQjOo4" + }, + { + "__type__": "cc.Node", + "_name": "buy_Btn", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [ + { + "__id__": 224 + }, + { + "__id__": 226 + }, + { + "__id__": 228 + }, + { + "__id__": 230 + }, + { + "__id__": 232 + }, + { + "__id__": 234 + } + ], + "_active": true, + "_components": [ + { + "__id__": 236 + }, + { + "__id__": 237 + }, + { + "__id__": 239 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -478.086, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cbllED8F9AHbQ/HaHPQ5eH" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 223 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 225 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 148, + "height": 74 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -124.147, + 10.911, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8017yECe5O0qWvWe81/tNA" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 224 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0ba8f5d4-9e99-4a3d-9fe6-2b20531de796" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "achoaxlhFGqYBCO5eYD8A6" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 223 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 227 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -6.895, + 6.365, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "88rai5XRRHIqOSy+FhqKBt" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 226 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "239f5193-a287-40ec-8887-5108d59b569c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "c4XcNxmedIJoBojG4ao+GQ" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 223 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 229 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 32, + "height": 61 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 52.523, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9390ML33BHqonvVKSHxVPp" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 228 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "01b33f17-a428-4b45-bd9d-6879f3e80d4d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "4eVK7t9YhD6YnO9+lDUnzV" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 223 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 231 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 44, + "height": 58 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 89.824, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b9A66VEJFJ4YFA6hohTsLO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 230 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c23b5782-56d1-4758-8d81-22689679d867" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "87pAi0qJBIRoNBoSwwkGej" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 223 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 233 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 135.698, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "df20kyoz5NQLzTx3IGLIy+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 232 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8743269-1766-4da5-a1db-aab5c3de7234" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "feuBCp+MRKTbZleYgXcc/f" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 223 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 235 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 182.525, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6a2skd44dNnJMztX/s5YG8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 234 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8743269-1766-4da5-a1db-aab5c3de7234" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "96jP0SeCBIMLz5wwbGJcUT" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 223 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "84227ef3-933f-4be0-a2d5-1e466b23134f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "30eJu0NNlEpZS35tnvpOuc" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 223 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 238 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 223 + }, + "_id": "3dIBlmgnFLIKI+Rx3mWLiH" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "clickBtn", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 223 + }, + "_enabled": true, + "_id": "f9YC9UOyxPc4DLFd+bNIec" + }, + { + "__type__": "cc.Node", + "_name": "freeze", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [ + { + "__id__": 241 + }, + { + "__id__": 243 + }, + { + "__id__": 245 + }, + { + "__id__": 247 + }, + { + "__id__": 249 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "edksWoJnZFk7HCcTx1SM2H" + }, + { + "__type__": "cc.Node", + "_name": "freeze_Label", + "_objFlags": 0, + "_parent": { + "__id__": 240 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 242 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 697, + "height": 262 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -179.101, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3aA4s9mHFOW6KrDsJjKziH" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 241 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "73e7bf8f-5809-4661-9d08-646e3c035544" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "bfooWJtGJL/6Ub6PwTNHOM" + }, + { + "__type__": "cc.Node", + "_name": "freeze_Icon", + "_objFlags": 0, + "_parent": { + "__id__": 240 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 244 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 276, + "height": 285 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 240.269, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c209xCBbBGa5t1+VW6CIAi" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 243 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7a330033-a898-4b55-a466-5f59a9e1d875" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "399TmJEYZC+IPqLl5iHAaF" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 240 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 246 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 50, + "height": 77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 63.431, + 128.784, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "27K5nah7JJ6b4gUWrIOmLk" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 245 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "44e66484-2774-4deb-a017-4c88eaf6341e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "acDZKJU7NJHY/0NsymDYru" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 240 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 248 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 49, + "height": 95 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 119.398, + 128.784, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8bVkXq2phC9bv4cSouL8kV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 247 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1d95b241-ab66-4382-a413-ae2ce529c699" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "68/zM6NBhNdJWi15YlrpZb" + }, + { + "__type__": "cc.Node", + "_name": "buy_Btn", + "_objFlags": 0, + "_parent": { + "__id__": 240 + }, + "_children": [ + { + "__id__": 250 + }, + { + "__id__": 252 + }, + { + "__id__": 254 + }, + { + "__id__": 256 + }, + { + "__id__": 258 + }, + { + "__id__": 260 + } + ], + "_active": true, + "_components": [ + { + "__id__": 262 + }, + { + "__id__": 263 + }, + { + "__id__": 265 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -478.086, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "133wIR2ehEopTNVlShw9Ui" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 249 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 251 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 148, + "height": 74 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -124.147, + 10.911, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "38EKBAb3tOgJ5WzmAAf6YO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 250 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0ba8f5d4-9e99-4a3d-9fe6-2b20531de796" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "65YADCNJ1G8r2LDVlRpDFU" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 249 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 253 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -6.895, + 6.365, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fc3tfEsyNArLz1LqK5XlXS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 252 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "239f5193-a287-40ec-8887-5108d59b569c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "8fuydQjz5IgI8ZGXxFCvUL" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 249 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 255 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 32, + "height": 61 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 52.523, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eeZl2GKl1O+IWCbKCHSPFT" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 254 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "01b33f17-a428-4b45-bd9d-6879f3e80d4d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "2638rWxT5DApSDFbSh8P+W" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 249 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 257 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 58 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 89.824, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f9S2ayEjZICKoF7PFulszr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 256 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e299c220-3c0b-45cb-8765-5f93818af5d4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "772i26NddH4Y9lbfaK5fXp" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 249 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 259 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 135.698, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "15uBPSHKlKuLO+iajjjG4A" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 258 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8743269-1766-4da5-a1db-aab5c3de7234" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "96COdRfh1FfoROSbn/hxOx" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 249 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 261 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 182.525, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "59gcbiF8tE752hBE6aD2gB" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 260 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8743269-1766-4da5-a1db-aab5c3de7234" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "a6sBFzSOBI3Zyar6vbTBp0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 249 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "84227ef3-933f-4be0-a2d5-1e466b23134f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "b4SteLCPNElbVOmqiyCs37" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 249 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 264 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 249 + }, + "_id": "8eSEVDgAtFX6sGrLhrBv3G" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "clickBtn", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 249 + }, + "_enabled": true, + "_id": "d663xyp4tCirEottUWfXMi" + }, + { + "__type__": "cc.Node", + "_name": "hammer", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [ + { + "__id__": 267 + }, + { + "__id__": 269 + }, + { + "__id__": 271 + }, + { + "__id__": 273 + }, + { + "__id__": 275 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "78JrwC6KJKp7MrMcRq8D3n" + }, + { + "__type__": "cc.Node", + "_name": "hammer_Label", + "_objFlags": 0, + "_parent": { + "__id__": 266 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 268 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 605, + "height": 188 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -179.101, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3brc7mz/1Nirk9RftN8oPH" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 267 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0506afca-61b7-4335-909a-d891c8c1f15c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "364h1RUedOC7U8hbCE/7QP" + }, + { + "__type__": "cc.Node", + "_name": "hammer_Icon", + "_objFlags": 0, + "_parent": { + "__id__": 266 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 270 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 310 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 247.271, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6cy6thVFBPGaVdx9ub7c87" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 269 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "adcbd990-b677-4645-8cca-f1b0b6ff1e1d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "3c2lV4GMtD9pFnwXEnt6GI" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 266 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 272 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 50, + "height": 77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 56.979, + 109, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d7/QXvN2hFE47p+plIsunr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 271 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "44e66484-2774-4deb-a017-4c88eaf6341e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "34U5I7GENKlIIl/E7Cfh3o" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 266 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 274 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 35, + "height": 97 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.086, + 116.741, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6epL2IaxRHurKC0/kZFGUC" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 273 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd32bddb-8d8c-4bce-894a-aef7171d5c05" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "0dn6FdnI5P4rRM7vLw9O0j" + }, + { + "__type__": "cc.Node", + "_name": "buy_Btn", + "_objFlags": 0, + "_parent": { + "__id__": 266 + }, + "_children": [ + { + "__id__": 276 + }, + { + "__id__": 278 + }, + { + "__id__": 280 + }, + { + "__id__": 282 + }, + { + "__id__": 284 + }, + { + "__id__": 286 + } + ], + "_active": true, + "_components": [ + { + "__id__": 288 + }, + { + "__id__": 289 + }, + { + "__id__": 291 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -478.086, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1fdcbYcmZFPLm+I7RdGR/e" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 275 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 277 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 148, + "height": 74 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -124.147, + 10.911, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3bPoFR7GtIH5GH1Mc64RD6" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 276 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0ba8f5d4-9e99-4a3d-9fe6-2b20531de796" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "a5TNGK0nlDi7wmP+UfQkcd" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 275 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 279 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -6.895, + 6.365, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fcdo+2SytBs7bqcp7+Jotg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 278 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "239f5193-a287-40ec-8887-5108d59b569c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "6ajd3l4ydA4abcsdo8LS8c" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 275 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 281 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 32, + "height": 61 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 52.523, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ccpnfbPbdIbZZJVy5NN3rN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 280 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "01b33f17-a428-4b45-bd9d-6879f3e80d4d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "19U0P8VlJEFZLXAzzB/8Nt" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 275 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 283 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 58 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 89.824, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "27/C78tzJBkbBx1vClWdoP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 282 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e299c220-3c0b-45cb-8765-5f93818af5d4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "26ubvoNQRDAL/0oeYMDSN8" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 275 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 285 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 135.698, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "780CCNeF9LA6O1XDIKCbkL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 284 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8743269-1766-4da5-a1db-aab5c3de7234" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "42o6869WFLi54dPzXSC5YJ" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 275 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 287 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 182.525, + 6.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ddx4U8CklP9rf20PAqwKWU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 286 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8743269-1766-4da5-a1db-aab5c3de7234" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "97FUpAA9RO2p31vO5w26ep" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 275 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "84227ef3-933f-4be0-a2d5-1e466b23134f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "96T6AOwvxJDIFxcAHw4cJE" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 275 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 290 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 275 + }, + "_id": "aaBeBRIoBPBo8wK0iKoahB" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "clickBtn", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 275 + }, + "_enabled": true, + "_id": "318KKS2v9PSZbJ1P9wYti5" + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 205 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 293 + }, + { + "__id__": 294 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 65, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 433.91, + 639.144, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4eaUH5yVJNAaK8m+KLXwM0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 292 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8ea47691-f888-4aac-acac-d7225a726788" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "ael0pXbadCxrkqd3FQtsXF" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 292 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 295 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 292 + }, + "_id": "e2r0BmMa5MrIsk8JJmyNf3" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "closePropBuy", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 200 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "77Sc0MRZVB/q3E3nf4Lgc4" + }, + { + "__type__": "cc.Node", + "_name": "tween", + "_objFlags": 0, + "_parent": { + "__id__": 298 + }, + "_children": [ + { + "__id__": 335 + }, + { + "__id__": 342 + }, + { + "__id__": 344 + }, + { + "__id__": 346 + }, + { + "__id__": 348 + }, + { + "__id__": 355 + }, + { + "__id__": 360 + }, + { + "__id__": 364 + }, + { + "__id__": 366 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "24hcpQJAxIYohCd6FN/2wn" + }, + { + "__type__": "cc.Node", + "_name": "Win", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 299 + }, + { + "__id__": 303 + }, + { + "__id__": 297 + }, + { + "__id__": 305 + } + ], + "_active": false, + "_components": [ + { + "__id__": 334 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b1KKqFm9hMtpLUtxEY0uFW" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 298 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 300 + }, + { + "__id__": 301 + }, + { + "__id__": 302 + } + ], + "_prefab": null, + "_opacity": 200, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5674LMtuNNmbAgc5V+Z/Qk" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 299 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "1cgAdjMEtMJ47kyGgjygUz" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 299 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "bd5GIWgi1C3LvK1HzmPgDC" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 299 + }, + "_enabled": true, + "_id": "7aMdyhm41AyqFZMnIAtTUY" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 298 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 304 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 11.93, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "01Lc1ULdpBOIKv8m0/wLAc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 303 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bf006254-d63b-49e7-9bb2-26cd7328e3e8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "1c15srvT9Kd6hNeVKfzapN" + }, + { + "__type__": "cc.Node", + "_name": "WinStreak", + "_objFlags": 0, + "_parent": { + "__id__": 298 + }, + "_children": [ + { + "__id__": 306 + }, + { + "__id__": 308 + }, + { + "__id__": 310 + }, + { + "__id__": 312 + }, + { + "__id__": 313 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -742.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "21I/ApmipAqq3R7pWbxfq+" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 305 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 307 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 955, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -76.741, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3elL+ddDtOrrRLiZbN6RxI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 306 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ef56330c-96ea-457b-a224-2a33a8794239" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "5bpqZ9tRJF/75vf79GdV5v" + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 305 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 309 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 224, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 313.782, + -4.662, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "59MmgbQUpMg5wTaHOyFF3Z" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 308 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0db28536-5e1c-480c-9b48-509e1bf5d4e1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "a2iO0AtypOaa0/H9Cnb9tC" + }, + { + "__type__": "cc.Node", + "_name": "10", + "_objFlags": 0, + "_parent": { + "__id__": 305 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 311 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 35 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 31.785, + -169.009, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ccdNIptTVJjq8SbeTkQx01" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 310 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "24d0ba0f-9d03-40ae-a7a7-58fbb812af38" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "1dtoBNBG5LEZ1hjYIsiKCh" + }, + { + "__type__": "cc.Node", + "_name": "number", + "_objFlags": 0, + "_parent": { + "__id__": 305 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -6, + -169.009, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fdHqoaBUJJ+6NWeuhiToFG" + }, + { + "__type__": "cc.Node", + "_name": "hammer", + "_objFlags": 0, + "_parent": { + "__id__": 305 + }, + "_children": [ + { + "__id__": 314 + }, + { + "__id__": 316 + }, + { + "__id__": 318 + }, + { + "__id__": 320 + }, + { + "__id__": 322 + }, + { + "__id__": 324 + }, + { + "__id__": 326 + }, + { + "__id__": 328 + }, + { + "__id__": 330 + }, + { + "__id__": 332 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 211.351, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "88wZCiWldNRYrFSoY5eBv+" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 315 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -326.682, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8cGZsR9ydMgp0MemFHL8dr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 314 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "a3sn5zOglPJq5GYrZPoxm3" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 317 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -254.36, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fccwfGf6lEwoQyDiI63Nxa" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 316 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "10CrLwL7JGxqsbRAHzuDi9" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 319 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180.365, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e0Ibm1kFlOL5Y08j9vfZIW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 318 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "0ccBc9M81BQ60jnN9IpYF/" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 321 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -106.37, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d8kVN+WEVCyK0RY2zr3mik" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 320 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "2ecXDdzxVPDac3I9kmQh2O" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 323 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -32.793, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "45DCQIl5tEAauOVSVBVjAR" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 322 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "0afouHrRtF4KDKe42ONEFY" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 325 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 40.784, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "27mQhkbn1KDLtig5qr11t9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 324 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "ce+eAa2txCjK03huiW2kRC" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 327 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.197, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7dVy2uePVBG66KwXT23Qw2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 326 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "71JwDa5KVFG60eFFvqIBIQ" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 329 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 189.192, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "74QRJDuxNPG73Yg29bLFPy" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 328 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "99ElnUSDlDnIPZ9m+WYwIW" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 331 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 262.768, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7aI9ZMmG5NBqEfr9NiUT+D" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 330 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "2a7M2UkR9N0KFMKDlmtzxa" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 313 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 333 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 337.599, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f36AKFgEBPPLvXO/xJt+wi" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 332 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "f5Ne5Xao1DOrzMBCdMi4Wn" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 298 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "f10CrxhcJD0qgwPmkRKH+s" + }, + { + "__type__": "cc.Node", + "_name": "gongxi", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [ + { + "__id__": 336 + }, + { + "__id__": 338 + } + ], + "_active": true, + "_components": [ + { + "__id__": 341 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 773, + "height": 180 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 660.897, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a4GzSXjPpLq5ZHnTstAAUH" + }, + { + "__type__": "cc.Node", + "_name": "gongxiguoguan", + "_objFlags": 0, + "_parent": { + "__id__": 335 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 337 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 747, + "height": 203 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 32.07, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "22VePkkKNHMpWJGBqFgP/f" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 336 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "863644c9-9beb-4e25-9c0f-acab9a62cfdd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "12cQ16qQxGzZbpAoptn7aq" + }, + { + "__type__": "cc.Node", + "_name": "cai", + "_objFlags": 0, + "_parent": { + "__id__": 335 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 339 + }, + { + "__id__": 340 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 400, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3bAtUNwsJNXbzlylthl5Rd" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 338 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2285b83c-30f1-40fd-837d-5ad53f304172" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "4ab64ad5-36e2-4dd6-96a4-f184d39f5bfd" + }, + "_id": "3bmZVpUJxBZao4bP5k/gqJ" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 338 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "5b13766d-332c-4bc1-aa65-123ace5f9964" + }, + "_clips": [ + { + "__uuid__": "5b13766d-332c-4bc1-aa65-123ace5f9964" + } + ], + "playOnLoad": false, + "_id": "b4BzkNN0VGA6G0zgtoLt2c" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 335 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3cac0c04-c634-4a91-8e3f-75c231e2cafe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "ea8IvpFRlKX5FSPIIOXIEA" + }, + { + "__type__": "cc.Node", + "_name": "pian", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 343 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 510, + "height": 510 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 179.645, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f4piX+7LhEeJsgvDKzlEYL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 342 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c73c5e21-0f4c-4a64-9ff4-c29cece42e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "8b69cdeb-958b-4b97-b258-6c4755a7e20a" + }, + "_id": "8e62/hiaRHqpAMIckxUZD5" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 345 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1388, + "height": 1366 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 65.665, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 2 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "82jPOc34NB5rFckl19+jir" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 344 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "34ead193-0963-4181-bf4d-fc0bda204007" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "8b69cdeb-958b-4b97-b258-6c4755a7e20a" + }, + "_id": "cdP2alaNtG57UkOmsDOgqL" + }, + { + "__type__": "cc.Node", + "_name": "coins4", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 347 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 171, + "height": 191 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 179.645, + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 2 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eafGfcciVHhI5EMtlkLZbf" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 346 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2bd513a-a1ab-44fa-9d02-6ce2b94cfd7a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "acMQuXoRhDNaFh9Rm1gxHy" + }, + { + "__type__": "cc.Node", + "_name": "tiaodik", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [ + { + "__id__": 349 + }, + { + "__id__": 351 + }, + { + "__id__": 353 + } + ], + "_active": true, + "_components": [ + { + "__id__": 354 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 802, + "height": 118 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -117.841, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b7WDu2zqNOLpAa+8+YjQ8L" + }, + { + "__type__": "cc.Node", + "_name": "ninyihuode", + "_objFlags": 0, + "_parent": { + "__id__": 348 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 350 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 189, + "height": 43 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -153.112, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fcm+ZDCopCw4R4kPIksj9+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 349 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "75782468-578c-4cb4-b082-cdf97059d564" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "19CafbzD9IVY34891Lfes2" + }, + { + "__type__": "cc.Node", + "_name": "meijinbi", + "_objFlags": 0, + "_parent": { + "__id__": 348 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 352 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 188.221, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "46OxU0KuJD/YjLZrktQ/cu" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 351 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d0dd40cc-28d1-4024-b235-e0e4576d6c12" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "09VKkAdL5FJ7LyEcftC6C5" + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 348 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.159, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "742SsDkjlGroPXKlQHkDZm" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 348 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "79cf65a4-9853-4eba-9d1e-6551a28f3d6e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "58p9XBGcBIbJSUCjVXzonA" + }, + { + "__type__": "cc.Node", + "_name": "nextBtn", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 356 + }, + { + "__id__": 357 + }, + { + "__id__": 359 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -322.097, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "44blZFeNdFYaDafI+ABKyL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 355 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "84c371e6-3d38-45cb-9167-46f080e2f1a3" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "47DCNDBIZPj4BOHRTht2zm" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 355 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 358 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 355 + }, + "_id": "02dmnqIIhNA7gNoxAqWnCT" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "winLevel", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 355 + }, + "_enabled": true, + "_id": "06MueSn6pH/5T9HAgXf7tc" + }, + { + "__type__": "cc.Node", + "_name": "homeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 361 + }, + { + "__id__": 362 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -527.059, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "67LZTVWmpEAYT6hpcfFqx4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 360 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39786f04-d554-4943-b731-277ce4e7f66d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "e1QQZPsf5JjJy56c/Aa9SH" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 360 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 363 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 360 + }, + "_id": "340osYA4tCpJlhedNAxg8f" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "returnHome", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "caidai", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 365 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 750 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c1GaS5SwhFJZY/KDPdJgCW" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 364 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "a22a0d35-3bff-4c75-9001-fb024d1f0f58" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "ad6rs3UJZB3r0zGf1W+3Xb" + }, + { + "__type__": "cc.Node", + "_name": "diguan", + "_objFlags": 0, + "_parent": { + "__id__": 297 + }, + "_children": [ + { + "__id__": 367 + } + ], + "_active": true, + "_components": [ + { + "__id__": 368 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 234, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 503.873, + 0, + 0, + 0, + 0, + 1, + 0.01, + 0.01, + 2 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "55In+XJ/RLupTqRnK/veq9" + }, + { + "__type__": "cc.Node", + "_name": "level", + "_objFlags": 0, + "_parent": { + "__id__": 366 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 9.989, + 0, + 0, + 0, + 0, + 0, + 1, + 0.6, + 0.6, + 0.6 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "bbHzukwNlHsLQhws5aRmTn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 366 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fd06b371-85a5-40dc-b997-70701bf6a5ff" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "93/6HRF0VBlYF9xOTWQ0ry" + }, + { + "__type__": "cc.Node", + "_name": "Revive", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [ + { + "__id__": 729 + }, + { + "__id__": 738 + }, + { + "__id__": 751 + }, + { + "__id__": 765 + }, + { + "__id__": 785 + } + ], + "_active": true, + "_components": [ + { + "__id__": 793 + }, + { + "__id__": 794 + } + ], + "_prefab": { + "__id__": 795 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 956, + "height": 332 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.962, + -947.697, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d8VGw92nNGtYXsihYBVxPP" + }, + { + "__type__": "cc.Node", + "_name": "Time", + "_objFlags": 0, + "_parent": { + "__id__": 371 + }, + "_children": [ + { + "__id__": 637 + }, + { + "__id__": 639 + }, + { + "__id__": 641 + }, + { + "__id__": 643 + }, + { + "__id__": 645 + }, + { + "__id__": 651 + }, + { + "__id__": 667 + }, + { + "__id__": 701 + }, + { + "__id__": 369 + }, + { + "__id__": 705 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 87.992, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "99k/frMy1Lz6U4YMjy0tug" + }, + { + "__type__": "cc.Node", + "_name": "lose", + "_objFlags": 0, + "_parent": { + "__id__": 372 + }, + "_children": [ + { + "__id__": 384 + }, + { + "__id__": 370 + }, + { + "__id__": 391 + }, + { + "__id__": 451 + }, + { + "__id__": 515 + }, + { + "__id__": 579 + }, + { + "__id__": 609 + } + ], + "_active": true, + "_components": [ + { + "__id__": 636 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 71.74900000000002, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f7BDBl/5FLXryX99RKEtQZ" + }, + { + "__type__": "cc.Node", + "_name": "Lose", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 373 + }, + { + "__id__": 371 + }, + { + "__id__": 378 + } + ], + "_active": false, + "_components": [ + { + "__id__": 383 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "366Lx63TdOsbhMMswe7QCc" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 372 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 374 + }, + { + "__id__": 375 + }, + { + "__id__": 376 + }, + { + "__id__": 377 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "faW20AwPJAJYII4Y7QiGxZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 373 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "7bCa9s03FEMIZDSQe7GVaJ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 373 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "14J3WuZ3BJXb197w6PIskc" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 373 + }, + "_enabled": true, + "_id": "c22Pk+4yZHHaEcGiym9WxK" + }, + { + "__type__": "2a16azwF4VA6oPA4CdYLk6k", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 373 + }, + "_enabled": true, + "music": null, + "effect": null, + "vibrate": null, + "exit": null, + "win": null, + "_id": "aembLaWjhKi5LeeqXo1KYN" + }, + { + "__type__": "cc.Node", + "_name": "share", + "_objFlags": 0, + "_parent": { + "__id__": 372 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 379 + }, + { + "__id__": 380 + }, + { + "__id__": 381 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 584, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 237.79999999999995, + 899.812, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e8ydWRmBBAV7ZprXb/qshe" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 378 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ea910867-db13-4d95-a0c1-4eb24501001c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "51DgMAsqpIzomWCIGyVYlO" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 378 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 32, + "_left": 485.8, + "_right": 10.199999999999989, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "e31ee3yZ9Bh5lrSfp3oG8C" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 378 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 382 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 378 + }, + "_id": "37p3bJBDRFBa0gE2Fjw5i0" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "shareFriend", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 372 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "ac2KaDMF5ILKohslMrRu2N" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 371 + }, + "_children": [ + { + "__id__": 385 + } + ], + "_active": true, + "_components": [ + { + "__id__": 389 + }, + { + "__id__": 390 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 38.815, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d2lf8D6UZDjYWgnM6okXhr" + }, + { + "__type__": "cc.Node", + "_name": "closet", + "_objFlags": 0, + "_parent": { + "__id__": 384 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 386 + }, + { + "__id__": 387 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 431.951, + 586.501, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2en3jMO/5C64b7qNTIu4Px" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 385 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "51wUg3aJVMYKQxRqZMwPsE" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 385 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 388 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 385 + }, + "_id": "86+4sIpYhOBrrRKStqWfWx" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "homeBtn", + "customEventData": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 384 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bf006254-d63b-49e7-9bb2-26cd7328e3e8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "03Pn3r/p9GMpBQq9lvGOdk" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 384 + }, + "_enabled": true, + "_id": "38QMhLD8VGkJgNr8GW3Wrw" + }, + { + "__type__": "cc.Node", + "_name": "Boom", + "_objFlags": 0, + "_parent": { + "__id__": 371 + }, + "_children": [ + { + "__id__": 392 + }, + { + "__id__": 394 + }, + { + "__id__": 400 + }, + { + "__id__": 408 + }, + { + "__id__": 414 + }, + { + "__id__": 416 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.935, + -54.722, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1100mE3D9NOZt7Z7LNDlJY" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 391 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 393 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 283, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.137, + 753.348, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "05btWBn3xAxb7FV3ZHfUoV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 392 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b0728043-e01f-4577-84e4-a11d3184b397" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "e7BL6Du21JCq4uecDWrtxC" + }, + { + "__type__": "cc.Node", + "_name": "yuandi", + "_objFlags": 0, + "_parent": { + "__id__": 391 + }, + "_children": [ + { + "__id__": 395 + }, + { + "__id__": 397 + } + ], + "_active": true, + "_components": [ + { + "__id__": 399 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 516 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 158.981, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "323RjyjA9DNpLs8wH7gLwQ" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 394 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 396 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "26wBbkAoJOVIr4g81fStYD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 395 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "d5ugtahU1H1IylH+OwLMpw" + }, + { + "__type__": "cc.Node", + "_name": "boom_show", + "_objFlags": 0, + "_parent": { + "__id__": 394 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 398 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 484, + "height": 559 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a0YfSM4HxPUqvJkplo+Mt/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 397 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "81a0ae94-d401-41bf-a4c6-87bae0c9cf3f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "b7RTYJtdJLSYpgnvJoNdaI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 394 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59873a8f-b079-4344-a77a-a72c76753cb0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "a1c1IhaChDJYtn3ewy+1jd" + }, + { + "__type__": "cc.Node", + "_name": "boomBtn", + "_objFlags": 0, + "_parent": { + "__id__": 391 + }, + "_children": [ + { + "__id__": 401 + }, + { + "__id__": 403 + } + ], + "_active": false, + "_components": [ + { + "__id__": 405 + }, + { + "__id__": 406 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -191.688, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "78Fl/8dnVGur/T2tCF1Awd" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 400 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 402 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131, + "height": 68 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 35.05, + -0.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1amWaOF6NB3Ki34Pjezr8L" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 401 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c44fbe15-765f-49ff-99d0-3a34ef8511b3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "b5/REWjY1P86txOGcwCb/4" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 400 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 404 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -82.65, + -4.529, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a4P1aF86FNuIg8NxKkDL5m" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 403 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3558560-39d0-4650-9ac4-a958b320190a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "08BKn+DtNKtIxRut93exXc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 400 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "826f5bb2-a3cb-48ed-b657-ef6b82964521" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "c0eMyWeD1EIKIFy3smrzKJ" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 400 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 407 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 400 + }, + "_id": "fdZzVHD4hNAIg80rQMiVrL" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "", + "handler": "", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 391 + }, + "_children": [ + { + "__id__": 409 + } + ], + "_active": true, + "_components": [ + { + "__id__": 411 + }, + { + "__id__": 412 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -427.699, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1eERHUg2hDxZesih/09x+A" + }, + { + "__type__": "cc.Node", + "_name": "btn_zi_xhongshi", + "_objFlags": 0, + "_parent": { + "__id__": 408 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 410 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 328, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 2.996, + 5.993, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3bsSGyWotOm4rtk+8qjqXM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 409 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "d9jXsgHd5Kmbw/LxgFoADG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 408 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39786f04-d554-4943-b731-277ce4e7f66d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "78ebGZg1hFJZepPITqQD8J" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 408 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 413 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 408 + }, + "_id": "55yv+R8WZJC6lx8Nc3Ql1k" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "homeBtn", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "result_title4", + "_objFlags": 0, + "_parent": { + "__id__": 391 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 415 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 692, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 541.599, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "79pYeHtylLz5zul1oTgw7G" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 414 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4564c5d4-503a-4d52-ab07-8f71a3fa1d88" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "44kuqBuX9FW4tvE1UxOPvf" + }, + { + "__type__": "cc.Node", + "_name": "buyBtn", + "_objFlags": 0, + "_parent": { + "__id__": 391 + }, + "_children": [ + { + "__id__": 417 + }, + { + "__id__": 419 + }, + { + "__id__": 421 + }, + { + "__id__": 423 + }, + { + "__id__": 430 + }, + { + "__id__": 439 + } + ], + "_active": true, + "_components": [ + { + "__id__": 448 + }, + { + "__id__": 449 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -231.66, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a0qMFusopD+7ZP5XXSsmFl" + }, + { + "__type__": "cc.Node", + "_name": "yichu", + "_objFlags": 0, + "_parent": { + "__id__": 416 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 418 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 289, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -145.122, + 12.351, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "13Nc4CMS5NerL95kaakjdH" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 417 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fea83333-5bb7-4949-b13e-2e0cf1d2704b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "2ewdIY44ZOwrPjPZrvdJDS" + }, + { + "__type__": "cc.Node", + "_name": "coins", + "_objFlags": 0, + "_parent": { + "__id__": 416 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 420 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 64.842, + 6.175, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "daHqeGTQFNHJqs6uUYPYeU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 419 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b94c323b-3d26-4684-ba64-0f00a13438d2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "2f4ytWVFFJh7hfowfl617U" + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 416 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 422 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 294.634, + 7.498, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "05FE9c+yxC/aJ6FG5+fgI2" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 421 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_resize": 0, + "_N$layoutType": 1, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$paddingLeft": 0, + "_N$paddingRight": 0, + "_N$paddingTop": 0, + "_N$paddingBottom": 0, + "_N$spacingX": 0, + "_N$spacingY": 0, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0, + "_N$affectedByScale": false, + "_id": "0abrl5DQdJNrZJ3B605jeR" + }, + { + "__type__": "cc.Node", + "_name": "coin1", + "_objFlags": 0, + "_parent": { + "__id__": 416 + }, + "_children": [ + { + "__id__": 424 + }, + { + "__id__": 426 + }, + { + "__id__": 428 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 46.593, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1bJnjN8BNAc6m4PNydOhpD" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 423 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 425 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 86.821, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "58txMWmzFHCpHdR0mkupNu" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 424 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02083668-1c42-4283-98ed-8b05cb28cf97" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "2bNjmPLRRLnp0q/HmHzc+y" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 423 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 427 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 122.821, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "75Ril2tX5BxpIqth929HuT" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 426 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "03hnH3nsZGhLRNjkT1pdl8" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 423 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 429 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 159.821, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a3I0Mf94tKy7LuA1gMnocL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 428 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "98+h/veiFI1bc6rSxA38fY" + }, + { + "__type__": "cc.Node", + "_name": "coin2", + "_objFlags": 0, + "_parent": { + "__id__": 416 + }, + "_children": [ + { + "__id__": 431 + }, + { + "__id__": 433 + }, + { + "__id__": 435 + }, + { + "__id__": 437 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60.411, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2b8opZIvpDcKHhSRmcdPF2" + }, + { + "__type__": "cc.Node", + "_name": "coins1", + "_objFlags": 0, + "_parent": { + "__id__": 430 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 432 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60.655, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "78xEH45dNOK50Y5/HxD2sj" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 431 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "a1xDad8pZOepc08excXahc" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 430 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 434 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 89.655, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "401aStBQJBKZqHbzr4728N" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 433 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "b9IrXapLBMQI2FmjFDjgDL" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 430 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 436 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 125.655, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7ds5MjV15HnICYD9p6SgAZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 435 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "920XsQ7o1PrZynf713Vt2N" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 430 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 438 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 162.655, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c581SafRZC2LE1SfUqAP7S" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 437 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "80NeNKLo9G5aqcGJfnA5QE" + }, + { + "__type__": "cc.Node", + "_name": "coin3", + "_objFlags": 0, + "_parent": { + "__id__": 416 + }, + "_children": [ + { + "__id__": 440 + }, + { + "__id__": 442 + }, + { + "__id__": 444 + }, + { + "__id__": 446 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 284.959, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1.1, + 1.1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "58C5K7sJpNDqoOWxMXRDAo" + }, + { + "__type__": "cc.Node", + "_name": "coins1", + "_objFlags": 0, + "_parent": { + "__id__": 439 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 441 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -133.5, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c32pW6KjJKoKRd/nt2+3t9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 440 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "9c47uUMf1DpLFNys7xMlfP" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 439 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 443 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -100.5, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "01UTSe/X1Lsphj4+U2zpV4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 442 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02083668-1c42-4283-98ed-8b05cb28cf97" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "4dBMmCPV5H9IqR3/AEt99j" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 439 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 445 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -65.5, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "daTjEKNFVAwasggHvQVYNZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 444 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "8eoXCZHnZMt5WPd5BGYW1n" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 439 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 447 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -28.5, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "dcbv7SStBHI6gzeEJcAGwz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 446 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "54GZT6kAJM0Kn/fpeZBqI7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 416 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1fd745f8-009d-4a16-aa79-68e518664e6e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "3bo3ZLVYlMU7g3AiRdYYXW" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 416 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 450 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 416 + }, + "_id": "1eGE6t0E9Dtp+xwO6Shc3T" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "reviewLevel", + "customEventData": "boom" + }, + { + "__type__": "cc.Node", + "_name": "Lock", + "_objFlags": 0, + "_parent": { + "__id__": 371 + }, + "_children": [ + { + "__id__": 452 + }, + { + "__id__": 454 + }, + { + "__id__": 456 + }, + { + "__id__": 458 + }, + { + "__id__": 460 + }, + { + "__id__": 462 + }, + { + "__id__": 495 + }, + { + "__id__": 499 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "0bk5X+UdtG+o7m0EXRTFdu" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 451 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 453 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 582, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 482.031, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d2FGCgf65Ogp1rhN8g3+1D" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 452 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7fe23229-5813-4824-a189-cf27dd1fde3d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "94T4lVW8lB2qAlvEmUBG/j" + }, + { + "__type__": "cc.Node", + "_name": "chubuqule", + "_objFlags": 0, + "_parent": { + "__id__": 451 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 455 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 281, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 696.766, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2a/gvOjgRIxo6EeuibtWrU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 454 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2dbab140-447b-4863-849a-4378914bb398" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "44tu2DVZ1BLZfAmN4igza+" + }, + { + "__type__": "cc.Node", + "_name": "boom_show", + "_objFlags": 0, + "_parent": { + "__id__": 451 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 457 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 516 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 86.456, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7aYa1MUgBPXabnBAj4wdUe" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 456 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59873a8f-b079-4344-a77a-a72c76753cb0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "35t2NiVfVH1KNrHljPsPtq" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 451 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 459 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 86.456, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5cVwIo/t9CNJ1AvklmxHLJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 458 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "7acRsMf09JqL1mSt7gdlF0" + }, + { + "__type__": "cc.Node", + "_name": "door", + "_objFlags": 0, + "_parent": { + "__id__": 451 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 461 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 616, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 86.456, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e7WEs3xpFIBKJA4D7zEtd+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 460 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "adbcec35-6729-4d5c-983a-7ab1cccb8b36" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "aaL9MuZYRGlaWlqNyDD0V1" + }, + { + "__type__": "cc.Node", + "_name": "buyBtn", + "_objFlags": 0, + "_parent": { + "__id__": 451 + }, + "_children": [ + { + "__id__": 463 + }, + { + "__id__": 465 + }, + { + "__id__": 467 + }, + { + "__id__": 474 + }, + { + "__id__": 483 + } + ], + "_active": true, + "_components": [ + { + "__id__": 492 + }, + { + "__id__": 493 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -311.859, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c0t9xq1uFNQYkl94v04spB" + }, + { + "__type__": "cc.Node", + "_name": "doudakai", + "_objFlags": 0, + "_parent": { + "__id__": 462 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 464 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 322, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -142.011, + 14.144, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "31+gRdG9ZB6pGJrR3G3L7n" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 463 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "81f6c939-816a-469b-9429-1c3a746ef961" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "53myHDAgxPAoIuPB01djd+" + }, + { + "__type__": "cc.Node", + "_name": "coins", + "_objFlags": 0, + "_parent": { + "__id__": 462 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 466 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 72.743, + 5.842, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "86pXNLPWpH4aRSwgrhpSKT" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 465 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b94c323b-3d26-4684-ba64-0f00a13438d2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "494v0Nib9HN6DCmLR1L+TU" + }, + { + "__type__": "cc.Node", + "_name": "coin1", + "_objFlags": 0, + "_parent": { + "__id__": 462 + }, + "_children": [ + { + "__id__": 468 + }, + { + "__id__": 470 + }, + { + "__id__": 472 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 76.598, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "53cUccVllIsLTZ7BQscQ5S" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 467 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 469 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 86.821, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "66c5yFG0ZA/bV+8ZSauwVA" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 468 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02083668-1c42-4283-98ed-8b05cb28cf97" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "4f+IXTk+VAqrgn2U7AYzL+" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 467 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 471 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 122.821, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e97mjnFrtE245QTCKzb8hF" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 470 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "21wjT88f1MSqRepxkZ1fq7" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 467 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 473 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 159.821, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "49VfX2ztJHbq/D0jszxi1t" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 472 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "b09ttCXmdLabl1aII2RKU4" + }, + { + "__type__": "cc.Node", + "_name": "coin2", + "_objFlags": 0, + "_parent": { + "__id__": 462 + }, + "_children": [ + { + "__id__": 475 + }, + { + "__id__": 477 + }, + { + "__id__": 479 + }, + { + "__id__": 481 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 88.597, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "33aflpbudND7g95NAlDOkK" + }, + { + "__type__": "cc.Node", + "_name": "coins1", + "_objFlags": 0, + "_parent": { + "__id__": 474 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 476 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60.655, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "99rHAijQpLt5uRg7PpXHCw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 475 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "3bBa9k6s1KPr9vuO+fgPIR" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 474 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 478 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 89.655, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ceLdjbC7BP/pGqdpaGpHjJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 477 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "87p+unLtlPA5JxDG/mHu+x" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 474 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 480 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 125.655, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7beU+FCRVK5pYZKRMQG7BL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 479 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "ddBp34Z4tLor8gGDl4n6BC" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 474 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 482 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 162.655, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "16lApYzeJBX7kJXFqPIqXg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 481 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "56KDXzVhFMDq+tX8x9nBns" + }, + { + "__type__": "cc.Node", + "_name": "coin3", + "_objFlags": 0, + "_parent": { + "__id__": 462 + }, + "_children": [ + { + "__id__": 484 + }, + { + "__id__": 486 + }, + { + "__id__": 488 + }, + { + "__id__": 490 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 278.594, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c3dVVkrUlA84IuHF8O3PgT" + }, + { + "__type__": "cc.Node", + "_name": "coins1", + "_objFlags": 0, + "_parent": { + "__id__": 483 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 485 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -133.5, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "faJEplN8FEjLZmRLbzfd3Z" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 484 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "15aCfpsz5H559SeBu5E+wH" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 483 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 487 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -100.5, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "0aNfsq0XFIY48dfwMtaBVP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 486 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02083668-1c42-4283-98ed-8b05cb28cf97" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "54WLxC7kZGQadOJx8lSsQe" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 483 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 489 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -65.5, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "22EcfeOPpPy49i2gFT0GCs" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 488 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "24GRXMMmJOJ6yCS47KDBg1" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 483 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 491 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -28.5, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "61vmyZ20tDoJ/wTdVBGe1A" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 490 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "0emFc23VdIcag0IgK4knEI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 462 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1fd745f8-009d-4a16-aa79-68e518664e6e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "f6ppESktlNHZfUf15DjXfT" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 462 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 494 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 462 + }, + "_id": "edQGbD275DNLNRE28h8uZo" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "reviewLevel", + "customEventData": "lock" + }, + { + "__type__": "cc.Node", + "_name": "giveup", + "_objFlags": 0, + "_parent": { + "__id__": 451 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 496 + }, + { + "__id__": 497 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -509.472, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b1yKdnqKFCwZedwYbzN0Ly" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 495 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d33ab7fd-d515-4c41-85bb-e923cdcd2ef2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "9akeOQhP5F5KlkZunIQ7fY" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 495 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 498 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 495 + }, + "_id": "61Rwcd8TdKBrQzej/BbHQO" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "homeBtn", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "lockBtn", + "_objFlags": 0, + "_parent": { + "__id__": 451 + }, + "_children": [ + { + "__id__": 500 + }, + { + "__id__": 502 + }, + { + "__id__": 504 + }, + { + "__id__": 506 + }, + { + "__id__": 508 + }, + { + "__id__": 510 + } + ], + "_active": false, + "_components": [ + { + "__id__": 512 + }, + { + "__id__": 513 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -321.372, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9bQzWjtadN+KeTGC326Cxf" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 499 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 501 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131, + "height": 68 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 35.05, + 20.257, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "02PezD4atIv5IzUvaerGmI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 500 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c44fbe15-765f-49ff-99d0-3a34ef8511b3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "5bRzMNSolGFYTzerFarPTy" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 499 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 503 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -82.65, + -4.529, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "41YYyOgQtH5ZgS6s4xd6HX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 502 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3558560-39d0-4650-9ac4-a958b320190a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "4bNoWBV7JAcaDW/lBwQU06" + }, + { + "__type__": "cc.Node", + "_name": "number2", + "_objFlags": 0, + "_parent": { + "__id__": 499 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 505 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 6.427, + -33.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4d3CEDLaxF+Zhy74BeeTwX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 504 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6bf035fb-d4ed-4a70-a097-3d2625f9d102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "c6VeEM6HNMnLUfSrnPvCYD" + }, + { + "__type__": "cc.Node", + "_name": "number1", + "_objFlags": 0, + "_parent": { + "__id__": 499 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 507 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 6.427, + -33.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9cUMb/RVlNOZBvsaBu6Bam" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 506 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3e91ec35-c8d6-46bc-bfb4-0bdf81fbadd7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "8fchGnfUZCK5anSpQQa8bh" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 499 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 509 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 33.97, + -32.669, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "07nZy5RbhA+LLXRIw8Rgpa" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 508 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9ab22046-1a97-4305-9f1a-5e10329c4717" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "60zTlm+SxOopHY8+J8Setn" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 499 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 511 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 66.041, + -34.276, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7ew5ZqJ4ZDwYEtBJpfbD3Z" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 510 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6bf035fb-d4ed-4a70-a097-3d2625f9d102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "ee/tXossJGwJI71TYQHkxU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 499 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "826f5bb2-a3cb-48ed-b657-ef6b82964521" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "e5rTrkA2FMFaF1yMEeIJFw" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 499 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 514 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 499 + }, + "_id": "655dVf4UVDOrfIwT5AEPmn" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "", + "handler": "", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "Revolving", + "_objFlags": 0, + "_parent": { + "__id__": 371 + }, + "_children": [ + { + "__id__": 516 + }, + { + "__id__": 518 + }, + { + "__id__": 520 + }, + { + "__id__": 522 + }, + { + "__id__": 524 + }, + { + "__id__": 526 + }, + { + "__id__": 559 + }, + { + "__id__": 563 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6fV4T1j7lJa7ITCvYNrq8m" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 515 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 517 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 582, + "height": 57 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 482.031, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6fvWxfnH1PcId+iGoCsN+B" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 516 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "33eaf1fc-018f-46b0-9494-0761ae8aa86a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "b9uU5lgG1GlZb3elTTzpsU" + }, + { + "__type__": "cc.Node", + "_name": "chubuqule", + "_objFlags": 0, + "_parent": { + "__id__": 515 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 519 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 312, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 696.766, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "336H31CnJCIJqQNW/UcFfe" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 518 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d0858e7d-9fce-4ad8-96b7-d3f205f7553b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "dbKZVnI7RM5LoVfOsq4i8j" + }, + { + "__type__": "cc.Node", + "_name": "boom_show", + "_objFlags": 0, + "_parent": { + "__id__": 515 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 521 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 516 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 86.456, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "68++K/1S9ANaShbg5fZKcI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 520 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59873a8f-b079-4344-a77a-a72c76753cb0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "15EzCwSNBG87Y06iaqSUWQ" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 515 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 523 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 86.456, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "78rhHLtDlH/btnM7T3x5AY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 522 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "cekaHas1lEVrIo5eMyRtA6" + }, + { + "__type__": "cc.Node", + "_name": "door", + "_objFlags": 0, + "_parent": { + "__id__": 515 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 525 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 215 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 86.456, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "94aloDyL1FJrtZ2qBj+SMX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 524 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3021f5d4-c725-4a26-bf66-a91367f77e91" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "14vyg+KT5P/rpY8R+MfI60" + }, + { + "__type__": "cc.Node", + "_name": "buyBtn", + "_objFlags": 0, + "_parent": { + "__id__": 515 + }, + "_children": [ + { + "__id__": 527 + }, + { + "__id__": 529 + }, + { + "__id__": 531 + }, + { + "__id__": 538 + }, + { + "__id__": 547 + } + ], + "_active": true, + "_components": [ + { + "__id__": 556 + }, + { + "__id__": 557 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -311.859, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ab0OQOE1ZIxZVmpIu41/X1" + }, + { + "__type__": "cc.Node", + "_name": "doudakai", + "_objFlags": 0, + "_parent": { + "__id__": 526 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 528 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 316, + "height": 78 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -142.011, + 5.592, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "45FbjNHVZGhYPWokVeQnKL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 527 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "93ff2036-0218-4ff8-a9e8-7f4dbde68650" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "fdCktGXkVF3asqbGgH9IGY" + }, + { + "__type__": "cc.Node", + "_name": "coins", + "_objFlags": 0, + "_parent": { + "__id__": 526 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 530 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 72.743, + 5.842, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8aTcoFizRLn62loswiQ6/b" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 529 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b94c323b-3d26-4684-ba64-0f00a13438d2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "88SfEx5XFKE6SBpkQNzZk9" + }, + { + "__type__": "cc.Node", + "_name": "coin1", + "_objFlags": 0, + "_parent": { + "__id__": 526 + }, + "_children": [ + { + "__id__": 532 + }, + { + "__id__": 534 + }, + { + "__id__": 536 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 76.598, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "44xl2WZY9EZInp1aKS/9yN" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 531 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 533 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 86.821, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4eqPpca+tEGLAc0JuOcpdG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 532 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02083668-1c42-4283-98ed-8b05cb28cf97" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "c5S1TQiMFMc5ei3sf+q9Qv" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 531 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 535 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 122.821, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eb0KeDV8FF3pZd+PtDX5JF" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 534 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "d2PS4yxJVFuZSYpE0yTyOU" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 531 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 537 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 159.821, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7dm2GNrbNAspI+N7knPaHi" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 536 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "38wjcYnBpNhI2Yqvqr9054" + }, + { + "__type__": "cc.Node", + "_name": "coin2", + "_objFlags": 0, + "_parent": { + "__id__": 526 + }, + "_children": [ + { + "__id__": 539 + }, + { + "__id__": 541 + }, + { + "__id__": 543 + }, + { + "__id__": 545 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 88.597, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "0d6t5udD9M2YB8cf+QCJma" + }, + { + "__type__": "cc.Node", + "_name": "coins1", + "_objFlags": 0, + "_parent": { + "__id__": 538 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 540 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60.655, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a9vWFXtXxNarnFHUjhZTpi" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 539 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "02duldKMZFppn7dZTRPAw3" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 538 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 542 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 89.655, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fbpX7fvmVORYDzouGpEU0W" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 541 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "07sAndqJ1Ekbyu24krj2/4" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 538 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 544 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 125.655, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "71PJNRkjdJzLWYii9T0JCt" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 543 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "1aWdq6AnlC8KLtKTJbd5xV" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 538 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 546 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 162.655, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "05Rq7hzBBBHrTBnfKszt8Z" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 545 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "c4rGWmDaBPV4hk+JZH0ZqO" + }, + { + "__type__": "cc.Node", + "_name": "coin3", + "_objFlags": 0, + "_parent": { + "__id__": 526 + }, + "_children": [ + { + "__id__": 548 + }, + { + "__id__": 550 + }, + { + "__id__": 552 + }, + { + "__id__": 554 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 278.594, + -1.869, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d20MWo0EJPhoxc7MijZRPh" + }, + { + "__type__": "cc.Node", + "_name": "coins1", + "_objFlags": 0, + "_parent": { + "__id__": 547 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 549 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -133.5, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eccR6ELjlH0Y3fEbaMjJEy" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 548 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "e9kVNm/6FOmZrav8cCT7hu" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 547 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 551 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -100.5, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2bCP2pdSVN6Z46w9FOv7gJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 550 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02083668-1c42-4283-98ed-8b05cb28cf97" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "017339SrJP9bbsBBTt2zik" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 547 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 553 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -65.5, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2eKFk4+19P25xihS8lhD0i" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 552 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "71hHf83GZAYLsGMsLpmNqR" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 547 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 555 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -28.5, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b4J90VBnJM+pov/Bz//KX7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 554 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "8draYMDQxDfLeG3pKfO4Z7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 526 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1fd745f8-009d-4a16-aa79-68e518664e6e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "f2jHVveY1Ghqc1ChsC4ifm" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 526 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 558 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 526 + }, + "_id": "1birNIvClPsbckOGEwTyRj" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "reviewLevel", + "customEventData": "revolving" + }, + { + "__type__": "cc.Node", + "_name": "giveup", + "_objFlags": 0, + "_parent": { + "__id__": 515 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 560 + }, + { + "__id__": 561 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -509.472, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "82EnPtM5VPkY6F9YxLRU9P" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 559 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d33ab7fd-d515-4c41-85bb-e923cdcd2ef2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "db6fWUA1hODK9G0RR2Fdte" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 559 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 562 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 559 + }, + "_id": "c3QU1zxTVJx5MVuVzzEn4k" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "homeBtn", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "lockBtn", + "_objFlags": 0, + "_parent": { + "__id__": 515 + }, + "_children": [ + { + "__id__": 564 + }, + { + "__id__": 566 + }, + { + "__id__": 568 + }, + { + "__id__": 570 + }, + { + "__id__": 572 + }, + { + "__id__": 574 + } + ], + "_active": false, + "_components": [ + { + "__id__": 576 + }, + { + "__id__": 577 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -321.372, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "12hOc0miJF0KlDdqmv7ZmT" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 563 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 565 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131, + "height": 68 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 35.05, + 20.257, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "efvJ22k8pABIgZLzZT4CZ0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 564 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c44fbe15-765f-49ff-99d0-3a34ef8511b3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "081qK7pldMm5UqR/qBLwMq" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 563 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 567 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -82.65, + -4.529, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "aerFatQ8hLTYjWjt6lwff/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 566 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3558560-39d0-4650-9ac4-a958b320190a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "09oW2ztEZKt48l1v+E/4EP" + }, + { + "__type__": "cc.Node", + "_name": "number2", + "_objFlags": 0, + "_parent": { + "__id__": 563 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 569 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 6.427, + -33.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "37kITBYnxF6oxaLY+RdPVC" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 568 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6bf035fb-d4ed-4a70-a097-3d2625f9d102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "31bvTtfrpNUqDfAmFhyN+G" + }, + { + "__type__": "cc.Node", + "_name": "number1", + "_objFlags": 0, + "_parent": { + "__id__": 563 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 571 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 6.427, + -33.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "30HaUxY91FYp/3WrHURFo5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 570 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3e91ec35-c8d6-46bc-bfb4-0bdf81fbadd7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "790NS35M9Od5I7IebQiwfu" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 563 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 573 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 33.97, + -32.669, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8a385237RMIYihWh/nZVvK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 572 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9ab22046-1a97-4305-9f1a-5e10329c4717" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "53LA4SUUBCsb7gPTgB2qiF" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 563 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 575 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 66.041, + -34.276, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d518MlXwFFcJsyOCy7P6Pn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 574 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6bf035fb-d4ed-4a70-a097-3d2625f9d102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "1cvoanot5LuL3cl5JTi8NE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 563 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "826f5bb2-a3cb-48ed-b657-ef6b82964521" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "474WtPFCtGC7rN/6lPGwwy" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 563 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 578 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 563 + }, + "_id": "11SMfOcyNJ7Kvn3jmsNhUR" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "", + "handler": "", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "WinStreak", + "_objFlags": 0, + "_parent": { + "__id__": 371 + }, + "_children": [ + { + "__id__": 580 + }, + { + "__id__": 583 + }, + { + "__id__": 590 + }, + { + "__id__": 592 + }, + { + "__id__": 594 + }, + { + "__id__": 598 + }, + { + "__id__": 602 + }, + { + "__id__": 606 + } + ], + "_active": false, + "_components": [ + { + "__id__": 608 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3e1tiX6PBJT4j1aitOY8cY" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 579 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 581 + }, + { + "__id__": 582 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6dGHqKk45N8p7dCTBxh4DI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 580 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "87A76v+gNCWL0wtf1youbZ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 580 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": -240, + "_bottom": -240, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "b2+Nl4xc9JWJ4txYFnZ7Im" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 579 + }, + "_children": [ + { + "__id__": 584 + } + ], + "_active": true, + "_components": [ + { + "__id__": 588 + }, + { + "__id__": 589 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 38.815, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "aamG6/+i1PHbMllWALpnyt" + }, + { + "__type__": "cc.Node", + "_name": "closet", + "_objFlags": 0, + "_parent": { + "__id__": 583 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 585 + }, + { + "__id__": 586 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 431.951, + 586.501, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c6m/4roY9FrJcX3Y3qAsh2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 584 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "99QCtI9rZMTqt6FGbQcytW" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 584 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 587 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 584 + }, + "_id": "00rn6kilRJxrMoSBJXUFEQ" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "homeBtn", + "customEventData": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 583 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bf006254-d63b-49e7-9bb2-26cd7328e3e8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "06K+c+b7pFjL6u/8JkG8k/" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 583 + }, + "_enabled": true, + "_id": "d6eHx9J4xFvr2jXdhK2GrV" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 579 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 591 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 383, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 7.452, + 696.337, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b7bbZSqB9BFbD80cwPX+3O" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 590 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "939a9879-5f49-4cd7-a70c-ef3d6064b965" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "a95Q/IAIVKuq+CbDGCax0F" + }, + { + "__type__": "cc.Node", + "_name": "hammer_action", + "_objFlags": 0, + "_parent": { + "__id__": 579 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 593 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 674, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.829, + 124.442, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1cUXHBcoxAArxVJfJ0eTFI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 592 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9726e260-c07d-42f7-b3d2-159788d155da" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "83zGqhfJtFCbmf71PymlUv" + }, + { + "__type__": "cc.Node", + "_name": "homeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 579 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 595 + }, + { + "__id__": 596 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 434.98, + 618.443, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ae4jn4cftIxK5EG8JxdiB5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 594 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "3bH/tu5E9MYJy1z0Tn4pBh" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 594 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 597 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 594 + }, + "_id": "1b5KWb5CtOSbWHa8yKPheN" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "closeWinStreak", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 579 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 599 + }, + { + "__id__": 600 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -348.229, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6aLt99oWpDPpToPPNLE2yy" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 598 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3bf0b81-eeab-4042-b247-e3576fd7932b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "f5mB+JSxpJMpHhrt9L6l85" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 598 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 601 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 598 + }, + "_id": "28tbezqPVLHZjlu6fRl5fr" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "closeWinStreak", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "return", + "_objFlags": 0, + "_parent": { + "__id__": 579 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 603 + }, + { + "__id__": 604 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -538.537, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "36ijV4ijVIWJ8OBviUROrf" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 602 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d33ab7fd-d515-4c41-85bb-e923cdcd2ef2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "8fIxwoB0lLMKZCbWW5j+Ou" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 602 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 605 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 602 + }, + "_id": "7a3PVQ+7JO9aLAN927h25d" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "openHealth", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "result_title4", + "_objFlags": 0, + "_parent": { + "__id__": 579 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 607 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 699, + "height": 139 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 482.567, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "dcirkaGURNKZy6jxhuX+x2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 606 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5f7614df-42e7-47ab-97c8-590b1fe58b1a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "31jGy4EBpNea7Dn1PDUSP8" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 579 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "9aL45KIztGr4IVaZB4eQUs" + }, + { + "__type__": "cc.Node", + "_name": "Health", + "_objFlags": 0, + "_parent": { + "__id__": 371 + }, + "_children": [ + { + "__id__": 610 + }, + { + "__id__": 612 + }, + { + "__id__": 616 + }, + { + "__id__": 622 + }, + { + "__id__": 626 + }, + { + "__id__": 630 + }, + { + "__id__": 634 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.935, + -54.722, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "64cC23cEdDy7+MguJh0fUR" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 609 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 611 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 412, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.137, + 738.462, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "01wTPfT/5LVqr3ZgghxKsE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 610 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c5e5470d-260b-4a2b-8e19-f62edd6ca333" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "29C+fh8fpHJJGUvHYns3TL" + }, + { + "__type__": "cc.Node", + "_name": "yuandi", + "_objFlags": 0, + "_parent": { + "__id__": 609 + }, + "_children": [ + { + "__id__": 613 + } + ], + "_active": true, + "_components": [ + { + "__id__": 615 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 516 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 182.291, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "daKXKRK+FEvbBUIoU9fwbd" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 612 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 614 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "06RPKLUhNFIZjGKkQCWG7j" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 613 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "81BfGaSQxJY4KiWNeKLh4w" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 612 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59873a8f-b079-4344-a77a-a72c76753cb0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "71YzJ98kZJ+oGw3WvdNhaW" + }, + { + "__type__": "cc.Node", + "_name": "boom_show", + "_objFlags": 0, + "_parent": { + "__id__": 609 + }, + "_children": [ + { + "__id__": 617 + }, + { + "__id__": 619 + } + ], + "_active": true, + "_components": [ + { + "__id__": 621 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 364, + "height": 276 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 176.394, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "75/8o7Uo5GK5UOksSb0Vaf" + }, + { + "__type__": "cc.Node", + "_name": "hp_-", + "_objFlags": 0, + "_parent": { + "__id__": 616 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 618 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 29 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 67.39, + -80.691, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9feKpN9/FFnrBmJB6ZYLpq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 617 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "44cbc1be-fe4c-40df-8e52-3c2f768d61ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "32yo/8fYNJiYaIRx8nV+TX" + }, + { + "__type__": "cc.Node", + "_name": "hp_1", + "_objFlags": 0, + "_parent": { + "__id__": 616 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 620 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 97, + "height": 108 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 126.926, + -81.045, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3crKfBEBNMj5kXnyr470Vb" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 619 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9026aa5a-1be4-4f61-8d50-e44e1df4c071" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "c6U7fEGGhKjrJqEJB+yZlM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 616 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3de74abd-a830-4ee0-8d46-7c9e7f3684fe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "76uF+tUFlFVZEfbEMA8yt8" + }, + { + "__type__": "cc.Node", + "_name": "homeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 609 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 623 + }, + { + "__id__": 624 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 434.98, + 677.475, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8cioaWxzdBwaC5lZHRaEyQ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 622 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "dcilB1mHNPwr/5MFogdRYz" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 622 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 625 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 622 + }, + "_id": "e6+nQbfBJDk5i7aunx3eFh" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "returnHome", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 609 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 627 + }, + { + "__id__": 628 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -289.197, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "faTUOwCO9I+5u+/Z51XIk/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 626 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d7f6bfb4-ca3e-4653-99d9-c8b25fe7d3a7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "eadyjLe7FKGrRakAvOOXeg" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 626 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 629 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 626 + }, + "_id": "bbSZLwLOdIJJ624BuB24QD" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "againLevel", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "return", + "_objFlags": 0, + "_parent": { + "__id__": 609 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 631 + }, + { + "__id__": 632 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -479.505, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b52KfgXSlK0KbuC5A1/vgi" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 630 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39786f04-d554-4943-b731-277ce4e7f66d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "29YsJCokNOa5bgqj2b7tbR" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 630 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 633 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 630 + }, + "_id": "46P35ucclP8p9BnaDyBDpD" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "returnHome", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "result_title4", + "_objFlags": 0, + "_parent": { + "__id__": 609 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 635 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 363, + "height": 57 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 541.599, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f7ECEqCYNDCp/1T+t9UKiw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 634 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d87325df-9475-4450-a687-6d334e15ba83" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "6cYm1H7vxAEru6BWhzSmhp" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 371 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": -71.74899999999998, + "_bottom": 71.74899999999998, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "605KjYDHBKh4OcuePrm0Lc" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 638 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 283, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 28.832, + 599.282, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "97eeqljdxBDKchc5TbnliC" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 637 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b0728043-e01f-4577-84e4-a11d3184b397" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "36NWgzaQdHZLrLZm+NTgOV" + }, + { + "__type__": "cc.Node", + "_name": "result_Label1", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 640 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 766, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.545, + 399.123, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "67DUxqLzZObbkIz1Q8PdJV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 639 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3123ef6d-9c79-4e02-b5bb-4f935e968521" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "e5bPpProxJkYC/PiffFQLX" + }, + { + "__type__": "cc.Node", + "_name": "time_show", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 642 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 211, + "height": 219 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 155.693, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cacJ6zMpNPjbyPCNHma8So" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 641 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ba34e77f-9256-4e6a-af3c-777316c1d21e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "03l5uQgphAGqh7i+yxSZOv" + }, + { + "__type__": "cc.Node", + "_name": "label", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 644 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 99, + "g": 39, + "b": 39, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 600, + "height": 63 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.984, + -137.407, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c9lUuzVLBAvJ/GBnN5HM7s" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 643 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "别放弃,马上就能过关了!", + "_N$string": "别放弃,马上就能过关了!", + "_fontSize": 50, + "_lineHeight": 50, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "6bsRG+x2NGnqXS24STC+I7" + }, + { + "__type__": "cc.Node", + "_name": "time_hide", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [ + { + "__id__": 646 + }, + { + "__id__": 648 + } + ], + "_active": true, + "_components": [ + { + "__id__": 650 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 516 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 53.799, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "dc6wHi28ZOm5UrLsVCBikC" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 645 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 647 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6cw/JpIRhA1YsayNKMce6G" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 646 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "7ahQyFmXFKWp4/1Yt8wkG3" + }, + { + "__type__": "cc.Node", + "_name": "nz2", + "_objFlags": 0, + "_parent": { + "__id__": 645 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 649 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 312, + "height": 292 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a4cz4q5tpEaZZ1qVETUVQ/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 648 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ae011ea3-5bb9-4cee-9865-a2bfb66abc8e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "9fnypsjelP/oThYk5gp3an" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 645 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59873a8f-b079-4344-a77a-a72c76753cb0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "c21LAxlI1HkqjgKiCJrcKK" + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [ + { + "__id__": 652 + }, + { + "__id__": 654 + }, + { + "__id__": 656 + }, + { + "__id__": 658 + }, + { + "__id__": 660 + }, + { + "__id__": 662 + } + ], + "_active": false, + "_components": [ + { + "__id__": 664 + }, + { + "__id__": 665 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -321.372, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5digBgV6FFa55bp8ApLXqu" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 651 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 653 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131, + "height": 68 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 35.05, + 20.257, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "11H6SLbSlC0oB0yMSH/jcg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 652 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c44fbe15-765f-49ff-99d0-3a34ef8511b3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "dfMygKIZJCyqwZ19THeJZl" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 651 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 655 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -82.65, + -4.529, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7bYfwtfIJNWbWWGktH+e/v" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 654 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3558560-39d0-4650-9ac4-a958b320190a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "cdmFuhHSJHoJdE4QRtxEEZ" + }, + { + "__type__": "cc.Node", + "_name": "number2", + "_objFlags": 0, + "_parent": { + "__id__": 651 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 657 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 6.427, + -33.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "79SlmrvkZFjK0/mdyM7fVA" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 656 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6bf035fb-d4ed-4a70-a097-3d2625f9d102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "b0UTtKkMVNsaA65kd/xEZy" + }, + { + "__type__": "cc.Node", + "_name": "number1", + "_objFlags": 0, + "_parent": { + "__id__": 651 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 659 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 6.427, + -33.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e2ORw/SR5CEYKp0t0HNNP/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 658 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3e91ec35-c8d6-46bc-bfb4-0bdf81fbadd7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "bcZBsHdHFFF64YQXXcR1bj" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 651 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 661 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 33.97, + -32.669, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "06+Wpwd8BOrrrW/YhOD8Jz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 660 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9ab22046-1a97-4305-9f1a-5e10329c4717" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "820Hbq2wNDcY8e1cRBQEJx" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 651 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 663 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 24, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 66.041, + -34.276, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "62FyCs3fpL/Zkwu33F8o7H" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 662 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6bf035fb-d4ed-4a70-a097-3d2625f9d102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "7bkKLYfI1H2Ifag6F1MTJz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 651 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "826f5bb2-a3cb-48ed-b657-ef6b82964521" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "06voVfGZxIUamrrr/rSDwk" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 651 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 666 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 651 + }, + "_id": "f26wyaXk1ODqKTicGneesK" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "", + "handler": "", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "buyBtn", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [ + { + "__id__": 668 + }, + { + "__id__": 670 + }, + { + "__id__": 677 + }, + { + "__id__": 686 + }, + { + "__id__": 695 + }, + { + "__id__": 697 + } + ], + "_active": true, + "_components": [ + { + "__id__": 698 + }, + { + "__id__": 699 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -6.767, + -355.427, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f3vGOwuVlH8rNh3ga21IiB" + }, + { + "__type__": "cc.Node", + "_name": "btn_zi_xhongshi", + "_objFlags": 0, + "_parent": { + "__id__": 667 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 669 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 255, + "height": 70 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -151.004, + 8.851, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d4Tptd+8ZAy6Gc43se7la0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 668 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9a0bcbd1-387d-41a4-a251-9e8614b8deab" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "e8HcBtUF9CwYW8PO1XsEWP" + }, + { + "__type__": "cc.Node", + "_name": "coin1", + "_objFlags": 0, + "_parent": { + "__id__": 667 + }, + "_children": [ + { + "__id__": 671 + }, + { + "__id__": 673 + }, + { + "__id__": 675 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 83.536, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "44vQhnjcpFGbUVYviBzL5J" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 670 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 672 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 86.821, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "33aIdD7apFq7q6MzKZNcNG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 671 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02083668-1c42-4283-98ed-8b05cb28cf97" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "45LW4SeYxNErDnft+VLFu2" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 670 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 674 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 122.821, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "222YEzKI1Pabx3QMAUGBKF" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 673 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "26RZswshVCJ4k5qLjiZPZT" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 670 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 676 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 159.821, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "01A/zmn4dLEYqJt6xTIJUE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 675 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "be1AQfIxpL+qzmi3a4veo+" + }, + { + "__type__": "cc.Node", + "_name": "coin2", + "_objFlags": 0, + "_parent": { + "__id__": 667 + }, + "_children": [ + { + "__id__": 678 + }, + { + "__id__": 680 + }, + { + "__id__": 682 + }, + { + "__id__": 684 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 89.544, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "04/AY/hQRBIp270nF8kX7Z" + }, + { + "__type__": "cc.Node", + "_name": "coins1", + "_objFlags": 0, + "_parent": { + "__id__": 677 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 679 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60.655, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "19cl2pdpFN77uyGlApGyaW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 678 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "1dwbVTP2JB6qT9kHmER1cD" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 677 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 681 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 89.655, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "71MxkNreVBE5uUh4hFx4UQ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 680 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "3b5COkKEFFVaxdAv5g4vo9" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 677 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 683 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 125.655, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "34imDPp/FLEIAYjrWtv1ob" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 682 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "f1MW2v0+FDEaeSIm7G1K5L" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 677 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 685 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 162.655, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cfwQ+EwqtLtLIv8hNTFlg5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 684 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "22dp2VFXtPcrWbNUkECMst" + }, + { + "__type__": "cc.Node", + "_name": "coin3", + "_objFlags": 0, + "_parent": { + "__id__": 667 + }, + "_children": [ + { + "__id__": 687 + }, + { + "__id__": 689 + }, + { + "__id__": 691 + }, + { + "__id__": 693 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 285.285, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d8CZbzYdlK2oRflAbWkM5v" + }, + { + "__type__": "cc.Node", + "_name": "coins1", + "_objFlags": 0, + "_parent": { + "__id__": 686 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 688 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -133.5, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "59b5bid+xIzJ4NXd2xobrK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 687 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "b3o+3VUDBL0JLAlvl6tThC" + }, + { + "__type__": "cc.Node", + "_name": "coins5", + "_objFlags": 0, + "_parent": { + "__id__": 686 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 690 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -100.5, + 7.332, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a71j31HwhG/K6QbonLVfWW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 689 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02083668-1c42-4283-98ed-8b05cb28cf97" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "64NoBJTjZIA7QDjjy1xJN9" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 686 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 692 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -65.5, + 7.376, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "058nMUUihCzqfFbO9fYwLU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 691 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "f7aYRcvHdMaITlR+WLvmTl" + }, + { + "__type__": "cc.Node", + "_name": "coins0", + "_objFlags": 0, + "_parent": { + "__id__": 686 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 694 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -28.5, + 6.726, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9bW5//KGFH1rE+FwzGzQ20" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 693 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "93n6YA7g1L9psiTLCaN33B" + }, + { + "__type__": "cc.Node", + "_name": "coins", + "_objFlags": 0, + "_parent": { + "__id__": 667 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 696 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 79.067, + 8.835, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fdxX8W/dZCOaxAY72CqrB+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 695 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b94c323b-3d26-4684-ba64-0f00a13438d2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "53fBjv0PNFSpAVZ+WBGlRD" + }, + { + "__type__": "cc.Node", + "_name": "coinNun", + "_objFlags": 0, + "_parent": { + "__id__": 667 + }, + "_children": [], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 178.07, + 9.623, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "13HispF6pMRpRSt0N2L7Zg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 667 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1fd745f8-009d-4a16-aa79-68e518664e6e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "b4eLtFgpBP2Io/wGXsk2sz" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 667 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 700 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 667 + }, + "_id": "d9X6reFQ5ElIF/oEEoTwvB" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "reviewLevel", + "customEventData": "time" + }, + { + "__type__": "cc.Node", + "_name": "homeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 702 + }, + { + "__id__": 703 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.218, + -557.134, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "52m0+B99tBDI20UvzW7VQW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 701 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d33ab7fd-d515-4c41-85bb-e923cdcd2ef2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "88h3MuUeNHn5dANPrtHkut" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 701 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 704 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 701 + }, + "_id": "48mz2WOYxOmpmmNFGfPFpu" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "homeBtn", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "ConfirmBox", + "_objFlags": 0, + "_parent": { + "__id__": 370 + }, + "_children": [ + { + "__id__": 706 + }, + { + "__id__": 710 + }, + { + "__id__": 713 + }, + { + "__id__": 716 + }, + { + "__id__": 719 + } + ], + "_active": false, + "_components": [ + { + "__id__": 727 + } + ], + "_prefab": { + "__id__": 728 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d03LoOwNBLf5R+fpApkvGq" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 705 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 707 + }, + { + "__id__": 708 + } + ], + "_prefab": { + "__id__": 709 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ffi/gsWHVE1YyqXES33m6B" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 706 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "8cRMiif/hNN6iaAbdMtd8R" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 706 + }, + "_enabled": true, + "_id": "0cWfLxbfNFBZzGrLwHUf5+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 705 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 705 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 711 + } + ], + "_prefab": { + "__id__": 712 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2avOBz+mtGb6tL1Eg7MGNy" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 710 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "71f0494c-f638-4d7a-a826-a9407bf2b27c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "7fxodCmFxI25tv/Q3gonMf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 705 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "eeHwB6Bq5CSbRJy0kYMgo0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_parent": { + "__id__": 705 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 714 + } + ], + "_prefab": { + "__id__": 715 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 330.904, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d6kwU3WEdEsrswJy4c6EIR" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 713 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "复活购买", + "_N$string": "复活购买", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "4030ygK0pPmq6IRckdgSAM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 705 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 705 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 717 + } + ], + "_prefab": { + "__id__": 718 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 195.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 89.865, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "090Nw5Cm9FSYsQ2LBMwJE3" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 716 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "网络异常\n请检查网络连接后\n再次领取", + "_N$string": "网络异常\n请检查网络连接后\n再次领取", + "_fontSize": 40, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "956tKbRpJIsI8EEgoDMLFr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 705 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "9149ix6q1AZ4VyIjmSGbdM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 705 + }, + "_children": [ + { + "__id__": 720 + } + ], + "_active": true, + "_components": [ + { + "__id__": 723 + }, + { + "__id__": 724 + } + ], + "_prefab": { + "__id__": 726 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.21, + -77.027, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "74z/HZBGpHUqjgRfwGluZG" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 719 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 721 + } + ], + "_prefab": { + "__id__": 722 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 182.23, + "height": 100.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 13.174, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "92FO6nOHVL6LZfCzCt48oI" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 720 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "领 取", + "_N$string": "领 取", + "_fontSize": 80, + "_lineHeight": 80, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "b0c3VmNTtPOo7I0h6ClxF0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 705 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "1f0NO1uLNIxrx1dYb9rOaL", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 719 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d9be6eea-569b-46da-bb80-0d9c8b8f5263" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "c1ytcQTtxK8LYcPR6vAyNA" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 719 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 725 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 719 + }, + "_id": "acZHZ834VK7KnYnoNpfRpv" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 369 + }, + "component": "", + "_componentId": "cf225n91VpHwZ91/vYIoSJh", + "handler": "againGet", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 705 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "58sKElg7lE9I935Fpq7n8Y", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 705 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "28dA6g5klD64jFnL+Csfh0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 705 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tishik", + "_objFlags": 0, + "_parent": { + "__id__": 369 + }, + "_children": [ + { + "__id__": 730 + }, + { + "__id__": 733 + } + ], + "_active": true, + "_components": [ + { + "__id__": 736 + } + ], + "_prefab": { + "__id__": 737 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 342, + "height": 85 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 310.519, + 22.298, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b7wzsI5XNEQqkrXVUCMSWi" + }, + { + "__type__": "cc.Node", + "_name": "jixuc", + "_objFlags": 0, + "_parent": { + "__id__": 729 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 731 + } + ], + "_prefab": { + "__id__": 732 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 161, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -56.333, + 6.106, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "28mkyq65NLhKXGjFVU9ypY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 730 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9dc97e7c-1f7b-4fde-b853-4c47f06ec97b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "fdO91OyFxFSrRrauCIunFS" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "64DD5RDkBN75bB4duvL53v", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mmm", + "_objFlags": 0, + "_parent": { + "__id__": 729 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 734 + } + ], + "_prefab": { + "__id__": 735 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 41, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 129.918, + 6.412, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cbRkTyZLVKyrc0YF7q1IZj" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 733 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9659ed22-c368-43b3-92fc-8ece78340ec9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "59f3z9A8tPKIH4BOdYVWj8" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "c45fRHd2JDfZgrBshdnCH/", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 729 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "42a31065-5a4c-46e3-b410-5d129c84b9fa" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "c1yhF5L8FJWIFspY/FSQea" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "d6ZfDszpBOZpyflkLd6eU0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "an", + "_objFlags": 0, + "_parent": { + "__id__": 369 + }, + "_children": [ + { + "__id__": 739 + } + ], + "_active": true, + "_components": [ + { + "__id__": 747 + }, + { + "__id__": 748 + } + ], + "_prefab": { + "__id__": 750 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 290, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 312.166, + -79.926, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "baBFM74f1Mxa3lOBLa1rZy" + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 738 + }, + "_children": [ + { + "__id__": 740 + }, + { + "__id__": 743 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 746 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -13.309, + -1.295, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "17gLRUjeNOZZopPj99mywZ" + }, + { + "__type__": "cc.Node", + "_name": "cost_6", + "_objFlags": 0, + "_parent": { + "__id__": 739 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 741 + } + ], + "_prefab": { + "__id__": 742 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.47, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b1KOCieM1KjoDrjJHx77+T" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 740 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "30b3ef49-bd7e-47a6-84b2-da05678348a6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "1aRtEz+WFK04sGfVnG/pOX" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "abeeDWEflNdLwT5AKxCFrf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_10", + "_objFlags": 0, + "_parent": { + "__id__": 739 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 744 + } + ], + "_prefab": { + "__id__": 745 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 46.741, + -0.409, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3bTxMLZD1JJrT3ScmmJsmS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 743 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "646c3b71-e143-4d0f-94e6-534c77123f6d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "a83rm6vppE157dpKJAPfOr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "83RMFg8cpGLLvANgOpumPy", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "6cTlbBBMdNUpUN5Hh/gkxM", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 738 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1193af14-f157-46a6-9504-d24b03f50073" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "31PGOnkC5PI5dYLEP9v52Y" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 738 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 749 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 369 + }, + "_id": "14jmMAzzNJS5edpMSspP0E" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 369 + }, + "component": "", + "_componentId": "cf225n91VpHwZ91/vYIoSJh", + "handler": "buyProduct", + "customEventData": "reborn_Gift" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "58WmXd5RlLH5Nc03zXmnFE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 369 + }, + "_children": [ + { + "__id__": 752 + }, + { + "__id__": 755 + }, + { + "__id__": 758 + }, + { + "__id__": 761 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 764 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 63 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -299.256, + 35.207, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2365EF/qdL2rXGZOQGkWqL" + }, + { + "__type__": "cc.Node", + "_name": "scoin_1", + "_objFlags": 0, + "_parent": { + "__id__": 751 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 753 + } + ], + "_prefab": { + "__id__": 754 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -96.02, + 8.65, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "bdMxJvSX9AQ4pICe16h3qk" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 752 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bccf63ba-b29f-4020-b862-3480eb2cfcdf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "006zM0rmBMWqbqaK+FuYjL" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "18QamiYY5H9Iah3EZKln+C", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "scoin_0", + "_objFlags": 0, + "_parent": { + "__id__": 751 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 756 + } + ], + "_prefab": { + "__id__": 757 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 51 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -58.968, + 7.353, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4fk/jMMbBDmZXvo1tMOUnq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 755 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7cdc23d-abb6-4a7e-a9a7-6c1a46eb5294" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "9bZsKhBr1Gqa4YqigpYKxy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "7a5YQMp55FF5ScYyhAXl4g", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "scoin_0", + "_objFlags": 0, + "_parent": { + "__id__": 751 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 759 + } + ], + "_prefab": { + "__id__": 760 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 51 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -12.475, + 5.514, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "bcVGEzbJ5P969LHNKtYZzn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 758 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7cdc23d-abb6-4a7e-a9a7-6c1a46eb5294" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "fcyx+J9wZCto16e5JUZfxQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "00aGM7VI5J44yoHw7eqwEO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "scoin_0", + "_objFlags": 0, + "_parent": { + "__id__": 751 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 762 + } + ], + "_prefab": { + "__id__": 763 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 51 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 34.788, + 6.04, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "82RPRmJ45CqYu7flY3hTE7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 761 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7cdc23d-abb6-4a7e-a9a7-6c1a46eb5294" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "68J99W2LtItI0p7Y0M4I5Z" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "72He1auiRHioDyiDL9svyb", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "26RVbpuElOMIPA5xSDokYK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 369 + }, + "_children": [ + { + "__id__": 766 + }, + { + "__id__": 769 + }, + { + "__id__": 772 + }, + { + "__id__": 775 + }, + { + "__id__": 778 + }, + { + "__id__": 781 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 784 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "39TAkEVjtBkLH6etTc5SgC" + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 765 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 767 + } + ], + "_prefab": { + "__id__": 768 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -50.818, + -23.375, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d4oZD5NbVFX7jXXof84+xN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 766 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4f3aa5b-740d-4a59-bf36-0d1fc85acc0a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "cbfzjgKjlMc6dGIokrNRkb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "9cZMxQxShDKoEigo1kjqaV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mul1", + "_objFlags": 0, + "_parent": { + "__id__": 765 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 770 + } + ], + "_prefab": { + "__id__": 771 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -20.267, + -22.729, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e5lqvxskBDxYGkA7/z9dZS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 769 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "13ddd564-96a4-4f41-ac93-176a65aafaa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "96NaEYSd1DxaQkOz5iVF3C" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "71hQB2sgNOQq2SmQTO0sT8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 765 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 773 + } + ], + "_prefab": { + "__id__": 774 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -142.023, + -115.199, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "89dwUTLoFKabrrpJdAo7B+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 772 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4f3aa5b-740d-4a59-bf36-0d1fc85acc0a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "2a0VTfqAZNa4MhDaaKGxml" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "f0cewEru1FELVJPaogUyfj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mul1", + "_objFlags": 0, + "_parent": { + "__id__": 765 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 776 + } + ], + "_prefab": { + "__id__": 777 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.472, + -114.553, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "0ek9VsIyJCc583hvgZFavJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 775 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "13ddd564-96a4-4f41-ac93-176a65aafaa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "53Wxv4eU5AZadXCDULYKMr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "12+cXGMKFBjYcot0WgZ5Br", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 765 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 779 + } + ], + "_prefab": { + "__id__": 780 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 43.977, + -114.597, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "59AkH1mIJGNpX2k0YfJhqN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 778 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4f3aa5b-740d-4a59-bf36-0d1fc85acc0a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "d3iFDzGY9NHrf8B3U2OzHZ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "baU4WUxaVPkadUufaLr7/a", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mul1", + "_objFlags": 0, + "_parent": { + "__id__": 765 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 782 + } + ], + "_prefab": { + "__id__": 783 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 74.528, + -113.951, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a1E9Giyw1Fh6bZwiFFkeov" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 781 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "13ddd564-96a4-4f41-ac93-176a65aafaa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "307zRUqqFEM6Z+J0XlKGQG" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "c6M8Z2UZVDnpyenM16Xo8Z", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "51S/e8EFNKV4e8+a1Ecpmk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "miao", + "_objFlags": 0, + "_parent": { + "__id__": 369 + }, + "_children": [ + { + "__id__": 786 + }, + { + "__id__": 789 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 792 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 362.266, + 34.728, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "fbHDI2HYlNa5Skq8VamSZ3" + }, + { + "__type__": "cc.Node", + "_name": "month_2", + "_objFlags": 0, + "_parent": { + "__id__": 785 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 787 + } + ], + "_prefab": { + "__id__": 788 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 38, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -2.864, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "498jFccpZLlZVvAnOo5ugv" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 786 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "82d291e7-9a0a-4d7e-8161-a59ef2f5b5c3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "d3JERtD09B25+T2tUx+ImF" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "05VbXBTZNIXbU+kMJ8Ue6p", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "month_0", + "_objFlags": 0, + "_parent": { + "__id__": 785 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 790 + } + ], + "_prefab": { + "__id__": 791 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 40.409, + -4.092, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "71o4J8IVlL/6NHBC1W14Rg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 789 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a5271624-c7f9-44c1-84ac-d09d343073fa" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "97Wa1UO19IEqigs6gahAdr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "7aPLVf9U9H0Ly7V32y9Tfk", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "02Hu9N8oBCj6ICkE7yzq24", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 369 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c988477-a457-479e-a318-5994fdb5b2c0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "c9QApZbSBGW57YYTTI2T6V" + }, + { + "__type__": "cf225n91VpHwZ91/vYIoSJh", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 369 + }, + "_enabled": true, + "btn_Touch": false, + "_id": "81dQXmYrVK3771lwjUo7gt" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 369 + }, + "asset": { + "__uuid__": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93" + }, + "fileId": "", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Ice", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 797 + } + ], + "_active": false, + "_components": [ + { + "__id__": 799 + }, + { + "__id__": 800 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1078, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eeu9rvmZFLoZTA4+LDTe7G" + }, + { + "__type__": "cc.Node", + "_name": "skeleton", + "_objFlags": 0, + "_parent": { + "__id__": 796 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 798 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1032.39, + "height": 157.47 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 861.782, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "25QdvpLWJKbo+bIBngpdf2" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 797 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "4d241226-0521-4c37-a93a-c356928efdab" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": true, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "dfIFrLSC9N+Zcv7TaINc93" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 796 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "67hO8VYpVATLuYMT9EA1b5" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 796 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 5, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 2340, + "_id": "bdTT+0Ec1B0YWuwVRoqaE2" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "dfOLca1KVCyLxvg197AIBc" + }, + { + "__type__": "cc.Node", + "_name": "NewMode", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 803 + }, + { + "__id__": 807 + } + ], + "_active": false, + "_components": [ + { + "__id__": 822 + }, + { + "__id__": 823 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5bygU22UFO9brKYQ+eNzC1" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 802 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 804 + }, + { + "__id__": 805 + }, + { + "__id__": 806 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "73s6E0NENDxq+nS9Mcl6al" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 803 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "deZtO5/4JJ56i9bQ/uSxxb" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 803 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "8997CoeSpJTIl6z/UyzNQz" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 803 + }, + "_enabled": true, + "_id": "1e62ukhsJObKLFucCNzfwm" + }, + { + "__type__": "cc.Node", + "_name": "newmode", + "_objFlags": 0, + "_parent": { + "__id__": 802 + }, + "_children": [ + { + "__id__": 808 + }, + { + "__id__": 810 + }, + { + "__id__": 812 + }, + { + "__id__": 814 + }, + { + "__id__": 820 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6a6LMOtl1EJJdQkHf9vl9+" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 807 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 809 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 985, + "height": 1466 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "81i851yWVOzreUko6kruZk" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 808 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5e42985a-fee5-4f47-ba31-1f4a102e2ec1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "e7em/n3lNMNqJUWSWos6gq" + }, + { + "__type__": "cc.Node", + "_name": "light", + "_objFlags": 0, + "_parent": { + "__id__": 807 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 811 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 712, + "height": 458 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -13.919, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "208HL0wWVJSLpy2REFhZqU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 810 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "debddcbf-4939-4d99-a2ba-55ac643ab33b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "8dqZhDlStMy4RTHNhqo3+C" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 807 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 813 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 697, + "height": 652 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 159.23, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "18vgZ3SNpOfZa2h6dfMAxC" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 812 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "3d0rwiSGtI0ptThxJFeYic" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 807 + }, + "_children": [ + { + "__id__": 815 + } + ], + "_active": true, + "_components": [ + { + "__id__": 817 + }, + { + "__id__": 818 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 159 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -393.677, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "dfWlPEN7RFR6XchLehCcdE" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 814 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 816 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 246, + "height": 86 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 7.498, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "06b2U6eFJL5Y7bbN9jO9On" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 815 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "78b4f3cf-0c44-402c-a11f-f588a7f58329" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "f7xRbaSt1BTKDcE4D0TkLg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 814 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "630d0587-e533-48fb-b313-b55e6905db06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "cfxfUum8xLkY+faArDelXD" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 814 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 819 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 814 + }, + "_id": "2bhrCpcRxImqyWzBaIVVCd" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 802 + }, + "component": "", + "_componentId": "7fe14dRFQZKSKKAoEn4S7OU", + "handler": "clickBtn", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 807 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 821 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 687, + "height": 149 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 629.244, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e6WpUCjLxEbImooEZd+XYN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 820 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "865c8e71-f691-4836-b4dd-2cb1dcba26fa" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "203UcOI6FKCrKMEV2mfGoF" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 802 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "29gWCrW6hHsbRzW00b/ncv" + }, + { + "__type__": "7fe14dRFQZKSKKAoEn4S7OU", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 802 + }, + "_enabled": true, + "label": null, + "text": "hello", + "_id": "52hOic8rJHMIE0B+I9nWAm" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "b80VajXPZEdqMc6WziD6ce" + }, + { + "__type__": "cc.Node", + "_name": "Pause", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 826 + }, + { + "__id__": 829 + }, + { + "__id__": 880 + }, + { + "__id__": 921 + } + ], + "_active": false, + "_components": [ + { + "__id__": 954 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a5eYOp3p9Ns5lZinS/Z4zU" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 825 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 827 + }, + { + "__id__": 828 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2600 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "01oaLmnH5Je6Enuc/aH1rE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 826 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "3b9iOUfdRPDZX1evwPIrSo" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 826 + }, + "_enabled": true, + "_id": "14MNfl+ahOhqeYjELowhPw" + }, + { + "__type__": "cc.Node", + "_name": "pause", + "_objFlags": 0, + "_parent": { + "__id__": 825 + }, + "_children": [ + { + "__id__": 830 + }, + { + "__id__": 832 + }, + { + "__id__": 836 + }, + { + "__id__": 840 + }, + { + "__id__": 847 + }, + { + "__id__": 849 + }, + { + "__id__": 853 + }, + { + "__id__": 855 + }, + { + "__id__": 857 + }, + { + "__id__": 859 + }, + { + "__id__": 866 + }, + { + "__id__": 873 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "00eWq87UdIVqJn49blGmya" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 831 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "60H0CproNJ46HXnotjLqTJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 830 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bec937c0-0152-4a64-8a66-03296ec98509" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "29gY1fozZFcqQxHl2cxMFR" + }, + { + "__type__": "cc.Node", + "_name": "exit", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 833 + }, + { + "__id__": 834 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -350, + -557.849, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4c8N0oB/VEYZLs10f8pGc2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 832 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1d5174db-1f3f-4bc2-ba08-81c80f25f376" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "a6CksW67JCw7jLjA+5EPBf" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 832 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 835 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 832 + }, + "_id": "97kj3CvWxPG4M35kF1JIsf" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickExit", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "trya", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 837 + }, + { + "__id__": 838 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 350, + -557.849, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "caUo1LXdpMe4+mzNpFsrnq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 836 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "822b5014-4bfe-4c85-aecf-d5ff5cfde207" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "01Urx9iaVJlZi/XC+YqEnd" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 836 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 839 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 836 + }, + "_id": "60wEETFzRPtLLU2Qraip7E" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickRestart", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [ + { + "__id__": 841 + } + ], + "_active": true, + "_components": [ + { + "__id__": 843 + }, + { + "__id__": 844 + }, + { + "__id__": 846 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 476, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -557.849, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "66j2OHeUtJ4r4Y1F/TnHWR" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 840 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 842 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 319, + "height": 81 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 6, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "70voybOqFC5aypT/qm/yw5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 841 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "19gnoMscVD5YIOY9sR/OT/" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 840 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0627b7be-af35-4562-8e32-09afd533d061" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "32EL80HLlCp5Ss42oN69lY" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 840 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 845 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 840 + }, + "_id": "24dgt8oDxESJcfVjgdLoZY" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "closePause", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 840 + }, + "_enabled": true, + "_id": "4bRL3qYrVAv5dRBgfVjrQC" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 848 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 654.219, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "45Wz+QNSNG6LVJb4xQlrTl" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 847 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1e7a4c08-5881-4666-9d03-226bb1eed118" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "fcg5iUxiBCPb/Y3VFpMMU3" + }, + { + "__type__": "cc.Node", + "_name": "closeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 850 + }, + { + "__id__": 851 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 432.072, + 578.989, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "241tBdTltJLpm4RYYPNJrR" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 849 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "52Ke3oe9hHz4i/FxJSE57R" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 849 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 852 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 849 + }, + "_id": "bc//MpLz5OY6QGyDZRN589" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "80998T1AYNNRZdRxsVvXR65", + "handler": "closePause", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "yinyue1", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 854 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 311, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -158.514, + 312.779, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "21hANrqgBP56ndpR0/gqhr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 853 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c87c3ebe-d12e-4a23-bb90-06fff1dc75d4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "99ikWkUJRJ35+kyf5TQ59N" + }, + { + "__type__": "cc.Node", + "_name": "zhendong1", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 856 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 314, + "height": 117 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -162.477, + -174.365, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6090tmPfpF9bW524kuiYQW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 855 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "87fa17a4-5583-43f0-b8b1-8179599ab5a8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "3fUGtazyRLwpma9EnZx+dI" + }, + { + "__type__": "cc.Node", + "_name": "yinxiao", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 858 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 311, + "height": 116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -166.736, + 64.842, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cb/lyZq9BBbZaq95qAg3JR" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 857 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0c9d12f2-60f8-4cb4-8d5e-6499e8cedd7e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "7bR0zokoBMxrpZqjgqJ4nA" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [ + { + "__id__": 860 + }, + { + "__id__": 862 + } + ], + "_active": true, + "_components": [ + { + "__id__": 864 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + 299.764, + 0, + 0, + 0, + 0, + 1, + 1.5, + 1.5, + 1.5 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "01fgYb7btJNoGKdYNwo9DR" + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 859 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 861 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "02sWmy9YdMqZ6uvcggAEuK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 860 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02f5073d-b0ce-4c13-bc77-3cf9d93cee71" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "8dGAY/rApNmqL69gwZpRuN" + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 859 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 863 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "26wmp23gNKt7kfBa/kLpiK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 862 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "40b263ac-9213-429d-b358-730e59b237fc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "78ZbvRfhFJrYZu1b94A3QQ" + }, + { + "__type__": "cc.Toggle", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 859 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_N$isChecked": false, + "toggleGroup": null, + "checkMark": { + "__id__": 863 + }, + "checkEvents": [ + { + "__id__": 865 + } + ], + "_id": "4bv6Txm/tOTpDb9nfNgn+c" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickMusic", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [ + { + "__id__": 867 + }, + { + "__id__": 869 + } + ], + "_active": true, + "_components": [ + { + "__id__": 871 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + 56.233, + 0, + 0, + 0, + 0, + 1, + 1.5, + 1.5, + 1.5 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "79combUylCYrQ/m6CUf26d" + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 866 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 868 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "32Ej0S95ZMRqT01xM5yycc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 867 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02f5073d-b0ce-4c13-bc77-3cf9d93cee71" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "ffnzwtUC1G3onoSQ+WFGCh" + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 866 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 870 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "16lanA58NIVZZhlHXi3X5L" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 869 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "40b263ac-9213-429d-b358-730e59b237fc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "f4+PzMYuBE94RZ4Yaj4929" + }, + { + "__type__": "cc.Toggle", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 866 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_N$isChecked": false, + "toggleGroup": null, + "checkMark": { + "__id__": 870 + }, + "checkEvents": [ + { + "__id__": 872 + } + ], + "_id": "175VURfcRMZ4U0/08yWOOS" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickEffect", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 829 + }, + "_children": [ + { + "__id__": 874 + }, + { + "__id__": 876 + } + ], + "_active": true, + "_components": [ + { + "__id__": 878 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + -182.765, + 0, + 0, + 0, + 0, + 1, + 1.5, + 1.5, + 1.5 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "51PlO/1DNEHZrkSVEsUG9n" + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 873 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 875 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "98EPaRCudDtb29wTMQdjn9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 874 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02f5073d-b0ce-4c13-bc77-3cf9d93cee71" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "fesF3zzatKQ7zPYjkTsA+0" + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 873 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 877 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4fbXTegNRBHrlTdtP3Y6WP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 876 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "40b263ac-9213-429d-b358-730e59b237fc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "92dl+zrpVKha2H11JiyGVg" + }, + { + "__type__": "cc.Toggle", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 873 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_N$isChecked": false, + "toggleGroup": null, + "checkMark": { + "__id__": 877 + }, + "checkEvents": [ + { + "__id__": 879 + } + ], + "_id": "268X0b2xRIKIqgyz4MaBdG" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickVibrate", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "pauseTs", + "_objFlags": 0, + "_parent": { + "__id__": 825 + }, + "_children": [ + { + "__id__": 881 + }, + { + "__id__": 884 + }, + { + "__id__": 889 + } + ], + "_active": false, + "_components": [ + { + "__id__": 920 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -39.26000000000004, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5eSw1WQUhLSYn+9CItakmm" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 880 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 882 + }, + { + "__id__": 883 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b1VBC3/85LbZxi/WyPTiSb" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 881 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "39I57JgAVPE5w7xCGWU4Jn" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 881 + }, + "_enabled": true, + "_id": "c8PKNIvwRO3rt0Tp1BxG0m" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 880 + }, + "_children": [ + { + "__id__": 885 + } + ], + "_active": true, + "_components": [ + { + "__id__": 888 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 38.815, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "de80hJngZLMYcJgf1yMiZ+" + }, + { + "__type__": "cc.Node", + "_name": "closet", + "_objFlags": 0, + "_parent": { + "__id__": 884 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 886 + }, + { + "__id__": 887 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 431.951, + 586.501, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9d5FFA3WtLzr9wBUOUjLnM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 885 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "68psVHtgZP+6OA4MmBeEnc" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 885 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 885 + }, + "_id": "84YaPQK8dO/q/lnhNJcwW2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 884 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bf006254-d63b-49e7-9bb2-26cd7328e3e8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "30Ohf7peVOMpDN3xJWODxo" + }, + { + "__type__": "cc.Node", + "_name": "Health", + "_objFlags": 0, + "_parent": { + "__id__": 880 + }, + "_children": [ + { + "__id__": 890 + }, + { + "__id__": 892 + }, + { + "__id__": 896 + }, + { + "__id__": 902 + }, + { + "__id__": 906 + }, + { + "__id__": 910 + }, + { + "__id__": 914 + }, + { + "__id__": 918 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.935, + -54.722, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "59PgO9LdFBTL2BSo6Gw1nv" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 889 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 891 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 291, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.137, + 752.897, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7cxwcevftNsoh9IDUzpoXx" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 890 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "255341b2-a231-4265-b923-8e7c5e0fef83" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "e2izCHrqlDL71nnMva369o" + }, + { + "__type__": "cc.Node", + "_name": "yuandi", + "_objFlags": 0, + "_parent": { + "__id__": 889 + }, + "_children": [ + { + "__id__": 893 + } + ], + "_active": true, + "_components": [ + { + "__id__": 895 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 516 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 182.291, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "39LKRlRWtKn6DR1gHrzVpe" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 892 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 894 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "04PiTBfYxDgYNEQqrR1Kgo" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 893 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "7cgZ1r1CtJe6IE8pJSRMxm" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 892 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59873a8f-b079-4344-a77a-a72c76753cb0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "a7Gy0NactFho/COf9AMNbl" + }, + { + "__type__": "cc.Node", + "_name": "boom_show", + "_objFlags": 0, + "_parent": { + "__id__": 889 + }, + "_children": [ + { + "__id__": 897 + }, + { + "__id__": 899 + } + ], + "_active": true, + "_components": [ + { + "__id__": 901 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 364, + "height": 276 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 176.394, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "98KUvMVa5PgLNjBFOkkmOj" + }, + { + "__type__": "cc.Node", + "_name": "hp_-", + "_objFlags": 0, + "_parent": { + "__id__": 896 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 898 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 29 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 67.39, + -80.691, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5bK5TzgY9INYc2Ptf0xBER" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 897 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "44cbc1be-fe4c-40df-8e52-3c2f768d61ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "b7SkB/OFJEGa6mnQRRYk05" + }, + { + "__type__": "cc.Node", + "_name": "hp_1", + "_objFlags": 0, + "_parent": { + "__id__": 896 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 900 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 97, + "height": 108 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 126.926, + -81.045, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "de5HNH27pMHofPWByYBd7k" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 899 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9026aa5a-1be4-4f61-8d50-e44e1df4c071" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "2b2Pb/0XpGh42vSBVzykR4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 896 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3de74abd-a830-4ee0-8d46-7c9e7f3684fe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "db5L17JJlPLLv81o3kEVOE" + }, + { + "__type__": "cc.Node", + "_name": "homeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 889 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 903 + }, + { + "__id__": 904 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 434.98, + 677.475, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a0OU6rMd5KAaeeuPoYyArW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 902 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "f4ev3G9YBGm4FVoHQyg8XM" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 902 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 905 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 902 + }, + "_id": "8cOgt0BzNKh6DAMeApvmL1" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "cancelExit", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 889 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 907 + }, + { + "__id__": 908 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -289.197, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "63G54aGY1JK4T0dwxlJD0c" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 906 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3bf0b81-eeab-4042-b247-e3576fd7932b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "99J5F38JNMx6cWthv6zXU6" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 906 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 909 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 906 + }, + "_id": "17JyD8igFDkqr7xwpdwqjn" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "cancelExit", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "return", + "_objFlags": 0, + "_parent": { + "__id__": 889 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 911 + }, + { + "__id__": 912 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -479.505, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b8HjN96IhLZYIuX3VDcqCD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 910 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e711bf3b-8b72-412a-b5c6-cc3de6fceae0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "5bMM38TF9Ev6GCGfaVi+2s" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 910 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 913 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 910 + }, + "_id": "0bvYtuHVZF0qYnTSZnyojv" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 15 + }, + "component": "", + "_componentId": "2234assp7RIvpDgrnqljp2R", + "handler": "returnHome", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "queding", + "_objFlags": 0, + "_parent": { + "__id__": 889 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 915 + }, + { + "__id__": 916 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -479.505, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "34QsNqofJE8baIFvUtQbwr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 914 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2fcdd5c3-1633-4fc7-bd96-ada7c7f34102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "17v1ghYaFAnZILYynJDLX2" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 914 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 917 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 914 + }, + "_id": "c3JfotjQ1BzoiA+3bn0sgx" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickRestart", + "customEventData": "hp" + }, + { + "__type__": "cc.Node", + "_name": "result_title4", + "_objFlags": 0, + "_parent": { + "__id__": 889 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 919 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 586, + "height": 57 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 541.599, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "17ZkkDb4tCVZCZ3hwwxFUq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 918 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "515197c3-1b04-4ef9-aa31-bfc11ffc3856" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "193Ty5uo5A+7+1MQqnmUb4" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 880 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 39.26000000000004, + "_bottom": -39.26000000000004, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "deTTX6UMpP6b/dqtb1N2ic" + }, + { + "__type__": "cc.Node", + "_name": "pauseWin", + "_objFlags": 0, + "_parent": { + "__id__": 825 + }, + "_children": [ + { + "__id__": 922 + }, + { + "__id__": 925 + }, + { + "__id__": 930 + } + ], + "_active": false, + "_components": [ + { + "__id__": 953 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -39.26000000000004, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "54FN9W10xBrJAVBi8znPcw" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 921 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 923 + }, + { + "__id__": 924 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3a96t2CnpPAK6K8SlSHwAJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 922 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "78subs4/pGV7rOMVpZzykI" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 922 + }, + "_enabled": true, + "_id": "45eH+qRRRMcLjzKe6jsbtt" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 921 + }, + "_children": [ + { + "__id__": 926 + } + ], + "_active": true, + "_components": [ + { + "__id__": 929 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 38.815, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2czPacHm5JV7askFiuxBVV" + }, + { + "__type__": "cc.Node", + "_name": "closet", + "_objFlags": 0, + "_parent": { + "__id__": 925 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 927 + }, + { + "__id__": 928 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 431.951, + 586.501, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "80gzh4zSNBv5tLgRQ50iT2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 926 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "afWdQ2385Bkb2ezG3lxuhJ" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 926 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 926 + }, + "_id": "c87ytPT75Fx5m6e3rY7e7z" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 925 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bf006254-d63b-49e7-9bb2-26cd7328e3e8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "5dtCy2SdJLioNJZJCQG3Na" + }, + { + "__type__": "cc.Node", + "_name": "Health", + "_objFlags": 0, + "_parent": { + "__id__": 921 + }, + "_children": [ + { + "__id__": 931 + }, + { + "__id__": 933 + }, + { + "__id__": 935 + }, + { + "__id__": 939 + }, + { + "__id__": 943 + }, + { + "__id__": 947 + }, + { + "__id__": 951 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.935, + -54.722, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3eGTL+2GhGQ61zVMEbemgE" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 930 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 932 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 383, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 9.166, + 755.285, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "afmJXg5xZLhqFyTMyVjocj" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 931 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "939a9879-5f49-4cd7-a70c-ef3d6064b965" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "5c9TIYJsBPSrMpAiypI/qC" + }, + { + "__type__": "cc.Node", + "_name": "hammer_action", + "_objFlags": 0, + "_parent": { + "__id__": 930 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 934 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 674, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -10.183, + 178.2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "bbaIyXIqpLiJoZ142IMcGm" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 933 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9726e260-c07d-42f7-b3d2-159788d155da" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "1ehLAONAhID6ea9nfEHu6Y" + }, + { + "__type__": "cc.Node", + "_name": "homeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 930 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 936 + }, + { + "__id__": 937 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 434.98, + 677.475, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "abzcF610JKNJ4QUnTpYXaq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 935 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "471DuHlD9EtL+N8NN26F3q" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 935 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 938 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 935 + }, + "_id": "746kVP++1JhJRiDVRyQrjy" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "cancelExit", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 930 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 940 + }, + { + "__id__": 941 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -289.197, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3cZJ2QOGNNOZDc4hJbF8ml" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 939 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3bf0b81-eeab-4042-b247-e3576fd7932b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "0c3gNuPOJNl5a8UvGlL4bT" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 939 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 942 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 939 + }, + "_id": "10DM1I1QxAa4sRV7RQ/IeS" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "cancelExit", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "return", + "_objFlags": 0, + "_parent": { + "__id__": 930 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 944 + }, + { + "__id__": 945 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -479.505, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ceYYe/xPVBILy26AP5A/Um" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 943 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e711bf3b-8b72-412a-b5c6-cc3de6fceae0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "5akgaOU5NHFo/PHACXqv7f" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 943 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 946 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 943 + }, + "_id": "26CtxP87lANKz+I8NQrg6I" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "returnHome", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "queding", + "_objFlags": 0, + "_parent": { + "__id__": 930 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 948 + }, + { + "__id__": 949 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -479.505, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2dVFera7JFP5Dule4ARIqJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 947 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2fcdd5c3-1633-4fc7-bd96-ada7c7f34102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "f9RUM2XwJICq9EVgqrlxQk" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 947 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 950 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 947 + }, + "_id": "64zjcOdD1HpbjNNMsdwm1C" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 825 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickRestart", + "customEventData": "hp" + }, + { + "__type__": "cc.Node", + "_name": "result_title4", + "_objFlags": 0, + "_parent": { + "__id__": 930 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 952 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 699, + "height": 139 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 541.599, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "22lEXmEMNBJLY3L0q5sA6H" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 951 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5f7614df-42e7-47ab-97c8-590b1fe58b1a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "69267d2b-bac4-4527-8697-e26f72809be7" + }, + "_id": "cdFVWueoxMRKH3dMfpCrww" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 921 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 39.26000000000004, + "_bottom": -39.26000000000004, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "73AcxN4iVLWadelL+ShqIS" + }, + { + "__type__": "19d952d5kVBrLSzAIGeElFK", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 825 + }, + "_enabled": true, + "music": { + "__id__": 859 + }, + "effect": { + "__id__": 866 + }, + "vibrate": { + "__id__": 873 + }, + "exit": { + "__id__": 880 + }, + "win": { + "__id__": 921 + }, + "_id": "ef3nVp8O9FlpWYPlCYo9pA" + }, + { + "__type__": "cc.Node", + "_name": "Loading", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 956 + }, + { + "__id__": 960 + }, + { + "__id__": 963 + } + ], + "_active": false, + "_components": [ + { + "__id__": 966 + } + ], + "_prefab": { + "__id__": 967 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e0VLKcxChDE4fYDtJQ8N0V" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 955 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 957 + }, + { + "__id__": 958 + } + ], + "_prefab": { + "__id__": 959 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "62SXqLGiVMwoe71cLQnKla" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 956 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "72TavLl3xHF7CnfHtMVg4I" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 956 + }, + "_enabled": true, + "_id": "fdcyqVHbdJ6qjXrnxAvDP2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 955 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "load", + "_objFlags": 0, + "_parent": { + "__id__": 955 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 961 + } + ], + "_prefab": { + "__id__": 962 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 689, + "height": 656 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "54oinQnUVI9agcqvsdaWLK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 960 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "794efc8c-624c-469f-84c0-24ce84022c54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "71wSQDUq1OF55fvegesImy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 955 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "e0njfM7epDhL+otsGYSeCR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 955 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 964 + } + ], + "_prefab": { + "__id__": 965 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6dXD0pfxVKsLtQwTLl5iGa" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 963 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请稍后", + "_N$string": "请稍后", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "830dxGEOpBeJCR4BduUpFj" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 955 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 955 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "84dQSBI15Fe6ic995cuc/Y" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 955 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "zhuanchang", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 969 + } + ], + "_active": false, + "_components": [ + { + "__id__": 972 + }, + { + "__id__": 973 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1699.06, + "height": 2937.38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "28bp64kpJEtISf041jwpP2" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 968 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 970 + }, + { + "__id__": 971 + } + ], + "_prefab": null, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 2000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3e0GHgNVlCVKRJJmM43pTE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 969 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "bcrt45wsxKIbeKPmjTLtAE" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 969 + }, + "_enabled": true, + "_id": "4fwjz1lnFLD45L1lqUY038" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 968 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "up", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "83fdf834-580f-49fa-ab44-3f234c89d1c2" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "a6DfvGibZMUbb3rKGD/fBw" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 968 + }, + "_enabled": false, + "_id": "00qpMLeBFNhYRX9r3QZvyP" + }, + { + "__type__": "cc.Canvas", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_designResolution": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_fitWidth": true, + "_fitHeight": false, + "_id": "59Cd0ovbdF4byw5sbjJDx7" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "29zXboiXFBKoIV4PQ2liTe" + }, + { + "__type__": "80998T1AYNNRZdRxsVvXR65", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "label": null, + "text": "hello", + "freeze": { + "__id__": 31 + }, + "hammer": { + "__id__": 35 + }, + "magic_wand": { + "__id__": 54 + }, + "pause": { + "__id__": 75 + }, + "level": { + "__id__": 367 + }, + "timeCoin": { + "__id__": 697 + }, + "winCoin": { + "__id__": 353 + }, + "Block_Array": [], + "Wall_Prefab": [], + "_id": "4cjBjPtcBO05zIQupw5luh" + }, + { + "__type__": "f1883pXzMVIp5/ARDAWfZ7j", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "58DM8oQ6lCUKVXb6q5XYvl" + }, + { + "__type__": "cc.Node", + "_name": "stop", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 979 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 192.639, + 296.447, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3eJ2YsxDRCtZGj/DKDc7/i" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 978 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "95joh5iDZB1IGmJkAeXXrL" + } +] \ No newline at end of file diff --git a/assets/Scene/GameScene.fire.meta b/assets/Scene/GameScene.fire.meta new file mode 100644 index 0000000..3819d7f --- /dev/null +++ b/assets/Scene/GameScene.fire.meta @@ -0,0 +1,8 @@ +{ + "ver": "1.3.2", + "uuid": "4eaf518b-35ec-4262-928d-4d497c3f2830", + "importer": "scene", + "asyncLoadAssets": false, + "autoReleaseAssets": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Scene/HomeScene.fire b/assets/Scene/HomeScene.fire new file mode 100644 index 0000000..e97cb30 --- /dev/null +++ b/assets/Scene/HomeScene.fire @@ -0,0 +1,22038 @@ +[ + { + "__type__": "cc.SceneAsset", + "_name": "", + "_objFlags": 0, + "_native": "", + "scene": { + "__id__": 1 + } + }, + { + "__type__": "cc.Scene", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 507 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_is3DNode": true, + "_groupIndex": 0, + "groupIndex": 0, + "autoReleaseAssets": false, + "_id": "66281f32-0047-4af8-8237-90c93fc4b0e8" + }, + { + "__type__": "cc.Node", + "_name": "Audio", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "85rZT9X0VBZYncX60ThF6Y" + }, + { + "__type__": "58403/n16JCa5sZhNMjZzGo", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "audioGameBgm0": { + "__uuid__": "75b4f368-70b5-452d-9afd-ca7a6f1e2e60" + }, + "xiaochu": { + "__uuid__": "8d67c864-c7f4-4305-8b3b-2d66eb69e349" + }, + "hit": { + "__uuid__": "7575a6bd-a21d-491e-aad2-e40a189683e9" + }, + "down": { + "__uuid__": "ec293610-1767-46e8-b6b6-4a9a79ef2233" + }, + "fangxiang": null, + "build": null, + "win": { + "__uuid__": "9f2906df-601d-4dfa-a561-31745b62c9dd" + }, + "lose": null, + "anniu_Big": { + "__uuid__": "7362cac7-12b5-4704-af6d-5b110c5e9fcf" + }, + "anniu_little": { + "__uuid__": "a5518b0f-7ed3-46f0-aa78-93f02f4579cc" + }, + "tanchuang": { + "__uuid__": "1301aea4-4351-40d8-b4c4-e428613b3681" + }, + "zhuan1": { + "__uuid__": "e4d2f16e-7663-4ee5-a479-06ae0eae91d5" + }, + "zhuan2": { + "__uuid__": "998a24bd-ffa0-4f96-bc39-a9789f42bd9b" + }, + "_id": "24lN1LYRdNia3ZOiLsINIp" + }, + { + "__type__": "669f4SuSl9ORqawBcbwCNpG", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "fontUI": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "fontUI2": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "c3AiXtGJZFdrghEYzCHK0O" + }, + { + "__type__": "cc.Node", + "_name": "Canvas", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + }, + { + "__id__": 8 + }, + { + "__id__": 323 + }, + { + "__id__": 89 + }, + { + "__id__": 367 + }, + { + "__id__": 385 + }, + { + "__id__": 405 + }, + { + "__id__": 457 + }, + { + "__id__": 490 + }, + { + "__id__": 495 + } + ], + "_active": true, + "_components": [ + { + "__id__": 504 + }, + { + "__id__": 505 + }, + { + "__id__": 506 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a5esZu+45LA5mBpvttspPD" + }, + { + "__type__": "cc.Node", + "_name": "Main Camera", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 960, + "height": 640 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e1WoFrQ79G7r4ZuQE3HlNb" + }, + { + "__type__": "cc.Camera", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_cullingMask": 4294967295, + "_clearFlags": 7, + "_backgroundColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_depth": -1, + "_zoomRatio": 1, + "_targetTexture": null, + "_fov": 60, + "_orthoSize": 10, + "_nearClip": 1, + "_farClip": 4096, + "_ortho": true, + "_rect": { + "__type__": "cc.Rect", + "x": 0, + "y": 0, + "width": 1, + "height": 1 + }, + "_renderStages": 1, + "_alignWithScreen": true, + "_id": "81GN3uXINKVLeW4+iKSlim" + }, + { + "__type__": "cc.Node", + "_name": "Load", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 9 + }, + { + "__id__": 12 + }, + { + "__id__": 24 + }, + { + "__id__": 26 + }, + { + "__id__": 259 + }, + { + "__id__": 261 + }, + { + "__id__": 266 + }, + { + "__id__": 276 + }, + { + "__id__": 316 + } + ], + "_active": true, + "_components": [ + { + "__id__": 322 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b2/1NmDPVCXovcyHPoKEHX" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e2DtJec2tHzprX4psCclS5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f79670d6-8e4a-4e61-b781-a48fe0de6044" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "47rxTBxMlBq5TBHiYjLPlp" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "0a5XlUuGZCprz0fwaiG835" + }, + { + "__type__": "cc.Node", + "_name": "New EditBox", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [ + { + "__id__": 13 + }, + { + "__id__": 16 + }, + { + "__id__": 19 + } + ], + "_active": false, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 435.16999999999996, + -927.303, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "92Yk45bddBkIC5VFH4eASS" + }, + { + "__type__": "cc.Node", + "_name": "BACKGROUND_SPRITE", + "_objFlags": 512, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f7uvWcKmtOjZ/dKhN4iq4y" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ff0e91c7-55c6-4086-a39f-cb6e457b8c3b" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "df50p2wm1LU4Odz6OzZ6cA" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "alignMode": 0, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 160, + "_originalHeight": 40, + "_id": "7eTyuLtX9NtbuVJqtaZY9K" + }, + { + "__type__": "cc.Node", + "_name": "TEXT_LABEL", + "_objFlags": 512, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 17 + }, + { + "__id__": 18 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -78, + 20, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4fHgjtNz1DTp8txH2LOJyn" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 16 + }, + "_enabled": true, + "_materials": [], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 20, + "_lineHeight": 25, + "_enableWrapText": false, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 1, + "_N$cacheMode": 0, + "_id": "3e656s5ttBHYJlOJljMs52" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 16 + }, + "_enabled": true, + "alignMode": 0, + "_target": null, + "_alignFlags": 45, + "_left": 2, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 158, + "_originalHeight": 40, + "_id": "b2fAvmbqhCFbkNvdi6674a" + }, + { + "__type__": "cc.Node", + "_name": "PLACEHOLDER_LABEL", + "_objFlags": 512, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + }, + { + "__id__": 21 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 187, + "g": 187, + "b": 187, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 198, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -98, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c52g9E5bROELN4QngqjcW9" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请输入测试关卡", + "_N$string": "请输入测试关卡", + "_fontSize": 20, + "_lineHeight": 25, + "_enableWrapText": false, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 1, + "_N$cacheMode": 0, + "_id": "39W0Q3bD1MfJUj3J26oz0h" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "alignMode": 0, + "_target": null, + "_alignFlags": 45, + "_left": 2, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 158, + "_originalHeight": 40, + "_id": "d5z6hACTFPxI4ATD/WI3xZ" + }, + { + "__type__": "cc.EditBox", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_string": "", + "returnType": 0, + "maxLength": 8, + "_tabIndex": 0, + "editingDidBegan": [], + "textChanged": [], + "editingDidEnded": [], + "editingReturn": [], + "_N$textLabel": { + "__id__": 17 + }, + "_N$placeholderLabel": { + "__id__": 20 + }, + "_N$background": { + "__id__": 14 + }, + "_N$inputFlag": 5, + "_N$inputMode": 6, + "_N$stayOnTop": false, + "_id": "e2W9GV/ERLZIuptFV/aTMd" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 36, + "_left": 0, + "_right": 4.830000000000041, + "_top": 0, + "_bottom": 7.697000000000003, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "95O+pI/bdKTpcyNc+cyZ1R" + }, + { + "__type__": "cc.Node", + "_name": "logo", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 25 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 929, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -6.686, + 306.296, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 0.8 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ccmB/tN35JuJlXDco7XciW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "7b8YyyL1RMLIA7epYfyWEZ" + }, + { + "__type__": "cc.Node", + "_name": "Top", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [ + { + "__id__": 27 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 57 + }, + { + "__id__": 67 + }, + { + "__id__": 71 + }, + { + "__id__": 75 + }, + { + "__id__": 79 + }, + { + "__id__": 85 + }, + { + "__id__": 244 + }, + { + "__id__": 248 + }, + { + "__id__": 254 + } + ], + "_active": true, + "_components": [ + { + "__id__": 258 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 730, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "20jAAP9CpIGZs5cllgOlEH" + }, + { + "__type__": "cc.Node", + "_name": "avatar", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 28 + } + ], + "_prefab": null, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -418.15, + -24.972, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c9pgA7e8JBiqIu0hCzj/Qb" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ba781d2e-4d85-401b-a392-72237c02b0e5" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "5fYxC3H8xGPqhyw8R5q49G" + }, + { + "__type__": "cc.Node", + "_name": "kuang", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": null, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -418.15, + -29.334, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f8ZflkC/ZC5o5/dg4IrAoT" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2b141f2-de71-4481-b9ee-440c893c28b3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "9142E2UEJG1J5fb8i3cywI" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 32 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 29 + }, + "_id": "7dLiod22pIY5yMrY1nKrT7" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openAvatar", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "Stamina", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [ + { + "__id__": 34 + }, + { + "__id__": 36 + }, + { + "__id__": 38 + }, + { + "__id__": 40 + }, + { + "__id__": 42 + }, + { + "__id__": 43 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 55 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 350, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -85.589, + -30.871, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "41ovg6xMhJpY6a/xoSwzYz" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 35 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 312, + "height": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 26.654, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "284AzcjcZO1YamfVdQiBrN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2262cdce-7a64-4513-afad-1298607c61e3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "783qibD9lILbiK5u0lQtpC" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -109.358, + -1.322, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "13/EuGLN5LQq4PpahXPZZO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8470837f-e899-445f-b74c-ef594b344817" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "cdFSX2eQpLcoQo2xGNhbqy" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 39 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 76, + "height": 82 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 154.717, + -3, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "04qzvEC3RHhr8mGhJKuDjG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e44020c0-be20-4cc3-a6ad-4bcd4797f32e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "e5l9PVKk1AL4lZyejjxcwo" + }, + { + "__type__": "cc.Node", + "_name": "man", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 41 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25.362, + 0.13, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f06jaLv41MK7taagL9jZer" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 40 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0236e978-b4c6-4b4f-93f2-11259ce9daf8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "a6pUPqq19CdIM+47NANBvJ" + }, + { + "__type__": "cc.Node", + "_name": "health", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.874, + -1.055, + 0, + 0, + 0, + 0, + 1, + 0.3, + 0.3, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "0ax3zoOJNIz6JXjKysnJeM" + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 44 + } + ], + "_prefab": null, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 109, + "g": 70, + "b": 70, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 102.3, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 22.714, + -4.433, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6e3NFcTR9IAq9F2NH0NZC7" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 43 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "00:00", + "_N$string": "00:00", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "7dyUAMufJP2KMgLN/j5RO6" + }, + { + "__type__": "cc.Node", + "_name": "skyLine", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [ + { + "__id__": 46 + }, + { + "__id__": 48 + }, + { + "__id__": 50 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ffkIGuV8xKwqTxzK0b+lLy" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 45 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 47 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 137, + "height": 121 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -108.391, + 2.125, + 0, + 0, + 0, + 0, + 1, + 0.6, + 0.6, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3c+JuY8nxExq8AWb0WRpzx" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 46 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "591a3b58-c345-4c24-84a2-f4faa8acdda1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "d9A2aZQldLmbsd18cy1O6U" + }, + { + "__type__": "cc.Node", + "_name": "skyTime", + "_objFlags": 0, + "_parent": { + "__id__": 45 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 49 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 126, + "b": 81, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 23.852, + -4.433, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1coR4cPpxDiqDUxS/C6pUv" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 48 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "83jlRVm3hBOY8f4j0FQw+2" + }, + { + "__type__": "cc.Node", + "_name": "up", + "_objFlags": 0, + "_parent": { + "__id__": 45 + }, + "_children": [ + { + "__id__": 51 + }, + { + "__id__": 53 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4bD+H+wk9HRLOF4qW9qrYl" + }, + { + "__type__": "cc.Node", + "_name": "tili", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 440, + "height": 121.77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 21.818, + 2.567, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "bb4Cdx4JpH6r2XhsjHHT4K" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "0dec3546-fb91-46f1-8ef8-9689b3f561db" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "0aJlexF0dBeZitgOS/UXOs" + }, + { + "__type__": "cc.Node", + "_name": "light", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 440, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 21.818, + 2.567, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "88VNPq2IpDZ6KuN2uyz1q2" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "a1baaeba-23ec-42c0-ad56-f76655ebcb96" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "0fZX1VLIBBeJefaNrdnpfP" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 56 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 33 + }, + "_id": "a02wxO/HBOhocdAfYUtL7r" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openHeath", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "Coin", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [ + { + "__id__": 58 + }, + { + "__id__": 60 + }, + { + "__id__": 62 + }, + { + "__id__": 64 + } + ], + "_active": true, + "_components": [ + { + "__id__": 65 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 350, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 326.328, + -28.997, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "22F0XLwFlA4JWo/+rK/2Ak" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 57 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 59 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 312, + "height": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 5.69, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a1Ik4K4SdEPaPOYiiCJpSv" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 58 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2262cdce-7a64-4513-afad-1298607c61e3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "4eA2J0sohJCaI6kjULpZtI" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 57 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 61 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -138.728, + -1.322, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "92ZtnECdxIHKntSvTMWwWR" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 60 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5b277947-e27a-4670-9186-88a1175375ce" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "b2xVngjSJHO7BHgQsBjeWr" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 57 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 63 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 76, + "height": 82 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 140.987, + -3, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a6YGUXVjRDb6SHNu0EiV/P" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e44020c0-be20-4cc3-a6ad-4bcd4797f32e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "a29WqzUo1BBINqw3FfN6x3" + }, + { + "__type__": "cc.Node", + "_name": "Coin", + "_objFlags": 0, + "_parent": { + "__id__": 57 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.5, + 1.584, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "73NwpIdRdBPryqQehwgr8A" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 66 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 57 + }, + "_id": "36IvGuRcpKXaqGC8rokm1p" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openShop", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 68 + }, + { + "__id__": 69 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168, + "height": 191 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 408.004, + -588.064, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c1WvX8CnBMk64fW3spzSYu" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 67 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "213d54e8-9413-40dd-a7be-bf0e40c4757e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "c3DyfsAPFB06gqMxC/RV/W" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 67 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 70 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 67 + }, + "_id": "d4hONMsL9F2aTL9sxfJKo/" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openRank", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 72 + }, + { + "__id__": 73 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168, + "height": 191 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 408.622, + -334.976, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f9KOpiXFpJt7UXGdRJh1qP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "43614b1f-b917-4fa8-a281-9fcc6985e35c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "3axbJS5zBEDYLp+gSJe4xw" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 74 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 71 + }, + "_id": "9c2QfamdxOgpfoTaiolYA2" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openPause", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "yicon", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 76 + }, + { + "__id__": 77 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -408.636, + -475, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "227VzOsodKa5YJ4SbyG1x0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 75 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "78bb2534-0f4a-425a-ba88-ee449cbb85bb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "397fcQd6dNGZz/0oBn6NqZ" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 75 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 78 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "21PdxtacBL/6BkdfBtKrvu" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openMonthCard", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "xinshou", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [ + { + "__id__": 80 + } + ], + "_active": false, + "_components": [ + { + "__id__": 82 + }, + { + "__id__": 83 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 182, + "height": 215 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -414.356, + -720.934, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6ehJKAdGhBxosycDPw6wp6" + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 79 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 81 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120.09, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 21.207, + -85.817, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "16qgnLi2pBM5BYk+qatG8Q" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 80 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "00:00:00", + "_N$string": "00:00:00", + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "7b72Vv26tIO5XLFFsFkQsf" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 79 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ee1b534d-4481-4c29-8d84-9c9e0a768e76" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "c5YHOFp0hKo4PsmecHFujZ" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 79 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 84 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "4dRs0vyMdNvYqtKb2acCNZ" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openStarter_pack", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [ + { + "__id__": 86 + } + ], + "_active": true, + "_components": [ + { + "__id__": 243 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 400, + -259.412, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9bPkmFzgZJJo9orQp0t0AQ" + }, + { + "__type__": "cc.Node", + "_name": "btn_rank", + "_objFlags": 0, + "_parent": { + "__id__": 85 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 87 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c7Y5RQZ4lJproP4EcK78yF" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 88 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": { + "__uuid__": "fa0de294-7f16-4870-a1d3-6d00e6345ef4" + }, + "_N$pressedSprite": { + "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a" + }, + "pressedSprite": { + "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a" + }, + "_N$hoverSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "hoverSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "_N$disabledSprite": { + "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e" + }, + "_N$target": { + "__id__": 85 + }, + "_id": "deIWnyjYRA1b/sHcjjXj0D" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 89 + }, + "component": "", + "_componentId": "83533ha7L1Hn4Ep+rvR3z5k", + "handler": "init", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 90 + }, + { + "__id__": 95 + }, + { + "__id__": 98 + }, + { + "__id__": 101 + }, + { + "__id__": 104 + }, + { + "__id__": 116 + }, + { + "__id__": 203 + }, + { + "__id__": 206 + }, + { + "__id__": 209 + }, + { + "__id__": 214 + }, + { + "__id__": 221 + }, + { + "__id__": 228 + }, + { + "__id__": 234 + } + ], + "_active": false, + "_components": [ + { + "__id__": 240 + }, + { + "__id__": 241 + } + ], + "_prefab": { + "__id__": 242 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "daIf0OIsdKJLzYZzUagfCv" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 91 + }, + { + "__id__": 92 + }, + { + "__id__": 93 + } + ], + "_prefab": { + "__id__": 94 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a3yXZ3bClMIpfLJLU8qcHf" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "ef+WQpvWpIspFxZtg3kaWn" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "91TCbgmRZND5MiK0DNEE0e" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_id": "7fMlG3McNKXbaEA+pGgESJ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "40/sLm3LNOZYY+yuxPZBtl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 96 + } + ], + "_prefab": { + "__id__": 97 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2340 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -32.098, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "953ueCZ3JAzLB21ppS+bjv" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 95 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fe08ee8e-2c2a-4975-a429-042befb537b1" + }, + "_type": 1, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "a8X+0KEv1DB5o/BO05hoSR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "eaa0mk4NlFb7Gh26FheJi0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 99 + } + ], + "_prefab": { + "__id__": 100 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 194, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 838.222, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a7N73gw2BPla/VHRdmZT+7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 98 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4d3c4a55-c1f0-4fdc-af6b-59d79d1ae7d0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "0fOie/HJxNO6ZId4J3Hthe" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "dcWnEBFZxEjoBfE7Bv5/TA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tanchaungrank2", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 102 + } + ], + "_prefab": { + "__id__": 103 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 964, + "height": 1200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -320, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ef5pU+tvRJzJyWaxffC4f7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 101 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c02d7fa3-0509-4731-ba5d-bf8c7e436f9c" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "2eN32mDn1OIIDSIew/05zC" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "bf5RMQuyxGuKES6e8Zq/GE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 105 + }, + { + "__id__": 108 + } + ], + "_active": false, + "_components": [ + { + "__id__": 114 + } + ], + "_prefab": { + "__id__": 115 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9bzPqOYMRPxZNBLN5dBnTE" + }, + { + "__type__": "cc.Node", + "_name": "SubContextView", + "_objFlags": 0, + "_parent": { + "__id__": 104 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 964, + "height": 1300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -353.769, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d4L1qjh5FK0b5Eyx0TpSgV" + }, + { + "__type__": "cc.SubContextView", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_firstlyEnabled": true, + "_fps": 60, + "_id": "edsOXgtvRPK7SQ73in9oXj" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "c9JAv8oh5MHofh5C6T3nLb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btnsq", + "_objFlags": 0, + "_parent": { + "__id__": 104 + }, + "_children": [ + { + "__id__": 109 + } + ], + "_active": false, + "_components": [ + { + "__id__": 111 + } + ], + "_prefab": { + "__id__": 113 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -617.799, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e6YujI2WNLB6vEJk/kDr2H" + }, + { + "__type__": "cc.Node", + "_name": "sq", + "_objFlags": 0, + "_parent": { + "__id__": 108 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 110 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 299, + "height": 76 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 8.749, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c9KIRQTdtGPJPdPoXBiN2Q" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "4bgAhjZLRAAZphuFz4qOQK", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 108 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 112 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "43DimkUg9B+peZbnva5R6H" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 89 + }, + "component": "", + "_componentId": "83533ha7L1Hn4Ep+rvR3z5k", + "handler": "showRanks", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "9e7W0n/rNPu7/0+21bNCQn", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 104 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 964, + "_originalHeight": 1150, + "_id": "05wXVyKO5M6bi1gkOON4Wd" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "0dVS0JHO5IHbZoIR0gIwcZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "word_rank", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 117 + }, + { + "__id__": 121 + }, + { + "__id__": 168 + } + ], + "_active": true, + "_components": [ + { + "__id__": 200 + }, + { + "__id__": 201 + } + ], + "_prefab": { + "__id__": 202 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f0rm8RxuhE5KZ5dF5azdlF" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 116 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 118 + }, + { + "__id__": 119 + } + ], + "_prefab": { + "__id__": 120 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d37Y9CV8tIT7NVts4kaQg0" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 117 + }, + "_enabled": true, + "_id": "cd3DFXBHpGJobXun6zf91F" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 117 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "2f4oOySopD8q6rVrVO0008" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "38Dykx1YVMK7YyiLmYs1Mz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "ScrollView", + "_objFlags": 0, + "_parent": { + "__id__": 116 + }, + "_children": [ + { + "__id__": 122 + }, + { + "__id__": 129 + } + ], + "_active": true, + "_components": [ + { + "__id__": 127 + }, + { + "__id__": 166 + } + ], + "_prefab": { + "__id__": 167 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 964, + "height": 2100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4, + 200, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f2qEUe9jxMr4lfX/LuPhqO" + }, + { + "__type__": "cc.Node", + "_name": "scrollBar", + "_objFlags": 0, + "_parent": { + "__id__": 121 + }, + "_children": [ + { + "__id__": 123 + } + ], + "_active": false, + "_components": [ + { + "__id__": 126 + }, + { + "__id__": 163 + }, + { + "__id__": 164 + } + ], + "_prefab": { + "__id__": 165 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 12, + "height": 1200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 340, + -410, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a64CVLBXVK1Z8W8MZOsP/D" + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_parent": { + "__id__": 122 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 124 + } + ], + "_prefab": { + "__id__": 125 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 30 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5bJeoWdKJEFpszILhK0QwO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "e8BF4V2HxGXJQxHW+OQD2U" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 121 + }, + "asset": { + "__uuid__": "a6f24311-4ed3-40fb-a959-eab2047ab70d" + }, + "fileId": "d7LA6B6L9KYrPYs9FOPGKR", + "sync": false + }, + { + "__type__": "cc.Scrollbar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 122 + }, + "_enabled": true, + "_scrollView": { + "__id__": 127 + }, + "_touching": false, + "_opacity": 255, + "enableAutoHide": true, + "autoHideTime": 1, + "_N$handle": { + "__id__": 124 + }, + "_N$direction": 1, + "_id": "b3IBYZnN9MNJcjYCfCXCjZ" + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 121 + }, + "_enabled": true, + "horizontal": false, + "vertical": true, + "inertia": true, + "brake": 0.75, + "elastic": false, + "bounceDuration": 0.23, + "scrollEvents": [], + "cancelInnerEvents": true, + "_N$content": { + "__id__": 128 + }, + "content": { + "__id__": 128 + }, + "_N$horizontalScrollBar": null, + "_N$verticalScrollBar": { + "__id__": 126 + }, + "_id": "2a8hyyK7lCELB7KL3Sr3ZQ" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "_parent": { + "__id__": 129 + }, + "_children": [ + { + "__id__": 132 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 162 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 940, + "height": 1050 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3dk9cy53RNJrCySSclfFpg" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "_parent": { + "__id__": 121 + }, + "_children": [ + { + "__id__": 128 + } + ], + "_active": true, + "_components": [ + { + "__id__": 130 + } + ], + "_prefab": { + "__id__": 131 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 940, + "height": 1050 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3dEsDkiAFHnofogcjRz7Sr" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 129 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0, + "_N$inverted": false, + "_id": "a1VFfmV7pAILHGFnuevjBI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 121 + }, + "asset": { + "__uuid__": "a6f24311-4ed3-40fb-a959-eab2047ab70d" + }, + "fileId": "01e0xqlUVFcY0MMajauQHo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "RankListItem", + "_objFlags": 0, + "_parent": { + "__id__": 128 + }, + "_children": [ + { + "__id__": 133 + }, + { + "__id__": 136 + }, + { + "__id__": 139 + }, + { + "__id__": 142 + }, + { + "__id__": 144 + }, + { + "__id__": 155 + }, + { + "__id__": 157 + } + ], + "_active": true, + "_components": [ + { + "__id__": 160 + } + ], + "_prefab": { + "__id__": 161 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 926, + "height": 139 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b38ND/f+1HpovpV35y+TyX" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 132 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 134 + } + ], + "_prefab": { + "__id__": 135 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 926, + "height": 139 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6cTDPXXpdMXZQDougv1noF" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 133 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f63001d8-15f0-4c86-b015-b6d7cffc2fc4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "b7aoUDjsFBgqec2XYb+uIi" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "6eyN1+nK5HT7svNqUsa2/+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "pic", + "_objFlags": 0, + "_parent": { + "__id__": 132 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 137 + } + ], + "_prefab": { + "__id__": 138 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -209.11, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "36P4gl3j9EcZMUxlf6Si9B" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 136 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "6dsHEylSBPMabH0rencsym" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "7azlo5X15H9qYpSROufv9g", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 132 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 140 + } + ], + "_prefab": { + "__id__": 141 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 110 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -210, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3dtgtPwslN/YRCPs3o45Hk" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 139 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e9fb6348-49dd-4fe5-a446-1517df38bdbe" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "66MLUXFOlBPKC5q5KQPMlW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "92Rx0VohVPQpRLbuYKnLnX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rankLab", + "_objFlags": 0, + "_parent": { + "__id__": 132 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 143 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.68, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -355.405, + 0.335, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "feLfbyeHFM67CDfLZ/FniE" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "de4HHWkIhExrJq1+nHHMA6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 132 + }, + "_children": [ + { + "__id__": 145 + }, + { + "__id__": 148 + }, + { + "__id__": 151 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 154 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -377.35, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1dev9fqgtPOYbSzwsndzTf" + }, + { + "__type__": "cc.Node", + "_name": "one", + "_objFlags": 0, + "_parent": { + "__id__": 144 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 146 + } + ], + "_prefab": { + "__id__": 147 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cb3NgQi31KpqSSJQa+ZvlK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 145 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8130e42a-07a3-42bd-879f-33c0df18d856" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "66KS4KvmxNH71B5G9qor36" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "07jJ4rjvBM3K8UmWuJPTSW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "two", + "_objFlags": 0, + "_parent": { + "__id__": 144 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 149 + } + ], + "_prefab": { + "__id__": 150 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "340pSyNExABJh9fPxL8AGN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 148 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d41022b8-2d6b-4cc7-a690-1aaea0f2e5fd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "02557FX0RBYLrHKTz5X5v4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "cf00JqB1FL4J82EdUA2X13", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "three", + "_objFlags": 0, + "_parent": { + "__id__": 144 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 152 + } + ], + "_prefab": { + "__id__": 153 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 114 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3e48NipHNLI6sZTTEJOzsa" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 151 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9c104f93-240b-4fa1-adbb-2a6d14ac4543" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "a61U3hpCFHj7emWHQVVwzl" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "1beDtXl+VD86kzCArCfEPs", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "d03AAa5MpCZY7eWAmnGlia", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "totalLab", + "_objFlags": 0, + "_parent": { + "__id__": 132 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 156 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.68, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 382, + -0.789, + 0, + 0, + 0, + 0, + 1, + 0.95, + 0.95, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f5Sf3IXIxASLKnj/L5Ocw0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "05c46heZhJV4sYMqYyxlB5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "nameLab", + "_objFlags": 0, + "_parent": { + "__id__": 132 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 158 + } + ], + "_prefab": { + "__id__": 159 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 85, + "g": 48, + "b": 20, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -98, + -2.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "98ETKcgjhP15UMVSwyrXf5" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 157 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "匿名玩家", + "_N$string": "匿名玩家", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 2, + "_N$cacheMode": 1, + "_id": "396DU7LKFHyrD4Rh2qS2ow" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "2an+mxcU5ApJz+ZlYlaw5G", + "sync": false + }, + { + "__type__": "ca0f9k0oBVDbpQC+OMNTF3m", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 132 + }, + "_enabled": true, + "defaultsprite": { + "__uuid__": "46896dd3-d3de-4947-b2dd-eb2b1b69bef1" + }, + "ui": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "4eskIm6W1OIrEadCG5XTiD" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 132 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "7cSJyhfpFJu6cQACjuayTQ", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 121 + }, + "asset": { + "__uuid__": "a6f24311-4ed3-40fb-a959-eab2047ab70d" + }, + "fileId": "b21uNyrqhLbqirpS1MD+7t", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 122 + }, + "_enabled": true, + "alignMode": 0, + "_target": null, + "_alignFlags": 37, + "_left": 350.07654921020657, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 237, + "_id": "eaGQx4FFNNGqyBspzImmt6" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 122 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5fe5dcaa-b513-4dc5-a166-573627b3a159" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "a7rmNNTaRIKqPR7d5jPq4o" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 121 + }, + "asset": { + "__uuid__": "a6f24311-4ed3-40fb-a959-eab2047ab70d" + }, + "fileId": "7by3ovAnJLYoQqKmlhCACY", + "sync": false + }, + { + "__type__": "d5421HgLShFKIjj5f18m1mi", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 121 + }, + "_enabled": true, + "itemRender": { + "__id__": 132 + }, + "type": 2, + "startAxis": 2, + "spaceX": 10, + "spaceY": 15, + "padding_top": 10, + "padding_buttom": 0, + "padding_left": 10, + "_padding": 0, + "padding_right": 10, + "_id": "7ck1AzQqJP9qo62gvQT+8N" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 121 + }, + "asset": { + "__uuid__": "a6f24311-4ed3-40fb-a959-eab2047ab70d" + }, + "fileId": "66wS3jtslO1o15+Mqp3Vvi", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "selfNode", + "_objFlags": 0, + "_parent": { + "__id__": 116 + }, + "_children": [ + { + "__id__": 169 + }, + { + "__id__": 172 + }, + { + "__id__": 175 + }, + { + "__id__": 178 + }, + { + "__id__": 180 + }, + { + "__id__": 191 + }, + { + "__id__": 193 + }, + { + "__id__": 196 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 199 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -915.679, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "47em6odGtNRKR1s9xEkbuW" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 168 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 170 + } + ], + "_prefab": { + "__id__": 171 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 962, + "height": 170 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8ab8jDHt1Bj6kClAW3T9XK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 169 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd8ebfd7-7d9d-4e9f-ac22-4fcc3c5f6db4" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "6bBe7hBupPkKynfEPF3HNO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "8etzRY4BdKxL0nPG0EAThZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "pic", + "_objFlags": 0, + "_parent": { + "__id__": 168 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 173 + } + ], + "_prefab": { + "__id__": 174 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -209.11, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f5iBilMllLLK/pGpaxal2V" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 172 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "cdyZBYloNMWYsWFSIIq5rn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "a4uIfRczhGYLdjNiEJmdLJ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 168 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 176 + } + ], + "_prefab": { + "__id__": 177 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 110 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -210, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6ai9+8VttA+JWBE3MCY4Os" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 175 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e9fb6348-49dd-4fe5-a446-1517df38bdbe" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "7ahMBTmyhFsYDHLQCoy32a" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "de0z7Cfs9G3YmkY3NbWIVg", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rankLab", + "_objFlags": 0, + "_parent": { + "__id__": 168 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 179 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.68, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -359.631, + 0.335, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "94H/6XojlGHr3lazP8mQH7" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "8c9AU7Nf1FsZRWom0+mQv8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 168 + }, + "_children": [ + { + "__id__": 181 + }, + { + "__id__": 184 + }, + { + "__id__": 187 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 190 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -377.35, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "dcO8yoYNVA4qpJ1vkv4ZO/" + }, + { + "__type__": "cc.Node", + "_name": "one", + "_objFlags": 0, + "_parent": { + "__id__": 180 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 182 + } + ], + "_prefab": { + "__id__": 183 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2aNl+ulxlGUrEaOrNmNbSW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 181 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8130e42a-07a3-42bd-879f-33c0df18d856" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "ae7AHj8lxHerdkaZE3FBsB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "ef7REpG2xG8bV+505iX5eP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "two", + "_objFlags": 0, + "_parent": { + "__id__": 180 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 185 + } + ], + "_prefab": { + "__id__": 186 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5fL/agCM5HMp1Ag2ZcdyKZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 184 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d41022b8-2d6b-4cc7-a690-1aaea0f2e5fd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "60/LirlPFLbJsLfOxz7mXe" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "4fL+1FDBJFDqhiYPJK4cjp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "three", + "_objFlags": 0, + "_parent": { + "__id__": 180 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 188 + } + ], + "_prefab": { + "__id__": 189 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 114 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "72nhCHo8tB8a0+k22nYyfm" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 187 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9c104f93-240b-4fa1-adbb-2a6d14ac4543" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "82lvtGCPVMEpQf5SKBgCZF" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "723K+KkGtEkIe6AApdq47m", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "7f9j5gLFtGoJ3RZDwghcGO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "totalLab", + "_objFlags": 0, + "_parent": { + "__id__": 168 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 192 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.68, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 382, + -0.789, + 0, + 0, + 0, + 0, + 1, + 0.95, + 0.95, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "10TqA7kFxOIJOmegihaxUF" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "07cSYcD2xCWIOlAQcPIbil", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "nameLab", + "_objFlags": 0, + "_parent": { + "__id__": 168 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 194 + } + ], + "_prefab": { + "__id__": 195 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 85, + "g": 48, + "b": 20, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -98, + -2.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9cn31MuQdNjKPbRS9tkbPM" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 193 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "匿名玩家", + "_N$string": "匿名玩家", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 2, + "_N$cacheMode": 1, + "_id": "3bTAATYPxKAJTnjBe3eEEm" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "bel/qFLN1JEaJh29HdQI59", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "add", + "_objFlags": 0, + "_parent": { + "__id__": 168 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 197 + } + ], + "_prefab": { + "__id__": 198 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -292.854, + 0.335, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e1Ga5iT7lNqLLLmoBMjWhB" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 196 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2cffad24-577a-48e9-bd12-c5a83e72f856" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3ceddf93-d26c-4f2f-b990-609ea177a6e8" + }, + "_id": "ddM+P3bVZFb6seDdp4ZKrK" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "6aZzQt0j1ObISolelYpxbB", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "dcNw4cvLdDqoA1fzmBj4MA", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 116 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "e0opwhKDVCubqL3FJgACS7" + }, + { + "__type__": "acd18UfsbZFyJMtTMKLE1tz", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 116 + }, + "_enabled": true, + "phone": { + "__id__": 173 + }, + "_id": "21VTm4fhBMDaLhexTG6OPa" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "463fHZtKFPR4KdSBGXnhSK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 204 + } + ], + "_prefab": { + "__id__": 205 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 507, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 150.775, + 236.174, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d0ZaUpOUZO8pogvCthzaC8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 203 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e5c1a82a-09ec-42dd-8043-57ed761098a1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "5dqrMv/zdPjbgxwQglRhgT" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "8dTeV1U6VN9INC2RnSYMkc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 207 + } + ], + "_prefab": { + "__id__": 208 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 646, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -20.243, + 342.193, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cfx5oTjANB96Z/Xww6H/Iq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 206 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ef76d65f-e38f-4822-ab9b-da59611f99d5" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "786r4iF8pLTZ97F1i2jrBW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "c8eSHP1WtIVoob9VkN6ZrR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "closet", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 210 + }, + { + "__id__": 211 + } + ], + "_prefab": { + "__id__": 213 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 96, + "height": 102 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 416.61, + 809.823, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "16rRSaULBMxK41nOHd6wrQ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 209 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "225f5c55-2992-4244-88ee-d6186f8099ec" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "0094giPfBNn5N7H/VfjHlY" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 209 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 212 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 209 + }, + "_id": "21GiWEPJpHd42ZOQWtcUfn" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 89 + }, + "component": "", + "_componentId": "83533ha7L1Hn4Ep+rvR3z5k", + "handler": "closeRanks", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "32nHcT0eJFV6BkZRT/iInP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "friend_close", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 215 + } + ], + "_active": true, + "_components": [ + { + "__id__": 219 + } + ], + "_prefab": { + "__id__": 220 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 182, + "height": 57 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 140, + 345.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d6waQ8QxBDHpVWXrolsBSH" + }, + { + "__type__": "cc.Node", + "_name": "New Button", + "_objFlags": 0, + "_parent": { + "__id__": 214 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 216 + } + ], + "_prefab": { + "__id__": 218 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7ccjW1v6ZPyqmbHvZUwVT8" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 215 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 217 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "_N$pressedSprite": { + "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a" + }, + "pressedSprite": { + "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a" + }, + "_N$hoverSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "hoverSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "_N$disabledSprite": { + "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e" + }, + "_N$target": { + "__id__": 215 + }, + "_id": "24SbsEZ/JL+bsKZyvFpnrJ" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 89 + }, + "component": "", + "_componentId": "83533ha7L1Hn4Ep+rvR3z5k", + "handler": "openFriend", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "415ASy6IhAf7+4LZW3tUJT", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 214 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3c48c75b-ab37-492a-bac3-313a21bf0563" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "f5VC9nlUNHZo3oPT7oaPag" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "08uDxIcEFAAJhtFka6jvkI", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "player_close", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 222 + } + ], + "_active": true, + "_components": [ + { + "__id__": 226 + } + ], + "_prefab": { + "__id__": 227 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 182, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -182, + 345.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "98EMOwkvFEvIEL28TziDbT" + }, + { + "__type__": "cc.Node", + "_name": "New Button", + "_objFlags": 0, + "_parent": { + "__id__": 221 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 223 + } + ], + "_prefab": { + "__id__": 225 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "bf97bkHb5PU5fOL7Z482OI" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 222 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 224 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "_N$pressedSprite": { + "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a" + }, + "pressedSprite": { + "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a" + }, + "_N$hoverSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "hoverSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "_N$disabledSprite": { + "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e" + }, + "_N$target": { + "__id__": 222 + }, + "_id": "07+klLm2RB1Ymuv75IZWg6" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 89 + }, + "component": "", + "_componentId": "83533ha7L1Hn4Ep+rvR3z5k", + "handler": "openWord", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "5fpUFxftRPgrgC4Z1cOz6U", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 221 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a4df46ac-876b-470c-ab26-86f66adda88f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "33Dt+9IDJOHa+JNDPswHwW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "74IrZo1phFFbDsHxaP3ShB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "word", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 229 + } + ], + "_active": true, + "_components": [ + { + "__id__": 232 + } + ], + "_prefab": { + "__id__": 233 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -182.884, + 345.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "98esJ/gshEjKJkf/CPc3r4" + }, + { + "__type__": "cc.Node", + "_name": "player_open", + "_objFlags": 0, + "_parent": { + "__id__": 228 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 230 + } + ], + "_prefab": { + "__id__": 231 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 182, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5cbgx4sGdNIZyr+MLxHB5R" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 229 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "900b16e6-24da-4bb9-ad2d-35f91dd8b685" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "41SDf5wyxBtoZsFOIF8sfZ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "bfi8XlgrVMab4yY+1ptdca", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 228 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "baea474a-7d16-44c4-b450-90d8f9d82fce" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "39pquPwHtPFpwAVz6RDMth" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "a2fn6qOpdCVLYlyZHS5sUu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "friend", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 235 + } + ], + "_active": false, + "_components": [ + { + "__id__": 238 + } + ], + "_prefab": { + "__id__": 239 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 140, + 345.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d1Nf6zYhBKm5xXQfRp9ymx" + }, + { + "__type__": "cc.Node", + "_name": "friend_open", + "_objFlags": 0, + "_parent": { + "__id__": 234 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 236 + } + ], + "_prefab": { + "__id__": 237 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 182, + "height": 57 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "82ABExShBDpqK/ETWxVw2a" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 235 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "adb7a45a-f032-4be7-a801-488a885ad90e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "b0D2FxrkBH8ZEBZs7shiNN" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "27SdMK5WlOdqIfCRaI71sT", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 234 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "baea474a-7d16-44c4-b450-90d8f9d82fce" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "dePMtplCRKkJBqjY04nofr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "223fK8B/JHooL3y1e0Rro7", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 89 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "12V/EpH8dKCYo7NvOSNBSB" + }, + { + "__type__": "83533ha7L1Hn4Ep+rvR3z5k", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 89 + }, + "_enabled": true, + "ui": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "subContextView": { + "__id__": 105 + }, + "closeButton": { + "__id__": 89 + }, + "btnRanks": { + "__id__": 89 + }, + "selfNode": { + "__id__": 168 + }, + "defaultsprite": { + "__uuid__": "46896dd3-d3de-4947-b2dd-eb2b1b69bef1" + }, + "_id": "e0QyCwe3lJvq5rtVOr43sR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 89 + }, + "asset": { + "__uuid__": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b" + }, + "fileId": "", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fa0de294-7f16-4870-a1d3-6d00e6345ef4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "69/XINrB1MYIBw3SSAW6HT" + }, + { + "__type__": "cc.Node", + "_name": "shop", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 245 + }, + { + "__id__": 246 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 173 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -408, + -259.412, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "45QHLS95hEx5a8Sr8ljAzW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 244 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4b9e9399-6a87-4aee-8790-3fc571749f02" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "e4jnDA2BxJ9p5QCtjMPl1S" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 244 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 247 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "6ceRRE3YdOT73NPvP82Kcg" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openShop", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "day", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [ + { + "__id__": 249 + } + ], + "_active": true, + "_components": [ + { + "__id__": 251 + }, + { + "__id__": 252 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 399.724, + -475, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "13KF6v+OhPlLHvyr7DpBzl" + }, + { + "__type__": "cc.Node", + "_name": "red", + "_objFlags": 0, + "_parent": { + "__id__": 248 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 250 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 56, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 73.095, + 75.425, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "68xFPf6zVI9bXqMHzo8Sug" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 249 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e124860a-ae6d-4aac-a0e2-5efc12a67b22" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "1at923UZdDkoG41Z9LlwSx" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 248 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a71f51cc-7f5c-4cda-9ed8-a2de24fcaa4a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "63F7WqD1FC/owdoKJZoVOm" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 248 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 253 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "b075hz84JEVKQfSbI89VGQ" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openDailyQuests", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "hammer", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 255 + }, + { + "__id__": 256 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 223, + "height": 194 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 399.724, + -701.015, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "35PXhIOBBG4oMDQtPNiXZ8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 254 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "272d0a72-53f9-47cb-b4b9-b69d0dbdc931" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "b5I0ecAyFCBoT2YheLsuQY" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 254 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 257 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "61LbCY3vFHRqvIwBalKG/R" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openWinStreak", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 1, + "_left": 0, + "_right": 0, + "_top": 230, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "545kbNtbdB9bmBxlLNbS+4" + }, + { + "__type__": "cc.Node", + "_name": "day", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 260 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 400, + 493.843, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7cAlzNSsNKRLF8A0ta1LDJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 259 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2352075f-3a7d-4cc5-96b7-c51dd7951e83" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "62ivWLPPhLAaStQtW3HKKn" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [ + { + "__id__": 262 + }, + { + "__id__": 263 + } + ], + "_active": true, + "_components": [ + { + "__id__": 265 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 314, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -519.612, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5e09+bPftE74zDi53bWF8Z" + }, + { + "__type__": "cc.Node", + "_name": "Level", + "_objFlags": 0, + "_parent": { + "__id__": 261 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 17, + 13.122, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "79CJjOgBJGS6Tbmtt8Yvii" + }, + { + "__type__": "cc.Node", + "_name": "diguan", + "_objFlags": 0, + "_parent": { + "__id__": 261 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 264 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 234, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 13.122, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ebsHtgIhRLjb4tFNPT5zEH" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 263 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c281f2f9-2807-4bb8-99d4-7539f1ee9a72" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "7arxCXkSJE1Zb0xW1mnRKN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 261 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e080aa54-03de-469f-9954-14b4b1d22c18" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "88zAF5DPBKJasd19p6kKlt" + }, + { + "__type__": "cc.Node", + "_name": "startBtn", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [ + { + "__id__": 267 + }, + { + "__id__": 269 + }, + { + "__id__": 271 + } + ], + "_active": true, + "_components": [ + { + "__id__": 273 + }, + { + "__id__": 275 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 498, + "height": 217 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -684.946, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cbuzoJCRZOuo5AU8opcyOt" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 266 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 268 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 520, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "dcD0LRMjdLeoSla+F4nESp" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 267 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5b362977-0ae1-4372-bb12-8af747499e90" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "c0CELW12hI76q+pwEz4617" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 266 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 270 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 348, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 4, + 14.669, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "50mLUo67VDa6ayWOVLgOUs" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 269 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "67aa2442-f871-4873-ab24-a38784d22bd1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "6fBNf/J0NN54if2rwOzQk8" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 266 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 272 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 239, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -1.392, + -57.44, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "95tjJ0FRdPsZm+GyKeHf3a" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 271 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1700775b-47c7-4e13-82f3-36e8fb7212c6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "55iYU8hxdHGJOdKh/yA+RR" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 266 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 274 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 266 + }, + "_id": "3dQDbcz5dNn74nCaHgkHYH" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "startGame", + "customEventData": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 266 + }, + "_enabled": true, + "_id": "b3Q7zBr9dF8b+FxLkZChQs" + }, + { + "__type__": "cc.Node", + "_name": "tiaodik", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [ + { + "__id__": 277 + }, + { + "__id__": 281 + }, + { + "__id__": 283 + }, + { + "__id__": 293 + }, + { + "__id__": 303 + } + ], + "_active": false, + "_components": [ + { + "__id__": 313 + }, + { + "__id__": 314 + }, + { + "__id__": 315 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 598 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 409.721, + -290.226, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6dqgv+aKdPoakjPzpvDNA5" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 276 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 278 + }, + { + "__id__": 279 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e8tNdSTsxI0oc8XZZW12JO" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 277 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": -463, + "_right": -463, + "_top": -661, + "_bottom": -661, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "41pHA/iYdFla4bJbJUEtrE" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 277 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 280 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "252ICggOxKkbSkMoonQTOU" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 276 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "closeUi", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "tiaodik", + "_objFlags": 0, + "_parent": { + "__id__": 276 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 282 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 598 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "38J+7t9XZDb4WIhWVq750i" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 281 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7223d387-3ffb-43d0-86c3-acf0d6a744e5" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "86L4gO+JlM/bf6mEXs44/n" + }, + { + "__type__": "cc.Node", + "_name": "shengyin", + "_objFlags": 0, + "_parent": { + "__id__": 276 + }, + "_children": [ + { + "__id__": 284 + }, + { + "__id__": 286 + }, + { + "__id__": 288 + }, + { + "__id__": 290 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 213, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "01N1oAxMtFlatBhgv2WzYs" + }, + { + "__type__": "cc.Node", + "_name": "musci", + "_objFlags": 0, + "_parent": { + "__id__": 283 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 285 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "61RfAR37dGI5zVtfcXavG7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 284 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a689cae2-e997-41ca-a791-c003c38586b8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "453TPzj9lFAJfI67H3x3FM" + }, + { + "__type__": "cc.Node", + "_name": "music", + "_objFlags": 0, + "_parent": { + "__id__": 283 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 287 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "53fDxKBwJMSbGuFjwFMZhh" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 286 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "84b706a7-590e-43d1-ab24-56dd5e124a33" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "a9hNzWp4xAqImydzVwg0GG" + }, + { + "__type__": "cc.Node", + "_name": "font", + "_objFlags": 0, + "_parent": { + "__id__": 283 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 289 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -82.393, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4doxZtcpZIrZCA41SMiMjS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 288 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "575e0ff3-0587-40e3-a606-c5db4df98991" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "f7UVr5raRF/5HTo3KzPhgp" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 283 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 291 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 170 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -22.289, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e2hO1EB8pN7pKUdN8ORvP1" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 290 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 292 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 276 + }, + "_id": "fbUYL866ZFj6Do/76yY5I9" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 276 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickMusic", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "yinyue", + "_objFlags": 0, + "_parent": { + "__id__": 276 + }, + "_children": [ + { + "__id__": 294 + }, + { + "__id__": 296 + }, + { + "__id__": 298 + }, + { + "__id__": 300 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 16, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "71cNsfALdAbJ6TMbqIMEDs" + }, + { + "__type__": "cc.Node", + "_name": "effect", + "_objFlags": 0, + "_parent": { + "__id__": 293 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 295 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b9Z31M2rZM54FWau1g1ZT8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 294 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "008142f8-e125-432c-9573-5408b2d6ea9d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "bfjq1Fa2VHOZgZQWZuOEXX" + }, + { + "__type__": "cc.Node", + "_name": "effect", + "_objFlags": 0, + "_parent": { + "__id__": 293 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 297 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2aCrXDpFlK1Y1LFC/H773f" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 296 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9809b98b-0282-4744-bda8-65c91641a079" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "ebNOH+XrVEHa79CBGqx5bw" + }, + { + "__type__": "cc.Node", + "_name": "font", + "_objFlags": 0, + "_parent": { + "__id__": 293 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 299 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 73, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -82.393, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "93HwhjXtZEq6lLKV34kCBv" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 298 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "26ae80dc-7ee0-4ded-9171-b88f49c2a0a4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "feBIgKuQtF5pWUBQIXgVjQ" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 293 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 301 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 170 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -22.289, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "60KAKXXuxH645DgYRS8bz0" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 300 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 302 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 276 + }, + "_id": "681OMvLClK5L0RCg1Bsb2y" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 276 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickEffect", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "zhendong", + "_objFlags": 0, + "_parent": { + "__id__": 276 + }, + "_children": [ + { + "__id__": 304 + }, + { + "__id__": 306 + }, + { + "__id__": 308 + }, + { + "__id__": 310 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -181, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a8YH618gdGCrUOoZdEgCsJ" + }, + { + "__type__": "cc.Node", + "_name": "vir", + "_objFlags": 0, + "_parent": { + "__id__": 303 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 305 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c5vAS0+N5A67AhLyHe/kRM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 304 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7e24fd1a-b0d3-45f1-92bf-7721db5886bd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "fb9In1Ki5NRJoR+ASxwH6D" + }, + { + "__type__": "cc.Node", + "_name": "vir", + "_objFlags": 0, + "_parent": { + "__id__": 303 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 307 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c9Piiqj/9N7Lv1YMnn4p6T" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 306 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7cf311df-d03d-4804-b9cd-893afbfa6625" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "b4FcAyEHpGjIYB1ndEaO5N" + }, + { + "__type__": "cc.Node", + "_name": "vir", + "_objFlags": 0, + "_parent": { + "__id__": 303 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 309 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 74, + "height": 39 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -82.393, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "2cfWG8IzxHh4I7/JJlyX+A" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 308 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "80d89d9f-4415-4151-b200-8684ad4e94fe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "6cLP2TnU5DW7CA+QvhiObw" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 303 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 311 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 170 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -19.105, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "7cdS6UteZAJobMmc4wzfWI" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 310 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 312 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 276 + }, + "_id": "58hgm6+rpJjLYPHgQN3v19" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 276 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickVibrate", + "customEventData": "" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 276 + }, + "_enabled": false, + "_layoutSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_resize": 0, + "_N$layoutType": 2, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$paddingLeft": 0, + "_N$paddingRight": 0, + "_N$paddingTop": 25, + "_N$paddingBottom": 15, + "_N$spacingX": 0, + "_N$spacingY": 75, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0, + "_N$affectedByScale": false, + "_id": "d74wutOahLy60VTMTqn6zt" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 276 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "50c01dd8-431f-43cc-820e-abb2a859d031" + }, + "_clips": [ + { + "__uuid__": "50c01dd8-431f-43cc-820e-abb2a859d031" + } + ], + "playOnLoad": false, + "_id": "06zhlax2BIgq2BGFohNQeX" + }, + { + "__type__": "19d952d5kVBrLSzAIGeElFK", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 276 + }, + "_enabled": true, + "music": { + "__id__": 283 + }, + "effect": { + "__id__": 293 + }, + "vibrate": { + "__id__": 303 + }, + "exit": null, + "win": null, + "_id": "09T1CBxRNLYrp9d2cfApFS" + }, + { + "__type__": "cc.Node", + "_name": "shezhiBtn", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [ + { + "__id__": 317 + }, + { + "__id__": 319 + } + ], + "_active": true, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 156, + "height": 169 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 409.721, + -686.475, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "76Wbk9IeRB5b52GhEBOcos" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 316 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 318 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "79dlJUnqtIFa5e+Ux+X2cd" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 317 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d5719396-a976-4e2d-86c0-41d770b8edf3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "e0qKlRcFhMmpgZyvQ1ilLf" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 316 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 320 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "188sZ3LItMxJwXXNcssYa7" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 319 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 321 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 316 + }, + "_id": "b1XM9ff/pAJKevRkgrtjgx" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openSet", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": -5.46229728115577e-14, + "_right": 5.46229728115577e-14, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "c0PC2XI+lMQ6d/KjiL/4W1" + }, + { + "__type__": "cc.Node", + "_name": "Rank", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 324 + }, + { + "__id__": 328 + }, + { + "__id__": 330 + }, + { + "__id__": 358 + }, + { + "__id__": 362 + } + ], + "_active": false, + "_components": [ + { + "__id__": 366 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "61wYfy0EFCUohALrmwXwfE" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 323 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 325 + }, + { + "__id__": 326 + }, + { + "__id__": 327 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "23RP1BKI1FSr5macn7PW/Y" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 324 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "bdr41y3jNDepNUIHYN4exc" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 324 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "23XtSWeWpIvbhGDMNxLu3a" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 324 + }, + "_enabled": true, + "_id": "dfDCcIpbVJQaLDWZH9iaPD" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 323 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 329 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1071, + "height": 1257 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1eD/lleOpPV6AdzEGxdnt9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 328 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "42vMNe8FVH9J0iVypgFK4S" + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 323 + }, + "_children": [ + { + "__id__": 331 + }, + { + "__id__": 333 + }, + { + "__id__": 335 + }, + { + "__id__": 337 + }, + { + "__id__": 339 + }, + { + "__id__": 341 + }, + { + "__id__": 343 + }, + { + "__id__": 345 + }, + { + "__id__": 347 + }, + { + "__id__": 349 + }, + { + "__id__": 351 + } + ], + "_active": true, + "_components": [ + { + "__id__": 357 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1071, + "height": 1337 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5bWWPTPWhMvbOJcMi50EIm" + }, + { + "__type__": "cc.Node", + "_name": "paihang1_1_2", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 332 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 835, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 49.415, + 394.209, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e8hVYOqXRNg6OVhdm4WgXE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 331 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "b9WlXDcGdIxI3zgxF+4l5N" + }, + { + "__type__": "cc.Node", + "_name": "paihang1_2_2", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 334 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 835, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 49.415, + 252.023, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6ce2aU4S1GyaDBHrGa7uj6" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 333 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "20cghflZJBuoOYCD00FUAa" + }, + { + "__type__": "cc.Node", + "_name": "paihang1_3_2", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 336 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 835, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 49.415, + 112.348, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "68RPA/xcxMArqQ9vzRSuq1" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 335 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "1fDPCiRVBAEZFsFBeRm7Kb" + }, + { + "__type__": "cc.Node", + "_name": "paihang1_4_2", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 338 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 835, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 49.415, + -161.045, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a5HdWBggNHnKjnk3uogbfS" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 337 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "bfkO+qFVtNfq4m88M+rMGy" + }, + { + "__type__": "cc.Node", + "_name": "paihang1_4_2", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 340 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 835, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 49.415, + -22.277, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eaV0h8L6tPo4M8awdNv0/v" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 339 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "03vZltw29M/amGYDdOSRxW" + }, + { + "__type__": "cc.Node", + "_name": "paihang1_4_2", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 342 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 835, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 49.415, + -299.024, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4ahw2/HSpCO52cbekAv84H" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 341 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "f2G7VqnktHBLalIO4THvrg" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 344 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 142, + "height": 142 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -308.829, + 394.421, + 0, + 0, + 0, + 0, + 1, + 0.08, + 0.08, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "cf06lz2TRO1IKBudOD48+m" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 343 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "46896dd3-d3de-4947-b2dd-eb2b1b69bef1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "57ddDFzQ5Fz6Vq+VPXQJWI" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 346 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -174.463, + 394.26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c9cP2Mc9dIyqlnXDZ9BwFs" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 345 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "大核桃", + "_N$string": "大核桃", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "fcQGPwK3JEg6ho0RJbseea" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 348 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 318.739, + 420.752, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "9bJfv0+I5Eq7gBCF8Yv6VX" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 347 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "关卡", + "_N$string": "关卡", + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "58KTGbJ5ZMsLSu8RTsfyp8" + }, + { + "__type__": "cc.Node", + "_name": "shuzi3_6", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 350 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 30, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 321.039, + 376.342, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "83rn/fV/hAMKeyyb3japCl" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 349 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "a10E7js+ZHSIhJC4GJr0By" + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "_parent": { + "__id__": 330 + }, + "_children": [ + { + "__id__": 352 + } + ], + "_active": true, + "_components": [ + { + "__id__": 354 + }, + { + "__id__": 355 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 4.942, + -499.225, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eadrEk6sZOIaE5o/oMPM2G" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 351 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 353 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 260, + "height": 70 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 9.623, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "38l0IPU2NCWKlBKsJ/KnGz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 352 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "87875d5a-deb6-45cd-925b-49e39ff989af" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "9dhSa3MrJO46nrrONa/3UO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 351 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "826f5bb2-a3cb-48ed-b657-ef6b82964521" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "27LkdUAIFD7IOQxAokS//P" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 351 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 356 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 351 + }, + "_id": "0b4hiJfolDCqERI+qJ8NNt" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "df248lSLllOZpCHwGqQ5Ye3", + "handler": "closeRank", + "customEventData": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 330 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "15yfTjwg5MEbKl3TaNFl1c" + }, + { + "__type__": "cc.Node", + "_name": "logo", + "_objFlags": 0, + "_parent": { + "__id__": 323 + }, + "_children": [ + { + "__id__": 359 + } + ], + "_active": false, + "_components": [ + { + "__id__": 361 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 481, + "height": 170 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 626.902, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8esd0mEOFIWaNXN9D2xErT" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 358 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 360 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 160, + "g": 62, + "b": 62, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 340, + "height": 126 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "35rUAH1RtKLoQtwS3qg9xJ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 359 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "好友排行", + "_N$string": "好友排行", + "_fontSize": 85, + "_lineHeight": 100, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "c0PsT60vBFBKHjp2o7o2b0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 358 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1d1669ce-3fff-424b-ab6b-88996b961cb8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "07hapowtBHo4/A1B2Mi5U3" + }, + { + "__type__": "cc.Node", + "_name": "closeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 323 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 363 + }, + { + "__id__": 364 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 113 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 466.669, + 533.56, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "66KAx2t1xFKKm904xDxkqq" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 362 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "607dfaa7-8d0c-49ec-82a6-91f0e627234c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "3f/ZusRfhKZ6/cjqBRNnjK" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 362 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 365 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 362 + }, + "_id": "aeOKxuEtVBQ76OAxASWQGP" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "closeRank", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 323 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "41oA8zcL5Nz7YfSKc6skzi" + }, + { + "__type__": "cc.Node", + "_name": "Reward", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 368 + }, + { + "__id__": 371 + }, + { + "__id__": 373 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "0cOnEc6s9LMp5+OwPKJd7x" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 369 + }, + { + "__id__": 370 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2600 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a02edN6bdCM7OiSiNJja+2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 368 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "4dP575rwNGEoDCO3LC7FRr" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 368 + }, + "_enabled": true, + "_id": "6eAfAN7PxP8LBtlAPfR/Ia" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 372 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1071, + "height": 1257 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "55YhChG7FP2qHcJ0eapCB2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 371 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "a8V2H7TylLVLLAJk8TDqat" + }, + { + "__type__": "cc.Node", + "_name": "reward", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [ + { + "__id__": 374 + }, + { + "__id__": 378 + } + ], + "_active": true, + "_components": [ + { + "__id__": 384 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1070, + "height": 1336 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "03jXCZORFJG6n9jpa+2OeV" + }, + { + "__type__": "cc.Node", + "_name": "closeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 373 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 375 + }, + { + "__id__": 376 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 113 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 445.224, + 533.087, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "71Sh7fQE1OVaIW2aQDtTss" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 374 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "607dfaa7-8d0c-49ec-82a6-91f0e627234c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "716tE2K45NZZ6ceD6mXDjg" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 374 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 377 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 374 + }, + "_id": "8697ar7LREtafp+rIsxcSE" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "closeReward", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "_parent": { + "__id__": 373 + }, + "_children": [ + { + "__id__": 379 + } + ], + "_active": true, + "_components": [ + { + "__id__": 381 + }, + { + "__id__": 382 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 1.359, + -500.872, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a1VkYOiSNKQ45FN4rUFgET" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 378 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 380 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 261, + "height": 70 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 4.812, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b9BQpX909Dor/ZTS4Smmus" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 379 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e02ea031-71ed-4d9f-8433-0abb136bac4f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "7emaVTKcNIuIh/RRL8DNPo" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 378 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "826f5bb2-a3cb-48ed-b657-ef6b82964521" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "5aKaEJcFxHtLi9DXS6+mUN" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 378 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 383 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 378 + }, + "_id": "a99do5CqxGB7rnced8tB+I" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "df248lSLllOZpCHwGqQ5Ye3", + "handler": "closeReward", + "customEventData": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 373 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "65EEIsZP1OBbQ8kyFfy6rr" + }, + { + "__type__": "cc.Node", + "_name": "Stamina", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 386 + }, + { + "__id__": 390 + }, + { + "__id__": 392 + }, + { + "__id__": 394 + }, + { + "__id__": 398 + } + ], + "_active": false, + "_components": [ + { + "__id__": 404 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1ew+4wfMJOeo20nGbnmfGO" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 385 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 387 + }, + { + "__id__": 388 + }, + { + "__id__": 389 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "81a5sBr89PV6nL0WHpqljz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 386 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "e6VdOa8EtML6geVx5ECmms" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 386 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "c8Ey07ivhNA54yyIJKlqKs" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 386 + }, + "_enabled": true, + "_id": "d3WO2KgvBHxZSuuuiocs4j" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 385 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 391 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1071, + "height": 1257 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e8sKtOSxZL/oe/9fyMlkDe" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 390 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "5fO3j/I3VH/YsubUHr351P" + }, + { + "__type__": "cc.Node", + "_name": "Stamina", + "_objFlags": 0, + "_parent": { + "__id__": 385 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 393 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1071, + "height": 1337 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 43.155, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3c582w9ANLtZgRqZz53cLU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 392 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "07ssE43hdCiYK5gezmefJS" + }, + { + "__type__": "cc.Node", + "_name": "closeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 385 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 395 + }, + { + "__id__": 396 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 113 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 466.877, + 578.752, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d3sOEv4TBFD67GhLjT3VLZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 394 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "607dfaa7-8d0c-49ec-82a6-91f0e627234c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "6c2GdIrntPy74ckLT83XgM" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 394 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 397 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 394 + }, + "_id": "4fx9FNHrVMm7QEtzYiJ4Ca" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "closeStamina", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "_parent": { + "__id__": 385 + }, + "_children": [ + { + "__id__": 399 + } + ], + "_active": true, + "_components": [ + { + "__id__": 401 + }, + { + "__id__": 402 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -456.398, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f3C0D4lFRBn7BC6Jdls9jm" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 398 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 400 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 129, + "height": 68 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "20LcQk4UZGuriI+T9l4PmQ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 399 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b7371a4f-a146-4f64-a09d-c868c67fd772" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "63hEwKxsNBLYUD6cy8HdJV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 398 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "826f5bb2-a3cb-48ed-b657-ef6b82964521" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "55N9/ZDGdAkJbe9IeWB0tw" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 398 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 403 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 398 + }, + "_id": "6f5W0gZq1NG4kBoigH1HP7" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "df248lSLllOZpCHwGqQ5Ye3", + "handler": "closeStamina", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 385 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "63WdDTREFOcb54h263Yju2" + }, + { + "__type__": "cc.Node", + "_name": "Pause", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 406 + }, + { + "__id__": 409 + }, + { + "__id__": 411 + }, + { + "__id__": 417 + }, + { + "__id__": 419 + }, + { + "__id__": 423 + }, + { + "__id__": 425 + }, + { + "__id__": 427 + }, + { + "__id__": 429 + }, + { + "__id__": 431 + }, + { + "__id__": 433 + }, + { + "__id__": 435 + }, + { + "__id__": 439 + }, + { + "__id__": 443 + }, + { + "__id__": 447 + }, + { + "__id__": 449 + }, + { + "__id__": 451 + }, + { + "__id__": 453 + }, + { + "__id__": 455 + } + ], + "_active": false, + "_components": [], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d360XBXNlJRqPOIxU4ufb6" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 407 + }, + { + "__id__": 408 + } + ], + "_prefab": null, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2600 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "32O3hANxpFdogAyHVlqMam" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 406 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "31NGYNLE9IQZc8SbQaKVJN" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 406 + }, + "_enabled": true, + "_id": "22/vLI0+hBZrCrug3svOux" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 410 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1468 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "afivgCSGpDiI/XohThp3CJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 409 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4afcb70-452b-4b1e-b6b6-54b9befc9f58" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "34ox5le71K2L8zTOUjxO+o" + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [ + { + "__id__": 412 + } + ], + "_active": true, + "_components": [ + { + "__id__": 414 + }, + { + "__id__": 415 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 1.359, + -514.258, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "51hcJ2oCpB6701uBYymjqZ" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 411 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 413 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 6, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "91tseQpK1CGILdVwS8FPJz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 412 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "29de91a5-f759-4702-87f9-b5bacba54760" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "41EEa4wApNH7np5p4yqb+K" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 411 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "622e112a-a4a9-4fd6-87be-925670413b83" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "b3vlZ2MtBHOpgiDccwLNC2" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 411 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 416 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 411 + }, + "_id": "b8Y9x+dpZGKKCgiAzSbF2w" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "closePause", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 418 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 149, + "height": 73 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 654.219, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "1cehxDoWdOMZu0VEonZFsc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 417 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d1cb1c61-3ba0-4e4a-a7ec-7734ba8384dd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "7fIbN2jaNGmJkh1RSdpcXS" + }, + { + "__type__": "cc.Node", + "_name": "closeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 420 + }, + { + "__id__": 421 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 113 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 463.348, + 631.918, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "256IUmJHVNm7Mo/g7chxKL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 419 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "607dfaa7-8d0c-49ec-82a6-91f0e627234c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "4c+owACt1E/4ky91M8tcKo" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 419 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 422 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 419 + }, + "_id": "3fEch1YYZH6oMgUJ5+mat/" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "closePause", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "musicOpen", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 424 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 123, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -255.798, + 308.649, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "18Gkbxb1lD9LncTVSPmBYg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 423 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59720082-0ae3-40e8-a5df-234adbf3de87" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "79zmUGOzFEBKv8kA4pz91d" + }, + { + "__type__": "cc.Node", + "_name": "effectOpen", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 426 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 102, + "height": 116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -270.596, + 68, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c3XDwvPkhIjbtzxMVeVRGM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 425 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c008ab0e-d605-4c40-8dca-c05b824eacfc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "baTPCSOjRFpKyBhkaCU99Z" + }, + { + "__type__": "cc.Node", + "_name": "vibrateOpen", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 428 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 136, + "height": 117 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -255.798, + -172, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "13sJXRwGVFh6LviEzSpLLM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 427 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9563609d-e840-4199-aee3-12e6dfeb7302" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "8fi8RPjrRMjJ4CeHTg7bHM" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 430 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 156, + "height": 79 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -50.737, + 308, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5exPBfNGFI+asMq6BQ1DM9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 429 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a0c5b867-9f62-4be7-b26a-b2e3b9bd2e6e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "01tlSnAKNLWbvJ/WB1L5B3" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 432 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 78 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -50.737, + 68, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "dbrEWuxJBBQ6SfOc0wSnx6" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 431 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4d5449a4-b96c-438e-b54a-a85c31286fa3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "d0429B4hFL8oIvo7WVXYbG" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 434 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 157, + "height": 80 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -50.737, + -172, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ffnqpxtrFP25FneS+qz460" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 433 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "05409d05-c235-4e8a-af70-d5f2b73dd11e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "7eI/E8ms9DS6jO3ANiWACC" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 436 + }, + { + "__id__": 437 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + 299.764, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "ad2BRQk+xDGaywEs3fOX6k" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 435 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a688098b-eb7a-4f82-b737-8cd50c9f6d8c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "79E4alC3hJ+b3sDzkNgOQ3" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 435 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 438 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 435 + }, + "_id": "625dakXShD7bgpaU3SIzV2" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 405 + }, + "component": "", + "_componentId": "aca4aut33NCvIC0yg3JmY0h", + "handler": "clickMusic", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 440 + }, + { + "__id__": 441 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + 56.233, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e3ikq4zD5L96VB0ShiKCfk" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 439 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a688098b-eb7a-4f82-b737-8cd50c9f6d8c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "7c9npF5hBFzYEEeddFM/UO" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 439 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 442 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 439 + }, + "_id": "72VsvwUtxAD6Hj+ox2n5Ez" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 405 + }, + "component": "", + "_componentId": "aca4aut33NCvIC0yg3JmY0h", + "handler": "clickEffect", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 444 + }, + { + "__id__": 445 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + -182.765, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "98IrbWMDJKfr7oNbrTnLR9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 443 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a688098b-eb7a-4f82-b737-8cd50c9f6d8c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "59HZHQKg1Ja78NRMCeJeB5" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 443 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 446 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 443 + }, + "_id": "efSi0dlVNIXJRT6hEV1IpJ" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 405 + }, + "component": "", + "_componentId": "aca4aut33NCvIC0yg3JmY0h", + "handler": "clickVibrate", + "customEventData": "" + }, + { + "__type__": "cc.Node", + "_name": "music", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 448 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 278, + 302.061, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "34By56QRxARqWPkwiY4H8w" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 447 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "562063eb-13eb-498c-8e63-d24e8c32d078" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "a5TiDFiCFDh6CC1IRJB0C5" + }, + { + "__type__": "cc.Node", + "_name": "effct", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 450 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 278, + 58.233, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "abFXvJOh9FwYphjZQ5w4Kk" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 449 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "562063eb-13eb-498c-8e63-d24e8c32d078" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "8bULOxBsRMYalxP0bkFA4o" + }, + { + "__type__": "cc.Node", + "_name": "vibrate", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 452 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 278, + -180.765, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "98h4zxkthB5bNDBmbmFdwC" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 451 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "562063eb-13eb-498c-8e63-d24e8c32d078" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "0eNRV2xwdJn5yPu4dkFa81" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 454 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 90, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -353.831, + -639.823, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3dLjvjYxxE/KoZ4igN2kDo" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 453 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "ID:", + "_N$string": "ID:", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "b33beTN75IMIBDMulfV5s7" + }, + { + "__type__": "cc.Node", + "_name": "openID", + "_objFlags": 0, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 456 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 44.327, + -641.195, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "f2lmlgJCRPBqxMpgozy0ju" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 455 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "16Hrdc6YhCHpvmkwsnbApU" + }, + { + "__type__": "cc.Node", + "_name": "onMCReward", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 458 + }, + { + "__id__": 463 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 489 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "18FLmZL7VL1r1/Lb/3JSLD" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 457 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 459 + }, + { + "__id__": 460 + }, + { + "__id__": 461 + } + ], + "_prefab": { + "__id__": 462 + }, + "_opacity": 210, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1180, + "height": 2340 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "94sroCs0pL+orHLUaHcUvV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 458 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "27CtyhENhH64ZHYWe4hXoY" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 458 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 40, + "_left": -50, + "_right": -50, + "_top": -210, + "_bottom": -210, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "c4jhrHVRZOgKYR7RllagEt" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 458 + }, + "_enabled": true, + "_id": "8a0PgqSs9AHZQJoMMHUUAB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "7eXokSdchHgrBaWe10DRsX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mcReward", + "_objFlags": 0, + "_parent": { + "__id__": 457 + }, + "_children": [ + { + "__id__": 464 + }, + { + "__id__": 467 + }, + { + "__id__": 470 + }, + { + "__id__": 473 + }, + { + "__id__": 483 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 488 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "8ayQ7bk0lMH7RIp4T5diRE" + }, + { + "__type__": "cc.Node", + "_name": "lqbg", + "_objFlags": 0, + "_parent": { + "__id__": 463 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 465 + } + ], + "_prefab": { + "__id__": 466 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 914, + "height": 1347 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -14.747, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "723G1svVdMw4zyxg9F8UFY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 464 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "954feb1c-d5fc-4c47-8577-6285e17154d4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "164j83nuNHKr/q8/H24AAb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "b3+SL+Q69Ecr9cZoRnjGVs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 463 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 468 + } + ], + "_prefab": { + "__id__": 469 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 96.811, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "5eIqkekE5NOKgcHk6SfQ1U" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 467 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "24ZOOiPh9Dc4EYOYqpUdib" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "45Q9n7AoNJxJExDAtoxpNm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "coins4", + "_objFlags": 0, + "_parent": { + "__id__": 463 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 471 + } + ], + "_prefab": { + "__id__": 472 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 171, + "height": 191 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -22.21, + 140.391, + 0, + 0, + 0, + 0, + 1, + 1.8, + 1.8, + 1.8 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "a4SpICd3hOnL2NQTlszkaO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 470 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2bd513a-a1ab-44fa-9d02-6ce2b94cfd7a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "6f+fVPYwpOD6QjLqb+G7Jh" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "abX6GpR59L2Ixkg5O291h7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "DaysLeft", + "_objFlags": 0, + "_parent": { + "__id__": 463 + }, + "_children": [ + { + "__id__": 474 + }, + { + "__id__": 477 + }, + { + "__id__": 479 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 482 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -20.005, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6ch4PjtshEzpeMyDKSG8Ym" + }, + { + "__type__": "cc.Node", + "_name": "haisheng", + "_objFlags": 0, + "_parent": { + "__id__": 473 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 475 + } + ], + "_prefab": { + "__id__": 476 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 89, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -89.519, + -383.409, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6bAUvBS6tBjoOFQylPJQK5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 474 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4e289ba-3afd-4838-bf0c-571cadce8db2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "e1aALq05dMl5gd5UQF/y8J" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "b6wf3hdCxDWKcva3qKyYzb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 473 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 478 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 35.857, + -380.699, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "6bDlQAs1FJ4ID4hNFAplWM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "5dr19/uyZL84CnMwV7pzFw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "lqtian", + "_objFlags": 0, + "_parent": { + "__id__": 473 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 480 + } + ], + "_prefab": { + "__id__": 481 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 44, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 97.657, + -386.642, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "b52Eo+eLVNhpJhsPnqINGG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 479 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2b6c09cd-62b2-4b90-8f3f-498e1a7b4c3f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "e9oE+R0LtGFY+Je4h1x/Vl" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "55GzysuSJCCr+P+t+qVlfg", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "429sbdN5xG3bAsZmd2LnBM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "lq", + "_objFlags": 0, + "_parent": { + "__id__": 463 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 484 + }, + { + "__id__": 485 + } + ], + "_prefab": { + "__id__": 487 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 635, + "height": 173 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -545.282, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "e6TWHc195C4oy7ZOgwyfMu" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 483 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8419f8d6-48b4-4ecd-8228-34d620ae0da9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "1bi/Gf665Iob5UNarwKGGt" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 483 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 486 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "15Zec3LtJGV7VLv65CgzqP" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 5 + }, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "onCardReward", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "c5EEvddblPV5i3tqcThBfa", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "cdCj6iBydMHLooCJU2lGg3", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 457 + }, + "asset": { + "__uuid__": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f" + }, + "fileId": "", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "zhuanchang", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 491 + } + ], + "_active": false, + "_components": [ + { + "__id__": 494 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1699.06, + "height": 2937.38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4dk5MkoBVFl4geCGUjwbma" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 490 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 492 + }, + { + "__id__": 493 + } + ], + "_prefab": null, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 2000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "47E0EHcF5PS7feadzO9WgK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 491 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "029GSNO8ZAUbP+l1fq7/aU" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 491 + }, + "_enabled": true, + "_id": "59BOMZmhdPJajqBGyoUDBU" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 490 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "up", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "83fdf834-580f-49fa-ab44-3f234c89d1c2" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "c8qlI72JZCSKV6jXEK7mpe" + }, + { + "__type__": "cc.Node", + "_name": "Loading", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 496 + }, + { + "__id__": 499 + }, + { + "__id__": 501 + } + ], + "_active": false, + "_components": [ + { + "__id__": 503 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "4ePjggj8tN46YqiIA+HRsb" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 495 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 497 + }, + { + "__id__": 498 + } + ], + "_prefab": null, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "d4h9nSj9RMM6HnwFOVyjf1" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 496 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "98Iik4j1ZAqqcF9AyC7FLx" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 496 + }, + "_enabled": true, + "_id": "f7VWpZp11LWprv6A8lnYhR" + }, + { + "__type__": "cc.Node", + "_name": "load", + "_objFlags": 0, + "_parent": { + "__id__": 495 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 500 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 689, + "height": 656 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "eaR6sogyxOcJaWjbE5eSF1" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 499 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "794efc8c-624c-469f-84c0-24ce84022c54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "5cezb/BW9Fw54XLAdLou49" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 495 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 502 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "c1KHBTOahGpJS93C2sB/lp" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 501 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请稍后", + "_N$string": "请稍后", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "88GNsUUo5Mc6gDnzEvAq40" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 495 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "ce9uaZDp9PG6PxkobFhUHt" + }, + { + "__type__": "cc.Canvas", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_designResolution": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_fitWidth": true, + "_fitHeight": false, + "_id": "59Cd0ovbdF4byw5sbjJDx7" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "29zXboiXFBKoIV4PQ2liTe" + }, + { + "__type__": "1dc93b4fehOrpGgTkihBH4g", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "custom": { + "__id__": 22 + }, + "Block_Color": [ + { + "__uuid__": "04e50346-1a72-40e7-84f4-34fc35145f86" + }, + { + "__uuid__": "0320e925-da03-488f-9e62-0018a6fdbb83" + }, + { + "__uuid__": "8f9cd656-30c2-4d3f-88dd-ef00d02b3f3e" + }, + { + "__uuid__": "e29d7af1-7e79-4793-b052-bfeb02003e1b" + }, + { + "__uuid__": "4f97daea-3e76-4e62-b579-e2b6b25bffd2" + }, + { + "__uuid__": "9e768017-b9e7-4003-94dc-2f90936f098f" + } + ], + "liuGuang": null, + "avatarUI": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "level": { + "__id__": 262 + }, + "coin": { + "__id__": 64 + }, + "health": { + "__uuid__": "1cf82c85-a0c6-42f7-8a9d-e7ed164806d2" + }, + "Stamina": { + "__id__": 33 + }, + "setUi": { + "__id__": 276 + }, + "getcard": { + "__id__": 457 + }, + "cardTime": { + "__id__": 477 + }, + "_id": "0dna+7W/NMp6RyIrSQLx5u" + }, + { + "__type__": "cc.Node", + "_name": "Uid", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 508 + }, + { + "__id__": 509 + }, + { + "__id__": 510 + } + ], + "_prefab": null, + "_opacity": 180, + "_color": { + "__type__": "cc.Color", + "r": 184, + "g": 184, + "b": 184, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 23.94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 50.772, + 1894.246, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "21Nnf4GPVCHqI0NNdx6GDw" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 507 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 20, + "_lineHeight": 19.96, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "d4fwmbx0ZMzqfBeHQk0zBv" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 507 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 9, + "_left": 50.772, + "_right": 0, + "_top": 13.783999999999878, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "ce7XDOgWxAkqd9NR85oHSL" + }, + { + "__type__": "7ec7cMdjYVACJZomjSeP6wa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 507 + }, + "_enabled": true, + "uid_Number": { + "__id__": 508 + }, + "_id": "67zCbKKV9PvYlB9x+eob0L" + } +] \ No newline at end of file diff --git a/assets/Scene/HomeScene.fire.meta b/assets/Scene/HomeScene.fire.meta new file mode 100644 index 0000000..19d9b58 --- /dev/null +++ b/assets/Scene/HomeScene.fire.meta @@ -0,0 +1,8 @@ +{ + "ver": "1.3.2", + "uuid": "66281f32-0047-4af8-8237-90c93fc4b0e8", + "importer": "scene", + "asyncLoadAssets": false, + "autoReleaseAssets": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script.meta b/assets/Script.meta new file mode 100644 index 0000000..4474a1c --- /dev/null +++ b/assets/Script.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "4734c20c-0db8-4eb2-92ea-e692f4d70934", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script.zip b/assets/Script.zip new file mode 100644 index 0000000..a3a5e31 Binary files /dev/null and b/assets/Script.zip differ diff --git a/assets/Script.zip.meta b/assets/Script.zip.meta new file mode 100644 index 0000000..b65d34b --- /dev/null +++ b/assets/Script.zip.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "c7c9a4c1-ac19-467e-93dd-3e5e25280820", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Avatar.ts b/assets/Script/Avatar.ts new file mode 100644 index 0000000..23e530e --- /dev/null +++ b/assets/Script/Avatar.ts @@ -0,0 +1,227 @@ +import CollisionDetection from "./CollisionDetection"; +import JiaZai from "./JiaZai"; +import MapConroler from "./Map"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class Avatar extends cc.Component { + + // @property({ + // tooltip: '碰撞形状,None就是无敌,不参与碰撞', + // type: cc.Enum(BlockType), + // // default: BlockType.Nomal, + // displayName: '碰撞形状' + // }) + @property(cc.Node) + content: cc.Node = null; + + @property(cc.Node) + content2: cc.Node = null; + + @property(cc.SpriteAtlas) + ui: cc.SpriteAtlas = null; + + avatar: any; //正在使用中的头像 + + avatarNow: any// 选中的头像 + avatarKuang: any; + + + + + + onLoad() { + } + start() { + } + init() { + this.avatar = cc.fx.GameConfig.GM_INFO.useravatarIcon; + this.avatarKuang = cc.fx.GameConfig.GM_INFO.useravaterkuang; + this.changeBtnState("avatar"); + this.changeAvatar(null, this.avatar); + this.getSelfAvatar(); + } + + getSelfAvatar() { + this.content2.getChildByName(this.avatarKuang).getChildByName("select").active = true; + if (this.avatar.length > 10) { + this.setSelfAvatar(true); + } + else { + this.node.getChildByName("self").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(this.avatar); + } + this.node.getChildByName("self").getChildByName("kuang").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(this.avatarKuang); + cc.fx.GameTool.getUserAvatar((data) => { + if (data == true) { + this.avatar = cc.fx.GameConfig.GM_INFO.useravatar; + this.changeAvatar(null, this.avatar); + this.clickBtn(); + } + this.setSelfAvatar(data); + }) + } + + closeAvatar() { + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + console.log("获取到JiaZai组件", jiazaiComp); + jiazaiComp.closeAvatar(); + + } else { + console.log("无法获取JiaZai组件"); + } + } + + // 切换状态 头像和头像框 + changeState(event, state) { + if (state == 'tou') { + if (this.node.getChildByName("tou").opacity == 255) { + return; + } + else { + this.node.getChildByName("tou").opacity = 255; + this.node.getChildByName("kuang").opacity = 0; + this.node.getChildByName("avatar").active = true; + this.node.getChildByName("avatarKuang").active = false; + this.changeBtnState("avatar"); + } + } + else if (state == 'kuang') { + if (this.node.getChildByName("kuang").opacity == 255) { + return; + } + else { + this.node.getChildByName("tou").opacity = 0; + this.node.getChildByName("kuang").opacity = 255; + this.node.getChildByName("avatar").active = false; + this.node.getChildByName("avatarKuang").active = true; + this.changeBtnState("kuang"); + } + } + } + + // 判断按钮状态,切换按钮状态 + changeBtnState(state) { + if (state == 'avatar') { + if (this.avatar == cc.fx.GameConfig.GM_INFO.useravatarIcon) { + this.node.getChildByName("btn").active = false; + this.node.getChildByName("btnUse").active = true; + } + else { + this.node.getChildByName("btn").active = true; + this.node.getChildByName("btnUse").active = false; + } + } + else if (state == 'kuang') { + if (this.avatarKuang == cc.fx.GameConfig.GM_INFO.useravaterkuang) { + this.node.getChildByName("btn").active = false; + this.node.getChildByName("btnUse").active = true; + } + else { + this.node.getChildByName("btn").active = true; + this.node.getChildByName("btnUse").active = false; + } + } + } + + //改变头像 + changeAvatar(event, avatar) { + this.closeSelectAvatar(); + this.avatar = avatar; + switch (avatar) { + case "icon": + this.avatar = cc.fx.GameConfig.GM_INFO.useravatar; + this.content.children[0].getChildByName("select").active = true; + break; + case "icon_0": + this.content.children[1].getChildByName("select").active = true; + break; + case "icon_1": + this.content.children[2].getChildByName("select").active = true; + break; + case "icon_2": + this.content.children[3].getChildByName("select").active = true; + break; + case "icon_3": + this.content.children[4].getChildByName("select").active = true; + break + default: + if (this.avatar.length > 10) { + this.content.children[0].getChildByName("select").active = true; + } + + break; + } + this.changeBtnState("avatar"); + } + + setSelfAvatar(data) { + let url = cc.fx.GameConfig.GM_INFO.useravatar; + if (url == "") { + return; + } + var self = this; + cc.assetManager.loadRemote(cc.fx.GameConfig.GM_INFO.useravatar, { ext: '.png' }, (err, texture: cc.Texture2D) => { + if (texture) { + if (data == true || this.avatar.length > 10) { + var sprite = self.node.getChildByName("self").getChildByName("icon").getComponent(cc.Sprite); + sprite.spriteFrame = new cc.SpriteFrame(texture); + } + var sprite2 = self.content.children[0].getChildByName("icon").getComponent(cc.Sprite); + sprite2.spriteFrame = new cc.SpriteFrame(texture); + } + }) + } + + //使用 按钮 + clickBtn() { + if (this.node.getChildByName("avatar").active == true) { + cc.fx.GameConfig.GM_INFO.useravatarIcon = this.avatar; + if (cc.fx.GameConfig.GM_INFO.useravatarIcon.length > 10) { + cc.fx.GameConfig.GM_INFO.useravatarIcon = cc.fx.GameConfig.GM_INFO.useravatar; + this.setSelfAvatar(true); + } + else { + this.node.getChildByName("self").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(this.avatar); + } + } + else { + cc.fx.GameConfig.GM_INFO.useravaterkuang = this.avatarKuang; + this.node.getChildByName("self").getChildByName("kuang").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(this.avatarKuang); + } + this.node.getChildByName("btn").active = false; + this.node.getChildByName("btnUse").active = true; + } + + //改变头像框 + changeKuang(event, kuang) { + this.closeSelectKuang(); + this.avatarKuang = kuang; + this.content2.getChildByName(kuang).getChildByName("select").active = true; + this.changeBtnState("kuang"); + } + + closeSelectAvatar() { + for (let i = 0; i < this.content.children.length; i++) { + this.content.children[i].getChildByName("select").active = false; + } + } + + closeSelectKuang() { + for (let i = 0; i < this.content2.children.length; i++) { + this.content2.children[i].getChildByName("select").active = false; + } + } + + + + +} + + diff --git a/assets/Script/Avatar.ts.meta b/assets/Script/Avatar.ts.meta new file mode 100644 index 0000000..e71d472 --- /dev/null +++ b/assets/Script/Avatar.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "7589aa1e-95ba-47b3-9109-4244d3284eb2", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Barrier.ts b/assets/Script/Barrier.ts new file mode 100644 index 0000000..0095155 --- /dev/null +++ b/assets/Script/Barrier.ts @@ -0,0 +1,99 @@ +import CollisionDetection from "./CollisionDetection"; +import MapConroler from "./Map"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class Block extends cc.Component { + + // 新增缓存变量 + private selfBoxColliders: cc.BoxCollider[] = []; + private allBoxColliders: cc.BoxCollider[] = []; + // @property({ + // tooltip: '碰撞形状,None就是无敌,不参与碰撞', + // type: cc.Enum(BlockType), + // // default: BlockType.Nomal, + // displayName: '碰撞形状' + // }) + + + + + // LIFE-CYCLE CALLBACKS: + // @property(cc.SpriteAtlas) + // UI: cc.SpriteAtlas = null; + private initialTouchOffset: cc.Vec2 = null; + private offsetTolerance = 100; // 偏移容忍度; + + allBlocks: any; //所有的方块,用于计算posX,posY消除 + touchPoint: cc.Vec2 = null; //触摸点 + isTouch: boolean = false; //是否触摸 + posX: number = 0; //地图块的X坐标 + posY: number = 0; //地图块的Y坐标 + moveLeft: boolean = true; //是否可以左移; + moveRight: boolean = true; //是否可以右移; + moveUp: boolean = true; //是否可以上移; + moveDown: boolean = true; //是否可以下移; + moveCorner: number = 0; //是否碰撞角落 + moveY: number = 0; //是否可以上下移动; + moveX: number = 0; //是否可以左右移动; + touchPointX: number = 0; //触摸点X坐标; + touchPointY: number = 0; //触摸点Y坐标; + blockId: number = 0; //方块ID; + stacking: cc.Vec2; //叠加方块 + level: number = 0; //叠加方块层数; + pz: boolean = false; + collider: any; + block_Info: any; + _touchListener: any; + relative_Position: cc.Vec2; //点击和方块相对位置 + private _eventManager: any; + hit: cc.Node; + + + + onLoad() { + // this.node.on(cc.Node.EventType.TOUCH_START, this.touchStart, this); + // this.node.on(cc.Node.EventType.TOUCH_MOVE, this.touchMove, this); + // this.node.on(cc.Node.EventType.TOUCH_CANCEL, this.touchEnd, this); + // this.node.on(cc.Node.EventType.TOUCH_END, this.touchEnd, this); + this.pz = false; + this.stacking = cc.v2(0, 0); + // this.selfBoxColliders = this.node.getComponentsInChildren(cc.BoxCollider) + // .filter(collider => collider.tag < 4); + } + + + start() { + + } + + jsonDeepClone(obj: T): T { + return JSON.parse(JSON.stringify(obj)); + } + + init(block_Info, posX, posY, node) { + this.block_Info = this.jsonDeepClone(block_Info); + let mapInfo = MapConroler._instance.mapInfo; + //console.log("block_Info", this.block_Info); + for (let i = 0; i < mapInfo.length; i++) { + let blockRect = mapInfo[i].getBoundingBox(); + // 使用 cc.Intersection.pointInRect 方法判断点是否在矩形范围内 + let point = cc.v2(this.node.position.x - 5, this.node.position.y + 10) + if (blockRect.contains(point)) { + this.posX = mapInfo[i].getComponent("MapBlock").posX; + this.posY = mapInfo[i].getComponent("MapBlock").posY; + this.level = 50 + this.posX - this.posY * 3; + this.node.zIndex = this.level; + this.node.x = mapInfo[i].x + 65; + this.node.y = mapInfo[i].y - 60; + i = 10000; + break; + } + } + + } + +} + + diff --git a/assets/Script/Barrier.ts.meta b/assets/Script/Barrier.ts.meta new file mode 100644 index 0000000..0775a99 --- /dev/null +++ b/assets/Script/Barrier.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "90c37607-5145-4fb1-8d26-94d9a89baeee", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Block.ts b/assets/Script/Block.ts new file mode 100644 index 0000000..75da0d1 --- /dev/null +++ b/assets/Script/Block.ts @@ -0,0 +1,1926 @@ +import CollisionDetection from "./CollisionDetection"; +import { LQCollideSystem } from "./lq_collide_system/lq_collide_system"; +import MapConroler from "./Map"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + +const { ccclass, property } = cc._decorator; +export enum BlockType { + /*普通地块 */ + "普通块" = 0, + /*起点地块 */ + "叠加块下" = 1, + /*湿地 */ + "钥匙块" = 2, + /*山峰 */ + "上锁块" = 3, + /*终点地块 */ + "冻结块" = 4, + /*息壤 */ + "星星块" = 5, + /*加固 */ + "炸弹块" = 6, + /*加固 */ + "水平块" = 7, + /*加固 */ + "垂直块" = 8, + /*加固 */ + "粘合块" = 9, + /*加固 */ + "叠加块上" = 10, + /*障碍块 */ + "障碍块" = 11, + +} + +export enum BlockColor { + + /*起点地块 */ + "紫色" = 0, + /*湿地 */ + "黄色" = 1, + /*山峰 */ + "绿色" = 2, + /*终点地块 */ + "蓝色" = 3, + /*息壤 */ + "粉色" = 4, + /*加固 */ + "橘黄色" = 5, + /*加固 */ + "青色" = 6, + /*加固 */ + "白色" = 7, + /*加固 */ + "红色" = 8, + /*加固 */ + "灰色" = 9, + /*障碍块 */ + "无色" = 10, + /*障碍块 */ + "暗灰色" = 11, +} + +export enum PathType { + err = "err", + up = "up", + down = "down", + left = "left", + right = "right", + up_left = "up_left", + up_right = "up_right", + down_left = "down_left", + down_right = "down_right", + left_up = "left_up", + left_down = "left_down", + right_up = "right_up", + right_down = "right_down", +} +@ccclass +export default class Block extends cc.Component { + + // 新增缓存变量 + private moveInterval = 0; // 约 60 FPS + private lastMoveTime = 0; // 上下两个值来调节跟手,一个是时间轴,一个是距离轴 + private maxSpeed = 300; // 最大移动距离 + + // private otherCollider: cc.Collider = null; + // @property({ + // tooltip: '碰撞形状,None就是无敌,不参与碰撞', + // type: cc.Enum(BlockType), + // // default: BlockType.Nomal, + // displayName: '碰撞形状' + // }) + + @property({ + tooltip: '碰撞形状,None就是无敌,不参与碰撞', + type: cc.Enum(BlockType), + }) + type: BlockType = BlockType.普通块; + + @property({ + tooltip: '碰撞形状,None就是无敌,不参与碰撞', + type: cc.Enum(BlockColor), + }) + color: BlockColor = BlockColor.紫色; + + @property({ + tooltip: '横向长度', + type: cc.Integer, + }) + heng: Number = 1; + + @property({ + tooltip: '竖向长度', + type: cc.Integer, + }) + shu: Number = 1; + + @property(cc.SpriteAtlas) + ice_SpriteFrame: cc.SpriteAtlas = null; + + @property(sp.SkeletonData) + magic_SkeletonData: sp.SkeletonData = null; + + // LIFE-CYCLE CALLBACKS: + // @property(cc.SpriteAtlas) + // UI: cc.SpriteAtlas = null; + private initialTouchOffset: cc.Vec2 = null; + private offsetTolerance = 100; // 偏移容忍度; + + allBlocks: any; //所有的方块,用于计算posX,posY消除 + touchPoint: cc.Vec2 = null; //触摸点 + isTouch: boolean = false; //是否触摸 + posX: number = 0; //地图块的X坐标 + posY: number = 0; //地图块的Y坐标 + moveLeft: boolean = true; //是否可以左移; + moveRight: boolean = true; //是否可以右移; + moveUp: boolean = true; //是否可以上移; + moveDown: boolean = true; //是否可以下移; + moveCorner: number = 0; //是否碰撞角落 + moveY: number = 0; //是否可以上下移动; + moveX: number = 0; //是否可以左右移动; + touchPointX: number = 0; //触摸点X坐标; + touchPointY: number = 0; //触摸点Y坐标; + blockId: number = 0; //方块ID; + stacking: cc.Vec2; //叠加方块 + adhesive: cc.Vec2; //粘合方块 + level: number = 0; //叠加方块层数; + pz: boolean = false; + over: boolean = false; //方块是否失效已消失 + collider: any; + block_Info: any; + _touchListener: any; + relative_Position: cc.Vec2; //点击和方块相对位置 + private _eventManager: any; + hit: cc.Node; + otherCollider: any; + moveStack: boolean; + touchDelta: cc.Vec2 = cc.v2(0, 0); + adhesiveNode: any; + checkCollision: boolean = false; + //计时器 + private scheduleCallback: any = null; + private scheduleCallback2: any = null; + private scheduleCallback3: any = null; + isEliminatedByHammer: boolean = false; // 标记是否被锤子消除过 + + onLoad() { + this.pz = false; + this.stacking = cc.v2(0, 0); + this.adhesive = cc.v2(0, 0); + this.adhesiveNode = []; + this.collider = this.node.getComponent(cc.PolygonCollider); + this.over = false; + this.checkCollision = false; + } + + + start() { + + } + + jsonDeepClone(obj: T): T { + return JSON.parse(JSON.stringify(obj)); + } + //createAd 为是否创建粘合快图片 + init(block_Info, posX, posY, node, createAd) { + if (block_Info.floor) { + console.log("floor:", block_Info.floor) + } + if (block_Info.floorTime) { + console.log("floorTime:", block_Info.floorTime) + } + this.block_Info = this.jsonDeepClone(block_Info); + if (node) this.block_Info.node = node; + this.type = block_Info.type; + this.color = block_Info.color; + this.blockId = block_Info.id; + //console.log("方块类型",this.type,"方块颜色",this.color,"方块ID",this.blockId); + // if(posX&&posY){ + // this.posX = posX; + // this.posY = posY; + // } + + // console.log("方块层级",this.node.zIndex); + this.initColor(); + this.initType(); + this.initBlocks(); + if (this.type != BlockType.叠加块上) { + this.node.on(cc.Node.EventType.TOUCH_START, this.touchStart, this); + this.node.on(cc.Node.EventType.TOUCH_MOVE, this.touchMove, this); + this.node.on(cc.Node.EventType.TOUCH_CANCEL, this.touchEnd, this); + this.node.on(cc.Node.EventType.TOUCH_END, this.touchEnd, this); + this.node['_touchListener'].setSwallowTouches(false); + setTimeout(() => { + if (this.type == BlockType.粘合块) { + // 计算位置偏移 + const posOffset = cc.v2( + this.node.x - this.block_Info.node.x, + this.node.y - this.block_Info.node.y + ); + if (createAd) { + if (this.node.zIndex >= this.block_Info.node.zIndex) + this.createAdhesive(); + else + this.block_Info.node.getComponent("Block").createAdhesive(); + } + const targetNames = ['top', 'down', 'left', 'right']; + this.block_Info.node.children.forEach(child => { + if (child instanceof cc.Node && targetNames.includes(child.name) && child.getComponent("lq_collide").data_string != "-1") { + const clonedChild = cc.instantiate(child); + clonedChild.getComponent("lq_collide").data_string = "-1"; + clonedChild.parent = this.node; + // 获取子节点相对于父节点的位置 + const relativePos = child.getPosition(); + // 调整子节点位置以保证相对位置不变 + clonedChild.setPosition( + relativePos.x - posOffset.x, + relativePos.y - posOffset.y + ); + } + }); + + this.adhesive = posOffset; + } + }, 100); + + + + let mapInfo = MapConroler._instance.mapInfo; + for (let i = 0; i < mapInfo.length; i++) { + let blockRect = mapInfo[i].getBoundingBox(); + // 使用 cc.Intersection.pointInRect 方法判断点是否在矩形范围内 + let point = cc.v2(this.node.position.x - 5, this.node.position.y + 10) + if (blockRect.contains(point)) { + this.posX = mapInfo[i].getComponent("MapBlock").posX; + this.posY = mapInfo[i].getComponent("MapBlock").posY; + this.setMapBlock(); + this.level = 50 + this.posX - this.posY * 3; + this.node.zIndex = this.level; + this.node.x = mapInfo[i].x + 65; + this.node.y = mapInfo[i].y - 60; + i = 10000; + this.hit = new cc.Node(); + this.hit.addComponent(cc.Sprite); + this.hit.parent = this.node; + let name = "xz_" + this.block_Info.block; + this.hit.getComponent(cc.Sprite).spriteFrame = this.ice_SpriteFrame._spriteFrames[name]; + this.hit.setAnchorPoint(this.node.anchorX, this.node.anchorY); + this.setHitPosition(); + // if(this.hit.anchorX == 0.5) this.hit.setPosition(0,-11); + // else if(this.hit.anchorX == 0.33) this.hit.setPosition(-13,-11); + // else if(this.hit.anchorX == 0.66) this.hit.setPosition(2,-9); + // this.hit.opacity = 0; + this.hit.active = false; + break; + } + } + } + + if (block_Info.floor && block_Info.floorTime) { + this.setFloor(); + } + } + + + //初始化方块类型 + initType() { + let posConfig = cc.fx.GameConfig.PROP_INFO[this.block_Info.block]; + + switch (this.type) { + case BlockType.炸弹块: + let boom = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); + boom.parent = this.node; + boom.setPosition(posConfig.pos1.x, posConfig.pos1.y); + if (this.block_Info?.boomTime) + boom.getComponent("Boom").init(this.block_Info.boomTime); + break; + case BlockType.星星块: + let star = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); + star.anchorX = this.node.anchorX; + star.anchorY = this.node.anchorY; + star.getComponent(cc.Sprite).spriteFrame = star.getComponent("Star").star_SpriteFrame.getSpriteFrame("star_" + this.block_Info.block); + star.parent = this.node; + star.setPosition(posConfig.pos4.x - 10, posConfig.pos4.y); + case BlockType.钥匙块: + let key = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); + key.parent = this.node; + key.setPosition(posConfig.pos1.x, posConfig.pos1.y); + break; + case BlockType.上锁块: + let lock = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); + lock.parent = this.node; + lock.setPosition(posConfig.pos1.x, posConfig.pos1.y); + lock.getComponent("Lock").init(this.block_Info.lockTime); + break; + case BlockType.冻结块: + let freeze = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); + freeze.parent = this.node; + let name = "ice_" + this.block_Info.block; + let spriteFrame = this.ice_SpriteFrame._spriteFrames[name]; + freeze.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + let freezeX = posConfig.pos6.x - (this.node.width * (this.node.anchorX - 0.5)); let freezeY = posConfig.pos6.y + this.node.height / 2; + if (this.block_Info.block == 2) { + freeze.setPosition(freezeX + 4, freezeY - 10); + } + else freeze.setPosition(freezeX, freezeY); + freeze.getComponent("Freeze").init(this.block_Info.freezeTime); + freeze.getChildByName("time").setPosition(posConfig.pos5.x - 10 - freezeX, posConfig.pos5.y - 2 - freezeY); + break; + case BlockType.水平块: + let horizontal = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); + horizontal.parent = this.node; + let heng = "heng" + this.heng; + horizontal.getChildByName(heng).active = true; + horizontal.setPosition(posConfig.pos2.x - 3, posConfig.pos2.y); + break; + case BlockType.垂直块: + let vertical = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); + vertical.parent = this.node; + let shu = "shu" + this.shu; + vertical.getChildByName(shu).active = true; + vertical.setPosition(posConfig.pos3.x, posConfig.pos3.y); + break; + case BlockType.叠加块上: + this.moveStack = false; + this.node.off(cc.Node.EventType.TOUCH_START); + this.node.off(cc.Node.EventType.TOUCH_MOVE); + this.node.off(cc.Node.EventType.TOUCH_CANCEL); + this.node.off(cc.Node.EventType.TOUCH_END); + // this.selfBoxColliders = []; + this.node.zIndex = 201; + let pos = this.getStackingPos(); + this.node.setPosition(this.node.x + pos.x, this.node.y + pos.y); + this.stacking = cc.v2(this.node.x - this.block_Info.node.x, this.node.y - this.block_Info.node.y); + this.block_Info.node.getComponent("Block").block_Info.node = this.node; + this.node.scaleX *= 0.7; + this.node.scaleY *= 0.7; + for (let i = 0; i < this.node.children.length; i++) { + if (this.node.children[i].name == "left" || this.node.children[i].name == "right" || this.node.children[i].name == "top" || this.node.children[i].name == "down") + this.node.children[i].active = false; + } + break; + } + } + + //初始化方块颜色 + initColor() { + let name = this.color + "color" + this.block_Info.block; + let number = Math.floor((this.color - 1) / 2); + //特殊方块,可移动不可消除类型 + if (this.color == 11) { + name = "0color" + this.block_Info.block; + number = 5; + } + let blockSpriteFrame = MapConroler._instance.Block_Color[number]._spriteFrames; + var spriteFrame = blockSpriteFrame[name]; + // if(this.type == BlockType.冻结块){ + // name = "ice_"+this.block_Info.block; + // spriteFrame = this.ice_SpriteFrame._spriteFrames[name]; + // } + this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + } + + //创建粘合快连接处 + createAdhesive() { + let box = []; + for (let i = 0; i < this.allBlocks.length; i++) { + box.push(cc.v2(this.allBlocks[i].x + this.posX, this.allBlocks[i].y + this.posY)); + } + let otherBox = []; + for (let i = 0; i < this.block_Info.node.getComponent("Block").allBlocks.length; i++) { + otherBox.push(cc.v2(this.block_Info.node.getComponent("Block").allBlocks[i].x + this.block_Info.node.getComponent("Block").posX, this.block_Info.node.getComponent("Block").allBlocks[i].y + this.block_Info.node.getComponent("Block").posY)); + } + + for (let k = 0; k < box.length; k++) { + for (let j = 0; j < otherBox.length; j++) { + if ((box[k].x == otherBox[j].x + 1 || box[k].x == otherBox[j].x - 1) && (box[k].y == otherBox[j].y)) { + //在X轴 相邻 + let left = box[k].x == otherBox[j].x + 1 ? "left" : "right"; + this.addAdhesive(left, box[k]); + otherBox.splice(j, 1); + j--; // 调整索引 + if (j < 0) break; + } + if ((box[k].y == otherBox[j].y + 1 || box[k].y == otherBox[j].y - 1) && (box[k].x == otherBox[j].x)) { + //在Y轴 相邻 + let down = box[k].y == otherBox[j].y + 1 ? "down" : "up"; + this.addAdhesive(down, box[k]); + otherBox.splice(j, 1); + j--; // 调整索引 + if (j < 0) break; + } + } + } + // let adhesive = cc.instantiate(MapConroler._instance.Block_Prop[this.type]); + } + + //具体添加粘合快锁链方法 + addAdhesive(diraction, box) { + let pos = cc.v2(box.x - this.posX, box.y - this.posY); + let adhesive = cc.instantiate(MapConroler._instance.Block_Prop[10]); + adhesive.parent = this.node.parent.getChildByName("Adhesive"); + // adhesive.parent = this.node.getChildByName("adhesive"); + adhesive.setPosition(120 * pos.x - 65 + this.node.x, 120 * pos.y + 60 + this.node.y); + if (diraction == "left" || diraction == "right") { + adhesive.getChildByName("heng").active = true; + adhesive.getChildByName("heng").x = -60; + if (diraction == "right") adhesive.getChildByName("heng").x = 60; + adhesive.getChildByName("heng").x += 9; + adhesive.getChildByName("heng").y += 7; + } + else { + adhesive.getChildByName("shu").active = true; + adhesive.getChildByName("shu").y = -60; + if (diraction == "up") adhesive.getChildByName("shu").y = 60; + } + adhesive.getComponent("Adhesive").init(this.node); + this.adhesiveNode.push(adhesive); + } + + removeAdhesive(action) { + if (this.adhesiveNode.length > 0) { + for (let i = 0; i < this.adhesiveNode.length; i++) { + let adhesive = this.adhesiveNode[i]; + // if (action == true) + // adhesive.getComponent("Adhesive").remove(); + // else adhesive.destroy(); + adhesive.getComponent("Adhesive").remove(); + } + } + } + + //方块落点 + blockFall(point, type) { + if (this.over == true) return; + // // 假设 MapConroler 有网格信息,这里简单示例 + const mapWidth = MapConroler._instance.mapWidth; + const mapHeight = MapConroler._instance.mapHeight; + const cellSize = 120; // 每个格子的大小,根据实际情况调整 + + // 计算点所在的网格坐标 + const gridX = Math.floor((point.x + (mapWidth * cellSize / 2)) / cellSize); + const gridY = Math.floor((point.y + (mapHeight * cellSize / 2)) / cellSize); + + // 检查网格坐标是否越界 + if (gridX >= 0 && gridX < mapWidth && gridY >= 0 && gridY < mapHeight) { + const mapBlock = MapConroler._instance.mapBlocksWall[gridX][gridY]; + const blockRect = mapBlock.getBoundingBox(); + + // 使用 cc.Intersection.pointInRect 方法判断点是否在矩形范围内 + if (blockRect.contains(point)) { + //寻找落点 + this.removeMapBlock(); + this.posX = mapBlock.getComponent("MapBlock").posX; + this.posY = mapBlock.getComponent("MapBlock").posY; + this.setMapBlock(); + this.level = 50 + this.posX - this.posY * 3; + this.node.zIndex = this.level; + //console.log("方块层级", this.node.zIndex); + this.node.x = mapBlock.x + 65; + this.node.y = mapBlock.y - 60; + + if (this.type == 9) { + if (this.block_Info.node) { + this.block_Info.node.x = this.node.x - this.adhesive.x; + this.block_Info.node.y = this.node.y - this.adhesive.y; + } + } + else if (this.type == 1) { + this.block_Info.node.getComponent("Block").moveStack = false; + this.block_Info.node.x = this.node.x + this.block_Info.node.getComponent("Block").stacking.x; + this.block_Info.node.y = this.node.y + this.block_Info.node.getComponent("Block").stacking.y; + } + } + } + + let jg = MapConroler._instance.checkPass(this.node, this.allBlocks); + + if (jg >= 0) { + // MapConroler._instance.changeRevolvingWall(); + this.over = true; + this.removeBoxCollider(); + this.removeMapBlock(); + this.removeAction(jg, type); + } + else { + MapConroler._instance.upDoor(this.color); + this.setVibrate("medium", 1) + //@ts-ignore + } + + } + //移除方块碰撞 + removeBoxCollider() { + for (let i = 0; i < this.node.children.length; i++) { + if (this.node.children[i].name == "left" || this.node.children[i].name == "right" || this.node.children[i].name == "top" || this.node.children[i].name == "down" + || this.node.children[i].name == "tan_up_right" || this.node.children[i].name == "tan_up_left" || this.node.children[i].name == "tan_down_right" || this.node.children[i].name == "tan_down_left" + ) + this.node.children[i].destroy(); + } + } + //移除方块动画 + removeAction(diraction, type) { + this.node.off(cc.Node.EventType.TOUCH_START); + this.node.off(cc.Node.EventType.TOUCH_MOVE); + this.node.off(cc.Node.EventType.TOUCH_CANCEL); + this.node.off(cc.Node.EventType.TOUCH_END); + if (diraction == 2 || diraction == 3) { + // 获取当前节点的宽度和高度 + const currentWidth = this.node.width; + const currentHeight = this.node.height; + // 假设将高度增加 50,你可以根据需求修改这个值 + const newHeight = currentHeight + 50; + // 设置新的节点尺寸 + this.node.setContentSize(currentWidth, newHeight); + } + else if (diraction == 0 || diraction == 1) { + // 获取当前节点的宽度和高度 + const currentWidth = this.node.width; + const currentHeight = this.node.height; + // 假设将高度增加 50,你可以根据需求修改这个值 + const newWidth = currentWidth + 50; + // 设置新的节点尺寸 + this.node.setContentSize(newWidth, currentHeight); + } + this.node.addComponent(cc.Mask); + let self = this; + let pos = this.node.getPosition(); + if (this.type == BlockType.叠加块下) { + let scaleX = this.node.scaleX; + let scaleY = this.node.scaleY; + this.block_Info.node.getComponent("Block").restoreNomal(this.posX, this.posY, true); + cc.tween(this.block_Info.node) + .to(0.3, { position: pos, scaleX: scaleX > 0 ? 1 : -1, scaleY: scaleY > 0 ? 1 : -1 }) + .start(); + } + else if (this.type == BlockType.粘合块) { + this.removeAdhesive(true); + this.block_Info.node.getComponent("Block").removeAdhesive(true); + this.block_Info.node.getComponent("Block").restoreNomal(this.block_Info.node.getComponent("Block").posX, + this.block_Info.node.getComponent("Block").posY, false); + this.block_Info.node = null; + } + else if (this.type == BlockType.炸弹块) { + this.node.getChildByName("boom").getComponent("Boom").destroyBoom(false); + } + + + let time = 0.33; + // this.node.zIndex = 0; + let width = Math.floor(this.node.width / 120); + let height = Math.floor(this.node.height / 120); + + + setTimeout(() => { + cc.fx.AudioManager._instance.playEffect("xiaochu", null); + }, 300); + this.setVibrate("light", 3) + + if (diraction == 0) { + time = 0.33 * height; + // time = 0.99; + for (let i = 0; i < this.node.children.length; i++) { + cc.tween(this.node.children[i]) + .to(time, { y: this.node.children[i].y + this.node.children[0].height }) + .start(); + } + } + else if (diraction == 1) { + time = 0.33 * height; + // time = 0.99 + for (let i = 0; i < this.node.children.length; i++) { + cc.tween(this.node.children[i]) + .to(time, { y: this.node.children[i].y - this.node.children[0].height }) + .start(); + } + } + else if (diraction == 2) { + time = 0.33 * width; + // time = 0.99 + for (let i = 0; i < this.node.children.length; i++) { + cc.tween(this.node.children[i]) + .to(time, { x: this.node.children[i].x - this.node.children[0].width }) + .start(); + } + } + else if (diraction == 3) { + time = 0.33 * width + // time = 0.99 + for (let i = 0; i < this.node.children.length; i++) { + cc.tween(this.node.children[i]) + .to(time, { x: this.node.children[i].x + this.node.children[0].width }) + .start(); + } + } + + MapConroler._instance.judgeWin(0); + + setTimeout(() => { + let tempColor = this.color; + setTimeout(() => { + MapConroler._instance.upDoor(tempColor); + }, 250); + + MapConroler._instance.nextLevel(1); + this.node.active = false; + this.node.removeFromParent(); + setTimeout(() => { + if (MapConroler._instance.blockNum != 0 && (MapConroler._instance.openWall.length > 0 || + MapConroler._instance.revolving_state != 0) + && !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) { + let gameover = MapConroler._instance.predict_End(); + if (gameover == false) { + if (MapConroler._instance.revolving_state == 0) + MapConroler._instance.failLevel("lock"); + else + MapConroler._instance.failLevel("rotate"); + } + } + }, 500); + + // this.node.active = false; + // this.node.removeFromParent(); + }, time * 1000); + + } + + touchStart(event) { + if (this.over || MapConroler._instance.gameOver) return; + // 返回世界坐标 + let touchLoc = event.getLocation(); + // https://docs.cocos.com/creator/api/zh/classes/Intersection.html 检测辅助类 + // let pos = this.collider.world.points + + if (!this.collider.world) { + return; + } + if (this.block_Info.floor) { + return; + } + // 判断触摸点是否在多边形内 + if (cc.Intersection.pointInPolygon(touchLoc, this.collider.world.points)) { + if (MapConroler._instance.hammer) { + // if (this.color == 11) { + // MiniGameSdk.API.showToast("不能消除障碍块"); + // MapConroler._instance.hammerMask.active = false; + // MapConroler._instance.hammer = false; + // MapConroler._instance.ishammer = false; + // let hammerBtn = MapConroler._instance.node.parent.getChildByName("Bottom").getChildByName("destroyBtn"); + // hammerBtn.getComponent("btnControl").setTouch(true); + // return; + // } + this.eliminate2(); + this.isTouch = false; + MapConroler._instance.hammerMask.active = false; + MapConroler._instance.node.parent.getChildByName("Bottom").getChildByName("destroyBtn").getComponent("btnControl").setTouch(true); + MapConroler._instance.costHammer(); + MapConroler._instance.usePause(); + return false; + } + if (this.type != BlockType.上锁块 && this.type != BlockType.冻结块) { + MapConroler._instance.startUpdate(); + cc.fx.AudioManager._instance.playEffect("hit", null); + this.node.zIndex = 200; + if (this.type == 9) { + if (this.block_Info.node) { + this.block_Info.node.zIndex = 200; + this.block_Info.node.getComponent("Block").hit.active = true; + // this.block_Info.node.getComponent("Block").isTouch = true; + MapConroler._instance.downDoor(this.block_Info.node.getComponent("Block").color, this.block_Info.node.getComponent("Block").type); + MapConroler._instance.changeRiseFall(this.block_Info.node.getComponent("Block").color, true); + } + } + else if (this.type == 1) { + this.block_Info.node.getComponent("Block").moveStack = true; + } + + let touchPoint = event.getLocation(); + let local = this.node.parent.convertToNodeSpaceAR(touchPoint); + this.touchPointX = local.x; + this.touchPointY = local.y; + this.moveLeft = this.moveRight = this.moveUp = this.moveDown = true; + this.isTouch = true; + this.moveCorner = 0; + this.relative_Position = cc.v2(this.node.x - local.x, this.node.y - local.y); + MapConroler._instance.changeRiseFall(this.color, true); + MapConroler._instance.downDoor(this.color, this.type); + this.setVibrate("light", 1) + if (this.hit) this.hit.active = true; + return true; + } + else { + this.isTouch = false; + return false; + } + } + else { + this.isTouch = false; + return false; + } + + } + + touchEnd(event) { + if (MapConroler._instance.gameOver) return; + if (this.isTouch) { + this.touchDelta = cc.v2(0, 0); + this.checkCollision = false; + MapConroler._instance.changeRiseFall(this.color, false); + cc.fx.AudioManager._instance.playEffect("down", null); + MapConroler._instance.removeOneBlock(); + this.isTouch = false; + this.node.zIndex = this.level; + this.hit.active = false; + if (this.type == 9) { + if (this.block_Info.node) { + this.block_Info.node.getComponent("Block").hit.active = false; + } + } + + this.touchPoint = event.getLocation(); + let local = cc.v2(this.node.x - 50, this.node.y + 50); + if (this.type != 10) { + //@ts-ignore + this.blockFall(local, true); + if (this.type == 9) { + if (this.block_Info.node) { + let localTemp = cc.v2(this.block_Info.node.x - 50, this.block_Info.node.y + 50); + this.block_Info.node.getComponent("Block").blockFall(localTemp, false); + } + } + } + this.moveLeft = this.moveRight = this.moveUp = this.moveDown = true; + } + + + } + + touchMove(event: cc.Event.EventTouch) { + if (MapConroler._instance.gameOver) return; + + if (this.isTouch) { + const delta = event.getDelta(); + const touchPoint = event.getLocation(); + const local = this.node.parent.convertToNodeSpaceAR(touchPoint); + this.touchPointX = local.x; + this.touchPointY = local.y; + delta.x = this.touchPointX - this.node.x + this.relative_Position.x; + delta.y = this.touchPointY - this.node.y + this.relative_Position.y; + + // 限制移动速度 + this.touchPointX = local.x; + this.touchPointY = local.y; + delta.x = this.touchPointX - this.node.x + this.relative_Position.x; + delta.y = this.touchPointY - this.node.y + this.relative_Position.y; + + // 限制移动速度 + delta.x = Math.max(-this.maxSpeed, Math.min(this.maxSpeed, delta.x)); + delta.y = Math.max(-this.maxSpeed, Math.min(this.maxSpeed, delta.y)); + + // 记录触摸移动的增量 + this.touchDelta = delta; + } + } + + //超出限制判断 + exceeds(stepx, stepy) { + + } + //道具魔棒消除 + eliminate(type) { + + clearTimeout(this.scheduleCallback2); + clearTimeout(this.scheduleCallback); + clearTimeout(this.scheduleCallback3); + let self = this; + //锤子状态消失 + MapConroler._instance.pause = true; + + if (MapConroler._instance.ismagic) { + this.scheduleCallback = setTimeout(() => { + this.createLabelsForBlocksWithCustomDelay(0.2) + if (this.type == BlockType.冻结块) { + this.node.getChildByName("freeze").getComponent("Freeze").reduce(2); + MapConroler._instance.ismagic = false; + return; + } + else if (this.type == BlockType.上锁块) { + MapConroler._instance.ismagic = false; + this.node.getChildByName("lock").getComponent("Lock").reduce(); + return; + } + for (let i = 0; i < this.node.children.length; i++) { + if (this.node.children[i].name == "floor") { + this.node.children[i].getComponent("Floor").reduce(1); + } + } + }, 800); + } + + if (this.type == BlockType.冻结块 && (!MapConroler._instance.ishammer && !MapConroler._instance.ismagic)) { + this.node.getChildByName("freeze").getComponent("Freeze").reduce(2); + return; + } + else if (this.type == BlockType.上锁块 && (!MapConroler._instance.ishammer && !MapConroler._instance.ismagic)) { + this.node.getChildByName("lock").getComponent("Lock").reduce(); + return; + } + + if (self.type == BlockType.粘合块) { + self.removeAdhesive(false); + self.block_Info.node.getComponent("Block").removeAdhesive(false); + self.block_Info.node.getComponent("Block").restoreNomal(self.block_Info.node.getComponent("Block").posX, + self.block_Info.node.getComponent("Block").posY, false); + } + else if (self.type == BlockType.炸弹块) { + this.node.getChildByName("boom").getComponent("Boom").stopBoom(); + } + this.scheduleCallback2 = setTimeout(() => { + MapConroler._instance.blockNum -= 1; + MapConroler._instance.special_Treatment(this.node, type); + + }, 950); + this.scheduleCallback2 = setTimeout(() => { + //如果方块可以消除 + // MapConroler._instance.blockNum -= 1; + // MapConroler._instance.special_Treatment(this.node); + var self = this; + this.removeMapBlock(); + MapConroler._instance.judgeWin(1); + let pos = this.node.getPosition(); + if (self.type == BlockType.叠加块下) { + let scaleX = self.node.scaleX; + let scaleY = self.node.scaleY; + self.block_Info.node.getComponent("Block").restoreNomal(this.posX, this.posY, true); + cc.tween(self.block_Info.node) + .to(0.1, { position: pos, scaleX: scaleX > 0 ? 1 : -1, scaleY: scaleY > 0 ? 1 : -1 }) + .start(); + } + else if (self.type == BlockType.炸弹块) { + this.node.getChildByName("boom").getComponent("Boom").destroyBoom(false); + } + + MapConroler._instance.nextLevel(0); + this.node.active = false; + this.node.removeFromParent(); + setTimeout(() => { + if (MapConroler._instance.blockNum != 0 && (MapConroler._instance.openWall.length > 0 || + MapConroler._instance.revolving_state != 0) + && !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) { + let gameover = MapConroler._instance.predict_End(); + if (gameover == false) { + if (MapConroler._instance.revolving_state == 0) + MapConroler._instance.failLevel("lock"); + else + MapConroler._instance.failLevel("rotate"); + } + } + }, 900); + MapConroler._instance.ismagic = false; + + }, 1350); + + } + + //道具锤子消除 + eliminate2() { + clearTimeout(this.scheduleCallback2); + let self = this; + this.isEliminatedByHammer = true; + //锤子状态消失 + MapConroler._instance.pause = true; + if (MapConroler._instance.ishammer == true) { + let parentSize = this.node.getContentSize(); + + let pos = cc.v3(0, 0, 0) + if (this.node.anchorX == 1) { + pos = cc.v3(this.node.position.x - parentSize.width / 2, + this.node.position.y + parentSize.height / 2, 0) + } else if (this.node.anchorX == 0.5) { + pos = cc.v3(this.node.position.x, + this.node.position.y + parentSize.height / 2, 0) + } else if (this.node.anchorX == 0.33) { + pos = cc.v3(this.node.position.x + parentSize.width / 4, + this.node.position.y + parentSize.height / 2, 0) + } else if (this.node.anchorX == 0.66) { + pos = cc.v3(this.node.position.x - parentSize.width / 6, + this.node.position.y + parentSize.height / 2, 0) + } + //name等于个别 + switch (this.node.name) { + case "block21": + pos = cc.v3(this.node.position.x - parentSize.width / 4, + this.node.position.y + parentSize.height / 2, 0) + break; + case "block16": + pos = cc.v3(this.node.position.x - parentSize.width / 6, + this.node.position.y + parentSize.height / 2, 0) + case "block10": + pos = cc.v3(this.node.position.x - parentSize.width / 4, + this.node.position.y + parentSize.height / 2, 0) + break; + case "block8": + pos = cc.v3(this.node.position.x - parentSize.width / 6 - parentSize.width / 2, + this.node.position.y + parentSize.height / 2, 0) + break; + case "block22": + pos = cc.v3(this.node.position.x - parentSize.width / 4, + this.node.position.y + parentSize.height - parentSize.height / 4, 0) + break; + case "block20": + pos = cc.v3(this.node.position.x - parentSize.height + parentSize.height / 4, + this.node.position.y + parentSize.height / 2, 0) + break; + case "block6": + pos = cc.v3(this.node.position.x - parentSize.width / 4, + this.node.position.y + parentSize.height / 2, 0) + break; + + } + MapConroler._instance.startHammer(pos); + if (this.type == BlockType.冻结块) { + MapConroler._instance.ishammer = false; + if (MapConroler._instance.hammer == true) MapConroler._instance.hammer = false; + setTimeout(() => { + this.node.getChildByName("freeze").getComponent("Freeze").reduce(2); + }, 1000); + return; + } + else if (this.type == BlockType.上锁块) { + MapConroler._instance.ishammer = false; + if (MapConroler._instance.hammer == true) MapConroler._instance.hammer = false; + setTimeout(() => { + this.node.getChildByName("lock").getComponent("Lock").reduce(); + for (let i = 0; i < this.node.children.length; i++) { + if (this.node.children[i].name == "floor") { + this.node.children[i].getComponent("Floor").reduce(); + } + } + }, 1000); + return; + } + for (let i = 0; i < this.node.children.length; i++) { + if (this.node.children[i].name == "floor") { + this.node.children[i].getComponent("Floor").reduce(1); + } + } + } + + if (this.type == BlockType.冻结块 && (!MapConroler._instance.ishammer && !MapConroler._instance.ismagic)) { + this.node.getChildByName("freeze").getComponent("Freeze").reduce(2); + return; + } + else if (this.type == BlockType.上锁块 && (!MapConroler._instance.ishammer && !MapConroler._instance.ismagic)) { + this.node.getChildByName("lock").getComponent("Lock").reduce(); + return; + } + if (MapConroler._instance.hammer == true) MapConroler._instance.hammer = false; + if (self.type == BlockType.粘合块) { + self.removeAdhesive(false); + self.block_Info.node.getComponent("Block").removeAdhesive(false); + self.block_Info.node.getComponent("Block").restoreNomal(self.block_Info.node.getComponent("Block").posX, + self.block_Info.node.getComponent("Block").posY, false); + } + else if (self.type == BlockType.炸弹块) { + this.node.getChildByName("boom").getComponent("Boom").stopBoom(); + } + this.scheduleCallback2 = setTimeout(() => { + //如果方块可以消除 + MapConroler._instance.blockNum -= 1; + MapConroler._instance.special_Treatment(this.node, true); + var self = this; + this.removeMapBlock(); + MapConroler._instance.judgeWin(0); + let pos = this.node.getPosition(); + if (self.type == BlockType.叠加块下) { + let scaleX = self.node.scaleX; + let scaleY = self.node.scaleY; + self.block_Info.node.getComponent("Block").restoreNomal(this.posX, this.posY, true); + cc.tween(self.block_Info.node) + .to(0.1, { position: pos, scaleX: scaleX > 0 ? 1 : -1, scaleY: scaleY > 0 ? 1 : -1 }) + .start(); + } + else if (self.type == BlockType.炸弹块) { + this.node.getChildByName("boom").getComponent("Boom").destroyBoom(false); + } + + MapConroler._instance.nextLevel(0); + this.node.active = false; + this.node.removeFromParent(); + setTimeout(() => { + if (MapConroler._instance.blockNum != 0 && (MapConroler._instance.openWall.length > 0 || + MapConroler._instance.revolving_state != 0) + && !MapConroler._instance.gameOver && !MapConroler._instance.gameWin) { + let gameover = MapConroler._instance.predict_End(); + if (gameover == false) { + if (MapConroler._instance.revolving_state == 0) + MapConroler._instance.failLevel("lock"); + else + MapConroler._instance.failLevel("rotate"); + } + } + }, 500); + //如果是锤子状态消除 + MapConroler._instance.ishammer = false; + + }, 900); + + } + stopTimeCutDown() { + if (this.scheduleCallback) { + this.unschedule(this.scheduleCallback); + this.scheduleCallback = null; + } + } + //震动方法 + setVibrate(type, count) { + // return; + // console.log("最新:",cc.fx.GameConfig.GM_INFO.vibrateOpen,type); + if (!cc.fx.GameConfig.GM_INFO.vibrateOpen) { + return; + } + if (count == 1) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { // 判断是否在微信环境 + //@ts-ignore + wx.vibrateShort({ + type: type, + success: () => { + // console.log("震动成功1111111111") + }, + fail: (err) => { + // console.log("震动失败1111111111",err); + } + }); + } else { + } + return; + } + let time = 150; + for (let i = 0; i < 4; i++) { + setTimeout(() => { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { // 判断是否在微信环境 + //@ts-ignore + wx.vibrateShort({ + type: type, + success: () => { + // console.log("震动成功222222222") + }, + fail: (err) => { + // console.log("震动失败222222222", err); + } + }); + } else { + } + }, time * i); + } + + } + + + setMoveCorner(diraction) { + return; + } + + cmupdate() { + let cm: any = cc.director.getCollisionManager(); + cm.update(); + } + //恢复成一般方块 + restoreNomal(posX, posY, type) { + this.type = 0; + this.block_Info.node = null; + this.moveStack = false; + this.posX = posX; + this.posY = posY; + this.setMapBlock(); + this.level = 50 + this.posX - this.posY * 3; + this.node.zIndex = this.level; + let j = 1000; + for (let i = 0; i < this.node.children.length; i++) { + if (this.node.children[i].name == "New Node") { + j = i; + } + if (i > j) { + this.node.children[i].active = false; + } + } + if (type) { + for (let i = 0; i < this.node.children.length; i++) { + if (this.node.children[i].name == "left" || this.node.children[i].name == "right" || this.node.children[i].name == "top" || this.node.children[i].name == "down") + this.node.children[i].active = true; + } + } + this.node.on(cc.Node.EventType.TOUCH_START, this.touchStart, this); + this.node.on(cc.Node.EventType.TOUCH_MOVE, this.touchMove, this); + this.node.on(cc.Node.EventType.TOUCH_CANCEL, this.touchEnd, this); + this.node.on(cc.Node.EventType.TOUCH_END, this.touchEnd, this); + this.node['_touchListener'].setSwallowTouches(false); + this.hit = new cc.Node(); + this.hit.addComponent(cc.Sprite); + this.hit.parent = this.node; + let name = "xz_" + this.block_Info.block; + this.hit.getComponent(cc.Sprite).spriteFrame = this.ice_SpriteFrame._spriteFrames[name]; + this.hit.setAnchorPoint(this.node.anchorX, this.node.anchorY); + this.setHitPosition(); + // if(this.hit.anchorX == 0.5) this.hit.setPosition(0,-11); + // else if(this.hit.anchorX == 0.33) this.hit.setPosition(-13,-11); + // else if(this.hit.anchorX == 0.66) this.hit.setPosition(2,-9); + this.hit.active = false; + } + + //冻结状态恢复为常规状态 + resetFreeze() { + this.type = 0; + this.block_Info.type = 0; + let name = this.color + "color" + this.block_Info.block; + let number = Math.floor((this.color - 1) / 2); + let blockSpriteFrame = MapConroler._instance.Block_Color[number]._spriteFrames; + var spriteFrame = blockSpriteFrame[name]; + this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + } + + //地板铺盖状态恢复为常态 + resetFloor() { + this.block_Info.floor = null; + this.block_Info.floorTime = null; + for (let i = 0; i < this.node.children.length; i++) { + if (this.node.children[i].name == "floor") { + this.node.children[i].active = false; + } + } + this.node.getChildByName("icon").active = true; + } + + initBlocks() { + this.allBlocks = []; + + switch (this.block_Info.block) { + case 0: + let pos = cc.v2(0, 0); + this.allBlocks = [pos]; + break; + case 1: + let pos1 = cc.v2(0, 0); + let pos2 = cc.v2(-1, 0); + this.allBlocks = [pos1, pos2]; + break; + case 2: + let pos3 = cc.v2(0, 0); + let pos4 = cc.v2(0, 1); + this.allBlocks = [pos3, pos4]; + break; + case 3: + let pos5 = cc.v2(0, 0); + let pos6 = cc.v2(-1, 0); + let pos7 = cc.v2(-2, 0); + this.allBlocks = [pos5, pos6, pos7]; + break; + case 4: + let pos8 = cc.v2(0, 0); + let pos9 = cc.v2(0, 1); + let pos10 = cc.v2(0, 2); + this.allBlocks = [pos8, pos9, pos10]; + break; + case 5: + let pos11 = cc.v2(0, 0); + let pos12 = cc.v2(-1, 0); + let pos13 = cc.v2(-1, 1); + let pos14 = cc.v2(0, 1); + this.allBlocks = [pos11, pos12, pos13, pos14]; + break; + case 6: + let pos15 = cc.v2(0, 0); + let pos16 = cc.v2(0, 1); + let pos17 = cc.v2(0, 2); + let pos18 = cc.v2(-1, 2); + this.allBlocks = [pos15, pos16, pos17, pos18]; + break; + case 7: + let pos19 = cc.v2(0, 0); + let pos20 = cc.v2(0, 1); + let pos21 = cc.v2(-1, 1); + let pos22 = cc.v2(-2, 1); + this.allBlocks = [pos19, pos20, pos21, pos22]; + break; + case 8: + let pos23 = cc.v2(0, 0); + let pos24 = cc.v2(-1, 0); + let pos25 = cc.v2(-1, 1); + let pos26 = cc.v2(-1, 2); + this.allBlocks = [pos23, pos24, pos25, pos26]; + break; + case 9: + let pos27 = cc.v2(0, 0); + let pos28 = cc.v2(-1, 0); + let pos29 = cc.v2(-2, 0); + let pos30 = cc.v2(0, 1); + this.allBlocks = [pos27, pos28, pos29, pos30]; + break; + case 10: + let pos31 = cc.v2(0, 0); + let pos32 = cc.v2(1, 2); + let pos33 = cc.v2(0, 1); + let pos34 = cc.v2(0, 2); + this.allBlocks = [pos31, pos32, pos33, pos34]; + break; + case 11: + let pos35 = cc.v2(0, 0); + let pos36 = cc.v2(2, 1); + let pos37 = cc.v2(1, 1); + let pos38 = cc.v2(0, 1); + this.allBlocks = [pos35, pos36, pos37, pos38]; + break; + case 12: + let pos39 = cc.v2(0, 0); + let pos40 = cc.v2(0, 1); + let pos41 = cc.v2(0, 2); + let pos42 = cc.v2(-1, 0); + this.allBlocks = [pos39, pos40, pos41, pos42]; + break; + case 13: + let pos43 = cc.v2(0, 0); + let pos44 = cc.v2(-1, 0); + let pos45 = cc.v2(-2, 0); + let pos46 = cc.v2(-2, 1); + this.allBlocks = [pos43, pos44, pos45, pos46]; + break; + case 14: + let pos47 = cc.v2(0, 0); + let pos48 = cc.v2(0, 1); + let pos49 = cc.v2(-1, 1); + let pos50 = cc.v2(1, 1); + this.allBlocks = [pos47, pos48, pos49, pos50]; + break; + case 15: + let pos51 = cc.v2(0, 0); + let pos52 = cc.v2(-1, 0); + let pos53 = cc.v2(-2, 0); + let pos54 = cc.v2(-1, 1); + this.allBlocks = [pos51, pos52, pos53, pos54]; + break; + case 16: + let pos55 = cc.v2(0, 0); + let pos56 = cc.v2(1, 1); + let pos57 = cc.v2(0, 1); + let pos58 = cc.v2(0, 2); + this.allBlocks = [pos55, pos56, pos57, pos58]; + break; + case 17: + let pos59 = cc.v2(0, 0); + let pos60 = cc.v2(0, 1); + let pos61 = cc.v2(0, 2); + let pos62 = cc.v2(-1, 1); + this.allBlocks = [pos59, pos60, pos61, pos62]; + break; + case 18: + let pos63 = cc.v2(0, 0); + let pos64 = cc.v2(0, 1); + let pos65 = cc.v2(0, 2); + let pos66 = cc.v2(1, 1); + let pos67 = cc.v2(-1, 1); + this.allBlocks = [pos63, pos64, pos65, pos66, pos67]; + break; + case 19: + let pos68 = cc.v2(0, 0); + let pos69 = cc.v2(0, 1); + let pos70 = cc.v2(-1, 0); + this.allBlocks = [pos68, pos69, pos70]; + break; + case 20: + let pos71 = cc.v2(0, 0); + let pos72 = cc.v2(-1, 0); + let pos73 = cc.v2(-1, 1); + this.allBlocks = [pos71, pos72, pos73]; + break; + case 21: + let pos74 = cc.v2(0, 0); + let pos75 = cc.v2(0, 1); + let pos76 = cc.v2(1, 1); + this.allBlocks = [pos74, pos75, pos76]; + break; + case 22: + let pos77 = cc.v2(0, 0); + let pos78 = cc.v2(0, 1); + let pos79 = cc.v2(-1, 1); + this.allBlocks = [pos77, pos78, pos79]; + break; + } + } + + setMapBlock() { + if (this.allBlocks.length > 0) { + for (let i = 0; i < this.allBlocks.length; i++) { + let pos = this.allBlocks[i]; + let x = this.posX + pos.x; + let y = this.posY + pos.y; + MapConroler._instance.mapBlocksWall[x][y].getComponent("MapBlock").block_Id = this.node.uuid; + } + } + } + + removeMapBlock() { + if (this.posX == 0 && this.posY == 0) { + return; + } + if (this.allBlocks) { + if (this.allBlocks.length > 0) { + for (let i = 0; i < this.allBlocks.length; i++) { + if (this.allBlocks[i]) { + let pos = this.allBlocks[i]; + let x = this.posX + pos.x; + let y = this.posY + pos.y; + if (MapConroler._instance.mapBlocksWall[x][y]) { + if (MapConroler._instance.mapBlocksWall[x][y].getComponent("MapBlock")) + MapConroler._instance.mapBlocksWall[x][y].getComponent("MapBlock").block_Id = ""; + } + } + } + } + } + + } + //叠加块,位置差异,校准位置 + getStackingPos() { + switch (this.node.name) { + case "block0": + return cc.v2(-21, 22); + case "block1": + return cc.v2(-36, 23); + case "block2": + return cc.v2(-18, 40); + case "block3": + return cc.v2(-59, 25); + case "block4": + return cc.v2(-19, 57); + case "block5": + return cc.v2(-36, 38); + case "block6": + return cc.v2(-19, 97); + case "block7": + return cc.v2(-19, 61); + case "block8": + return cc.v2(-55, 24); + case "block9": + return cc.v2(-20, 24); + case "block10": + return cc.v2(-17, 96); + case "block11": + return cc.v2(-17, 58); + case "block12": + return cc.v2(-20, 24); + case "block13": + return cc.v2(-92, 25); + case "block14": + return cc.v2(-18, 60); + case "block15": + return cc.v2(-58, 24); + case "block16": + return cc.v2(-20, 60); + case "block17": + return cc.v2(-17, 60); + case "block18": + return cc.v2(-17, 60); + case "block19": + return cc.v2(-20, 24); + case "block20": + return cc.v2(-54, 25); + case "block21": + return cc.v2(-17, 60); + case "block22": + return cc.v2(-17, 60); + } + } + + update(dt: number) { + if (this.isTouch && this.touchDelta.mag() > 0) { + //this.moveLeft = this.moveRight = this.moveUp = this.moveDown = true; + const delta = this.touchDelta; + const newX = this.node.x + delta.x; + const newY = this.node.y + delta.y; + const distance = Math.sqrt(Math.pow(newX - this.node.x, 2) + Math.pow(newY - this.node.y, 2)); + let mag = Math.round(delta.mag()); + + // 脱离接触恢复可移动状态 + if (this.moveY === 1) { + if (this.touchPointY <= this.node.y + this.node.height / 2) { + this.moveY = 0; + } + } else if (this.moveY === -1) { + if (this.touchPointY >= this.node.y + this.node.height / 2) { + this.moveY = 0; + } + } + if (this.moveX === 1) { + if (this.touchPointX <= this.node.x - this.node.width / 2) { + this.moveX = 0; + } + else { + } + } else if (this.moveX === -1) { + if (this.touchPointX >= this.node.x - this.node.width / 2) { + this.moveX = 0; + } + else { + } + } + //恢复的时候,如果追的距离超过100,则分段移动,避免穿透 + if (distance > 100) { + mag = 10; + const speedScale = 0.5; + delta.x *= speedScale; + delta.y *= speedScale; + } else { + if (mag > 5) { + mag = Math.floor(mag / 5); + } + } + + // mag = 2; + const stepx = delta.x / mag; + const stepy = delta.y / mag; + + for (let index = 0; index < mag; index++) { + this.moveCorner = 0; + const tempX = this.node.x + stepx; + const tempY = this.node.y + stepy; + + if (!this.checkCollision) { + if (this.type !== 8 && this.type !== 10) { + this.node.x = Math.round(tempX); + } + if (this.type !== 7 && this.type !== 10) { + this.node.y = Math.round(tempY); + } + } else { + const isXMain = Math.abs(stepx) > Math.abs(stepy); + if (isXMain) { + if (this.node.x > tempX) { + if (this.moveLeft && this.moveX === 0 && this.type !== 8 && this.type !== 10) { + this.node.x = tempX; + } + if (this.moveX !== 0) { + this.moveX = 0; + } + } else if (this.node.x <= tempX) { + if (this.moveRight && this.moveX === 0 && this.type !== 8 && this.type !== 10) { + this.node.x = tempX; + } + if (this.moveX !== 0) { + this.moveX = 0; + } + } + + if (this.node.y > tempY) { + if (this.moveDown && this.moveY === 0 && this.type !== 7 && this.type !== 10) { + this.node.y = tempY; + } + if (this.moveY !== 0) { + this.moveY = 0; + } + } else if (this.node.y <= tempY) { + if (this.moveUp && this.moveY === 0 && this.type !== 7 && this.type !== 10) { + this.node.y = tempY; + } + if (this.moveY !== 0) { + this.moveY = 0; + } + } + } else { + if (this.node.y > tempY) { + if (this.moveDown && this.moveY === 0 && this.type !== 7 && this.type !== 10) { + this.node.y = tempY; + } + if (this.moveY !== 0) { + this.moveY = 0; + } + } else if (this.node.y <= tempY) { + if (this.moveUp && this.moveY === 0 && this.type !== 7 && this.type !== 10) { + this.node.y = tempY; + } + if (this.moveY !== 0) { + this.moveY = 0; + } + } + + if (this.node.x > tempX) { + if (this.moveLeft && this.moveX === 0 && this.type !== 8 && this.type !== 10) { + this.node.x = tempX; + } + if (this.moveX !== 0) { + this.moveX = 0; + } + } else if (this.node.x <= tempX) { + if (this.moveRight && this.moveX === 0 && this.type !== 8 && this.type !== 10) { + this.node.x = tempX; + } + if (this.moveX !== 0) { + this.moveX = 0; + } + } + } + } + LQCollideSystem.update_logic(dt); + } + // 移动完成后重置触摸增量 + this.touchDelta = cc.v2(0, 0); + + } + if (this.type == BlockType.叠加块下) { + if (this.block_Info.node != null) { + if (this.block_Info.node.getComponent("Block").moveStack == true) { + this.block_Info.node.x = this.node.x + this.block_Info.node.getComponent("Block").stacking.x; + this.block_Info.node.y = this.node.y + this.block_Info.node.getComponent("Block").stacking.y; + } + } + } + if (this.block_Info) { + if (this.block_Info.node != null) { + if (this.type == BlockType.粘合块) { + if (this.adhesive.x != 0 && this.adhesive.y != 0 && this.block_Info.node != null) { + this.block_Info.node.x = this.node.x - this.adhesive.x; + this.block_Info.node.y = this.node.y - this.adhesive.y; + } + if (this.isTouch == true && this.block_Info.node.getComponent("Block").isTouch == false) { + LQCollideSystem.update_logic(dt); + this.block_Info.node.x = this.node.x - this.adhesive.x; + this.block_Info.node.y = this.node.y - this.adhesive.y; + } + } + } + } + } + + //精细更改 点击高亮位置 + setHitPosition() { + this.hit.setPosition(13, -16); + switch (this.block_Info.block) { + case 0: + this.hit.setPosition(15, -20); + break; + case 1: + this.hit.setPosition(13, -17.5); + break; + case 2: + this.hit.setPosition(15, -16); + break; + case 4: + this.hit.setPosition(12, -18); + break; + case 6: + this.hit.setPosition(15, -14); + break; + case 7: + this.hit.setPosition(17, -9); + break; + case 8: + this.hit.setPosition(15, -14); + break; + case 9: + this.hit.setPosition(13, -13); + break; + case 10: + this.hit.setPosition(-5.5, -14); + break; + case 11: + this.hit.setPosition(-6, -15); + break; + case 12: + this.hit.setPosition(15, -15); + break; + case 13: + this.hit.setPosition(15, -13); + break; + case 13: + this.hit.setPosition(15, -14); + break; + case 14: + this.hit.setPosition(2, -7); + break; + case 15: + this.hit.setPosition(15, -16); + break; + case 16: + this.hit.setPosition(1, -15.5); + break; + case 17: + this.hit.setPosition(15, -14); + break; + case 18: + this.hit.setPosition(5, -13); + break; + case 21: + this.hit.setPosition(-2, -14); + break; + case 22: + this.hit.setPosition(14, -14); + break; + } + } + + // 边角弹开 避免卡死 + Bounce(name) { + let distance = 1.5; + if (name == "tan_down_left") { + this.node.x = this.node.x + distance; + this.node.y = this.node.y + distance; + } + else if (name == "tan_up_right") { + this.node.x = this.node.x - distance; + this.node.y = this.node.y - distance; + } + else if (name == "tan_down_right") { + this.node.x = this.node.x - distance; + this.node.y = this.node.y + distance; + } + else if (name == "tan_up_left") { + this.node.x = this.node.x + distance; + this.node.y = this.node.y - distance; + } + } + + createSingleBlockEffect(blockPos: any, index: number, blockSize: number, baseOffset: cc.Vec2) { + const effectNode = new cc.Node(`magic_effect_${index}`); + + const skeletonComponent = effectNode.addComponent(sp.Skeleton); + if (!this.magic_SkeletonData) { + console.error("magic_SkeletonData 资源未加载或为空"); + return; + } + skeletonComponent.skeletonData = this.magic_SkeletonData; + skeletonComponent.premultipliedAlpha = false; + let actualX = blockPos.x * blockSize + baseOffset.x; + let actualY = blockPos.y * blockSize + baseOffset.y; + + effectNode.setAnchorPoint(0.5, 0.5); + + // 计算在世界坐标系中的位置 + const worldPos = this.node.convertToWorldSpaceAR(cc.v2(actualX - 65, actualY + 70)); + + // 获取 Canvas 节点 + const canvas = cc.find('Canvas'); + if (!canvas) { + console.error("找不到 Canvas 节点"); + return; + } + + // 将世界坐标转换为 Canvas 的本地坐标 + const canvasPos = canvas.convertToNodeSpaceAR(worldPos); + effectNode.setPosition(canvasPos); + + // 设置最高层级,确保在所有其他节点之上 + effectNode.zIndex = 9999; + + // 添加到 Canvas 节点下 + MapConroler._instance.node.parent.addChild(effectNode); + + this.playMagicAnimation(skeletonComponent, index); + + // 可选:添加自动清理机制 + this.scheduleOnce(() => { + if (effectNode && effectNode.isValid) { + effectNode.removeFromParent(); + effectNode.destroy(); + } + }, 3); // 3秒后自动清理 + } + + + // 播放魔法动画的辅助方法 + playMagicAnimation(skeletonComponent: sp.Skeleton, index: number) { + try { + // 检查动画是否存在 + if (!skeletonComponent.findAnimation("play")) { + // console.error(`动画 "play" 不存在于 Spine 资源中`); + return; + } + skeletonComponent.setAnimation(0, "play", false); + //播放完自动清理 + // 监听动画完成事件 + skeletonComponent.setCompleteListener((trackEntry, loopCount) => { + // 动画播放完成后自动清理节点 + if (skeletonComponent.node && skeletonComponent.node.isValid) { + // console.log(`第 ${index} 个特效动画播放完成,开始清理节点`); + + // 移除节点并销毁 + skeletonComponent.node.removeFromParent(); + skeletonComponent.node.destroy(); + } + }); + + } catch (error) { + // console.error(`播放第 ${index} 个方块动画时出错:`, error); + } + } + + // 清理 + clearPreviousEffects() { + const children = this.node.children; + for (let i = children.length - 1; i >= 0; i--) { + const child = children[i]; + if (child.name.startsWith('magic_effect_')) { + child.removeFromParent(); + child.destroy(); + } + } + } + + setFloor() { + this.node.getChildByName("icon").active = false; + for (let i = 0; i < this.allBlocks.length; i++) { + let floor = cc.instantiate(MapConroler._instance.Block_Prop[11]); + floor.parent = this.node; + floor.zIndex = 999; + let floorX = - 65 + 120 * this.allBlocks[i].x; let floorY = 60 + 120 * this.allBlocks[i].y; + floor.setPosition(floorX, floorY); + floor.getComponent("Floor").init(this.block_Info.floorTime); + } + + // + // freeze.getChildByName("time").setPosition(posConfig.pos5.x - 10 - freezeX, posConfig.pos5.y - 2 - freezeY); + } + + //魔法棒道具使用,动画 + createLabelsForBlocksWithCustomDelay(delayBetweenBlocks: number = 0.1) { + if (!this.allBlocks || this.allBlocks.length === 0) { + console.warn("allBlocks 数组为空或未定义"); + return; + } + const blockSize = 120; + const baseOffset = cc.v2(0, 0); + this.clearPreviousEffects(); + let createOrder = [ + [0], + ]; + + switch (this.node.name) { + case "block0": + createOrder = [ + [0] + ]; + break; + case "block1": + createOrder = [ + [1], + [0] + ]; + break; + case "block2": + createOrder = [ + [1], + [0] + ]; + break; + case "block3": + createOrder = [ + [1], + [0, 2], + ]; + break; + case "block4": + createOrder = [ + [1], + [0, 2] + ]; + break; + case "block5": + createOrder = [ + [0], + [1, 3], + [2] + ]; + + break; + case "block6": + createOrder = [ + [2], + [1, 3], + [0] + ]; + break; + case "block7": + createOrder = [ + [2], + [1, 3], + [0] + ]; + break; + case "block8": + createOrder = [ + [1], + [0, 2], + [3] + ]; + break; + case "block9": + createOrder = [ + [0], + [1, 3], + [2] + ]; + break; + case "block10": + createOrder = [ + [3], + [1, 2], + [0] + ]; + break; + case "block11": + createOrder = [ + [3], + [0, 2], + [1] + ]; + break; + case "block12": + createOrder = [ + [0], + [1, 3], + [2] + ]; + break; + case "block13": + createOrder = [ + [2], + [1, 3], + [0] + ]; + break; + case "block14": + createOrder = [ + [1], + [0, 2, 3], + ]; + break; + case "block15": + createOrder = [ + [1], + [0, 2, 3], + ]; + break; + case "block16": + createOrder = [ + [2], + [0, 1, 3], + ]; + break; + case "block17": + createOrder = [ + [1], + [0, 2, 3], + ]; + break; + case "block18": + createOrder = [ + [1], + [0, 2, 3, 4], + ]; + break; + case "block19": + createOrder = [ + [0], + [1, 2], + + ]; + break; + case "block20": + createOrder = [ + [1], + [2, 0], + + ]; + break; + case "block21": + createOrder = [ + [1], + [2, 0], + + ]; + break; + case "block22": + createOrder = [ + [1], + [2, 0], + + ]; + break; + } + let currentDelay = 0; + createOrder.forEach((batch, batchIndex) => { + batch.forEach(blockIndex => { + if (blockIndex < this.allBlocks.length) { + const blockPos = this.allBlocks[blockIndex]; + this.scheduleOnce(() => { + this.createSingleBlockEffect(blockPos, blockIndex, blockSize, baseOffset); + }, currentDelay); + } + }); + currentDelay += delayBetweenBlocks; + }); + } +} + + diff --git a/assets/Script/Block.ts.meta b/assets/Script/Block.ts.meta new file mode 100644 index 0000000..3da6f57 --- /dev/null +++ b/assets/Script/Block.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "c58de376-bb53-4664-bf27-270be7bb53d1", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/CollisionDetection.ts b/assets/Script/CollisionDetection.ts new file mode 100644 index 0000000..de84ec0 --- /dev/null +++ b/assets/Script/CollisionDetection.ts @@ -0,0 +1,73 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + + +const {ccclass, property, requireComponent} = cc._decorator; + +@ccclass +export default class CollisionDetection extends cc.Component { + static _instance: any; onLoad() { + if (CollisionDetection._instance == null) { + CollisionDetection._instance = this; + // cc.game.addPersistRootNode(this.node); + } + else { + return; + } + + } + //碰撞检测函数 + public isColliding(rect1: cc.Rect, rect2: cc.Rect): { isColliding: boolean } { + // 快速排除:检查边界框是否相交 + if (rect1.xMax < rect2.xMin || rect2.xMax < rect1.xMin || rect1.yMax < rect2.yMin || rect2.yMax < rect1.yMin) { + return { isColliding: false }; + } + + // 调用原始的 intersects 方法 + const isColliding = rect1.intersects(rect2); + + return { isColliding }; + } + + + // 获取多边形的所有边的法线 + private getNormals(polygon: cc.Vec2[]): cc.Vec2[] { + const normals: cc.Vec2[] = []; + const length = polygon.length; + for (let i = 0; i < length; i++) { + const p1 = polygon[i]; + const p2 = polygon[(i + 1) % length]; + const edge = new cc.Vec2(p2.x - p1.x, p2.y - p1.y); + const normal = new cc.Vec2(-edge.y, edge.x); + normal.normalize(); + normals.push(normal); + } + return normals; + } + + // 将多边形投影到轴上 + private project(polygon: cc.Vec2[], axis: cc.Vec2): { min: number; max: number } { + let min = cc.Vec2.dot(polygon[0], axis); + let max = min; + for (let i = 1; i < polygon.length; i++) { + const dotProduct = cc.Vec2.dot(polygon[i], axis); + if (dotProduct < min) { + min = dotProduct; + } else if (dotProduct > max) { + max = dotProduct; + } + } + return { min, max }; + } + + // 检查两个投影是否重叠 + private overlap(projection1: { min: number; max: number }, projection2: { min: number; max: number }): boolean { + return !(projection1.max < projection2.min || projection2.max < projection1.min); + } + + +} diff --git a/assets/Script/CollisionDetection.ts.meta b/assets/Script/CollisionDetection.ts.meta new file mode 100644 index 0000000..86fff0d --- /dev/null +++ b/assets/Script/CollisionDetection.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "f1883a57-ccc5-48a7-9fc0-4430167d9ee3", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/ControlManager.ts b/assets/Script/ControlManager.ts new file mode 100644 index 0000000..822f272 --- /dev/null +++ b/assets/Script/ControlManager.ts @@ -0,0 +1,178 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +const {ccclass, property} = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + + @property(cc.Node) + Map: cc.Node = null; + @property(cc.Prefab) + tip: cc.Prefab = null; + @property(cc.Prefab) + reinforce: cc.Prefab = null; + @property(cc.Prefab) + soil: cc.Prefab = null; + + + tipArray:any; + controlArray:any; + canTouch:boolean; + Reinforce:boolean; + Soil:boolean; + mapHeight:number; + // LIFE-CYCLE CALLBACKS: + + // onLoad () {} + + start () { + this.tipArray = []; + this.controlArray = []; + this.canTouch = true; + this.Reinforce = false; + this.Soil = false; + this.mapHeight = 0; + } + + setPosition(tip){ + tip.setPosition(30,-25); + if(this.tipArray.length > 0){ + let length = this.tipArray.length+1; + let posY = Math.ceil(length/8) - 1; + let posX = length - Math.floor(posY)*8 - 1; + tip.setPosition(30 + 48*posX,-25 -48*posY + this.mapHeight); + } + } + //清空所有 + removeAllTip(){ + if(!this.canTouch) return; + if(this.tipArray.length > 0){ + cc.fx.AudioManager._instance.playEffect("qingkong",null); + for(let i=0; i 0){ + cc.fx.AudioManager._instance.playEffect("chehui",null); + let tip = this.tipArray[this.tipArray.length-1]; + tip.active = false; + tip.removeFromParent(this.Map); + tip = null; + this.tipArray.pop(); + this.controlArray.pop(); + var drawingBack = cc.fx.GameConfig.CLICK_DATA.drawingBack + 1; + cc.fx.GameConfig.CLICK_SET("drawingBack",drawingBack); + cc.fx.Notifications.emit(cc.fx.Message.removeTip,"back"); + if(this.tipArray.length >= 24){ + if((this.tipArray.length )%8 == 0){ + this.mapMove(false); + } + } + } + } + + //点击事件 + btn_Click(target,data){ + var GameManager = this.node.parent.getComponent("GameManager"); + if(GameManager.btnClick == true){ + GameManager.btnClick = false; + cc.fx.Notifications.emit(cc.fx.Message.guideNext); + } + cc.fx.Notifications.emit(cc.fx.Message.control,data); + if(!this.canTouch) return; + let prefab = this.tip; + if(data == "reinforce" || data == "soil"){ + prefab = this[data]; + if(data == "reinforce"){ + if(this.Reinforce){ + this.Reinforce = false; + this.back_Click(); + return; + }else{ + cc.fx.AudioManager._instance.playEffect("jineng",null); + this.Reinforce = true; + this.Soil = false; + } + } + else if(data == "soil"){ + if(this.Soil){ + this.Soil = false; + this.back_Click(); + return; + }else{ + cc.fx.AudioManager._instance.playEffect("jineng",null); + this.Soil = true; + this.Reinforce = false; + } + } + } + else{ + cc.fx.AudioManager._instance.playEffect("fangxiang",null); + this.Reinforce = false; + this.Soil = false; + } + let tip = cc.instantiate(prefab); + if(data == "up") tip.angle = 180; + if(data == "left") tip.angle = -90; + if(data == "right") tip.angle = 90; + tip.parent = this.Map; + + if(this.controlArray[this.controlArray.length-1] == "reinforce" || + this.controlArray[this.controlArray.length-1] == "soil"){ + if(data == "reinforce" || data == "soil"){ + this.tipArray[this.tipArray.length-1].removeFromParent(); + this.tipArray[this.tipArray.length-1] = null; + this.tipArray.pop(); + this.controlArray.pop(); + } + } + this.setPosition(tip); + + this.tipArray.push(tip); + this.controlArray.push(data); + + if(this.tipArray.length >= 25){ + if((this.tipArray.length - 1)%8 == 0){ + this.mapMove(true); + } + } + } + //地图放不下了上下移动 + mapMove(type){ + if(type) this.mapHeight += 48; + else this.mapHeight -= 48; + for(let i=0; i = []; + + @property({ type: [cc.Prefab], tooltip: "墙壁数组" }) + Wall_Prefab: Array = []; + + @property({ type: [cc.SpriteAtlas], tooltip: "方块颜色" }) + Block_Color: Array = []; + + particleEffects: cc.ParticleAsset[]; + // @property({type: [cc.ParticleSystem], tooltip:"粒子数组"}) + // particleEffects : Array = []; + + load1: boolean = false; + load2: boolean = false; + load3: boolean = false; + load4: boolean = false; + load5: boolean = false; + load6: boolean = false; + scheduleCallback: any; + timeNumber: number; + nowTime: number; + + + // LIFE-CYCLE CALLBACKS: + /** 游戏入口初始化 */ + onLoad() { + window.initMgr(); + this.timeNumber = 1; + this.startTimeCutDown(); + cc.fx.GameConfig.init(true); + cc.fx.GameConfig.GM_INFO.gameState = false; + this.readMusicConfig(); + + this.load1 = this.load2 = this.load3 = this.load4 = this.load5 = this.load6 = false; + setTimeout(() => { + this.getSetting(); + this.readUserData(); + this.getShareInfo(); + + }, 100); + + + if (GameManager._instance == null) { + GameManager._instance = this; + cc.game.addPersistRootNode(this.node); + } + else { + return; + } + + // 检测微信小游戏切到后台 + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + //@ts-ignore + wx.onHide(() => { + this.onHide(); + }); + // 检测微信小游戏回到前台 + //@ts-ignore + wx.onShow(() => { + this.onShow(); + }); + } + + } + checkDailyQuests() { + cc.fx.GameTool.getDailyQuestsInfo((data) => { + }) + } + + start() { + setTimeout(() => { + const path = 'prefab/block'; + const path2 = 'prefab/wall'; + cc.resources.loadDir(path, cc.Prefab, (err, assets: cc.Prefab[]) => { + if (err) { + cc.director.loadScene("LoadScene"); + return; + } + // 将加载的 Prefab 赋值给 Block_Array + this.Block_Array = assets; + this.setSort(); + this.load1 = true; + }); + + cc.resources.loadDir(path2, cc.Prefab, (err, assets: cc.Prefab[]) => { + if (err) { + cc.director.loadScene("LoadScene"); + return; + } + // 将加载的 Prefab 赋值给 Block_Array + this.Wall_Prefab = assets; + this.load2 = true; + this.setWallPrefabSort(); + }); + }, 100); + + } + onHide() { + cc.audioEngine.stopMusic(); + cc.game.pause(); + } + + onShow() { + cc.audioEngine.resumeMusic(); + cc.game.resume(); + } + //#region 给加载好的墙壁资源排序 + /** 给加载好的墙壁资源排序,防止乱序 */ + setWallPrefabSort() { + const order = ['down', 'downleft', 'downright', 'left', 'leftdown', 'leftup', 'right', 'rightdown', 'rightup', 'up', 'upleft', 'upright']; + this.Wall_Prefab.sort((a, b) => { + const indexA = order.indexOf(a.name); + const indexB = order.indexOf(b.name); + if (indexA === -1) return 1; + if (indexB === -1) return -1; + return indexA - indexB; + }); + + } + + /** 给加载好的方块资源排序,防止乱序 */ + setSort() { + this.Block_Array.sort((a, b) => { + // 从名称中提取数字部分 + const numberA = parseInt(a.name.match(/\d+/)?.[0] || '0', 10); + const numberB = parseInt(b.name.match(/\d+/)?.[0] || '0', 10); + return numberA - numberB; + }); + } + + //#region 开始游戏 + /** 开始游戏,执行逻辑 */ + startGame() { + // 加载成功后进入 HomeScene + cc.assetManager.loadBundle('shop', (err, bundle) => { + if (err) { + console.error('加载 shop 失败:', err); + } else { + // 加载成功后进入 HomeScene + cc.assetManager.loadBundle('music', (err, bundle) => { + if (err) { + console.error('加载 music bundle 失败:', err); + // 加载失败时仍尝试进入 HomeScene + cc.director.loadScene("HomeScene"); + } else { + } + cc.director.loadScene("HomeScene"); + }); + + } + }); + // 加载 music bundle + + } + + //#region 微信登录,以及读取用户信息 + /** 微信登录,以及读取用户信息 */ + readUserData(retryCount = 0) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + MiniGameSdk.API.shushu_Init(); + this.nowTime = Date.now(); + // 最大重试次数 + const MAX_RETRIES = 30; + // 延迟时间数组,按照 1 秒 3 次、2 秒 5 次、5 秒 6 次、15 秒 5 次的规则生成 + const delays = [ + ...Array(3).fill(2000), + ...Array(5).fill(3000), + ...Array(6).fill(5000), + ...Array(5).fill(15000) + ]; + //cc.fx.GameConfig.GM_INFO.shushu_DistinctId + const attemptUserInfo = () => { + Utils.getUserInfo((data) => { + if (data.code == 1) { // 假设返回数据中有 success 字段表示成功 + console.log("登錄", data); + if (data.data.openid) { + cc.fx.GameConfig.GM_INFO.openid = data.data.openid; + cc.fx.StorageMessage.setStorage("openid", cc.fx.GameConfig.GM_INFO.openid); + } + if (data.data._id) { + cc.fx.GameConfig.GM_INFO.uid = data.data._id; + cc.fx.StorageMessage.setStorage("uid", data.data._id); + } + if (data.data.onlyId) { + cc.fx.GameConfig.GM_INFO.userId = data.data.onlyId; + } + if (data.data.outTradeNo.length > 0) { + cc.fx.GameConfig.GM_INFO.allOutTradeNo = []; + cc.fx.GameConfig.GM_INFO.allOutTradeNo = data.data.outTradeNo; + } + if (data.data.shareLv) { + if (data.data.shareLv.length > 0) { + cc.fx.GameConfig.GM_INFO.helpLevel = data.data.shareLv[0].lv; + } + } + if (data.data.username) { + cc.fx.GameConfig.GM_INFO.username = data.data.username; + } + if (data.data.useravatar) { + cc.fx.GameConfig.GM_INFO.useravatarIcon = data.data.useravatar; + if (cc.fx.GameConfig.GM_INFO.useravatarIcon.length < 10) + cc.fx.GameConfig.GM_INFO.useravatarIcon = "icon_" + cc.fx.GameConfig.GM_INFO.useravatarIcon + } + if (data.data.useravatarIcon) { + cc.fx.GameConfig.GM_INFO.useravaterkuang = data.data.useravatarIcon; + cc.fx.GameConfig.GM_INFO.useravaterkuang = "kuang_" + (parseInt(cc.fx.GameConfig.GM_INFO.useravaterkuang) + 1); + } + + if (data.data.task) { + let task = JSON.parse(data.data.task); + cc.fx.GameConfig.GM_INFO.tasks.levelPass = task["levelPass"]; + cc.fx.GameConfig.GM_INFO.tasks.share = task["share"]; + cc.fx.GameConfig.GM_INFO.tasks.useEnergy = task["useEnergy"]; + cc.fx.GameConfig.GM_INFO.tasks.useProp = task["useProp"]; + } + this.checkDailyQuests(); + //如果有连胜记录,就赋值 + if (data.data.winStreak) { + console.log("从服务器得到连胜", data.data.winStreak); + cc.fx.GameConfig.GM_INFO.winStreak = parseInt(data.data.winStreak); + let winState = cc.fx.StorageMessage.getStorage("winState"); + console.log("本地连胜状态", winState); + if ((winState == null || winState == undefined) && winState != false) { + console.log("没有缓存进入这里"); + cc.fx.GameConfig.GM_INFO.winState = false; + if (cc.fx.GameConfig.GM_INFO.winStreak >= 10) { + cc.fx.GameConfig.GM_INFO.winState = true; + } + cc.fx.StorageMessage.setStorage("winState", cc.fx.GameConfig.GM_INFO.winState); + } + else { + cc.fx.GameConfig.GM_INFO.winState = winState; + console.log("连胜状态:", cc.fx.GameConfig.GM_INFO.winState); + if (winState == false) { + if (cc.fx.GameConfig.GM_INFO.winStreak >= 10) { + cc.fx.GameConfig.GM_INFO.winStreak = 0; + Utils.setWinStreak((data) => { + if (data.code == 1) { + console.log("连胜状态杀端清零成功"); + } + }) + } + } + } + cc.fx.StorageMessage.setStorage("winStreak", cc.fx.GameConfig.GM_INFO.winStreak); + } + else { + let winStreak = cc.fx.StorageMessage.getStorage("winStreak"); + if (winStreak == undefined || winStreak == "" || winStreak == null) { + cc.fx.GameConfig.GM_INFO.winStreak = 0; + cc.fx.StorageMessage.setStorage("winStreak", cc.fx.GameConfig.GM_INFO.winStreak); + } + else { + cc.fx.GameConfig.GM_INFO.winStreak = winStreak; + } + console.log("调用连胜上传"); + Utils.setWinStreak((data) => { + if (data.code == 1) { + console.log("设置连胜成功"); + } + }) + } + + this.setUserPower(data); + this.setmonth(data); + this.setRevive(data); + let levelInfo = cc.fx.StorageMessage.getStorage("level"); + //如果本地缓存没有关卡信息,默认为服务器信息为主 + if (levelInfo == undefined || levelInfo == "" || levelInfo == null) { + this.getUserDataToServer(data.data); + // this.oldReadData(retryCount); + } + //新的读取数据设置方法,以本地为主 + else { + this.getUserDataToLocal(data.data); + // this.newReadData(); + } + + cc.fx.GameTool.getHealth((data) => { + this.load5 = true; + }); + this.load6 = true; + } + else { + if (retryCount < MAX_RETRIES && retryCount < delays.length) { + const delay = delays[retryCount]; + console.error(`获取用户信息失败,第 ${retryCount + 1} 次重试,将在 ${delay / 1000} 秒后重试`); + setTimeout(() => { + retryCount++; + attemptUserInfo(); + }, delay); + } else { + console.error('获取用户信息失败,达到最大重试次数,退出游戏'); + // 退出游戏 + cc.game.end(); + } + } + }); + }; + attemptUserInfo(); + } + else { + this.load3 = true; + this.load4 = true; + this.load5 = true; + this.load6 = true; + cc.fx.GameTool.getHealth(null); + } + // 存储用户数据 + } + //#region 读取音乐配置 + /** 读取音乐配置 */ + readMusicConfig() { + let audioInfo = cc.fx.StorageMessage.getStorage("music"); + if (audioInfo == undefined || audioInfo == "" || audioInfo == null) { + audioInfo = { + "musicOpen": true, //音乐 + "effectOpen": true, //音效 + "vibrateOpen": true, //震动 + } + cc.fx.StorageMessage.setStorage("music", audioInfo); + } + else { + cc.fx.GameConfig.GM_INFO.musicOpen = audioInfo.musicOpen; + cc.fx.GameConfig.GM_INFO.effectOpen = audioInfo.effectOpen; + cc.fx.GameConfig.GM_INFO.vibrateOpen = audioInfo.vibrateOpen; + } + } + + //#region 老用户,读取数据 + /** 老用户,有本地缓存数据,与服务器数据做比对,哪边关卡等级高以哪边为主 */ + getUserDataToLocal(data) { + let levelInfo = cc.fx.StorageMessage.getStorage("level"); + let coinInfo = cc.fx.StorageMessage.getStorage("coin"); + let propInfo = cc.fx.StorageMessage.getStorage("prop"); + if (data.levelAmount == null || data.levelAmount == undefined) { + data.levelAmount = 0; + } + if (data.coinAmount == null || data.coinAmount == undefined) { + data.coinAmount = 0; + } + if (levelInfo.level > data.levelAmount) { + cc.fx.GameConfig.GM_INFO.level = levelInfo.level; + cc.fx.GameConfig.GM_INFO.coin = coinInfo.coin; + cc.fx.GameConfig.GM_INFO.freezeAmount = propInfo.freezeAmount; + cc.fx.GameConfig.GM_INFO.hammerAmount = propInfo.hammerAmount; + cc.fx.GameConfig.GM_INFO.magicAmount = propInfo.magicAmount; + const timestamp = Date.now(); + if (coinInfo.coin != data.coinAmount) { + if (coinInfo == undefined || coinInfo.coin == null) { + let coinInfo = { "coin": cc.fx.GameConfig.GM_INFO.coin, "timestamp": timestamp }; + cc.fx.StorageMessage.setStorage("coin", coinInfo); + } + else { + cc.fx.GameTool.setUserCoin((data) => { + }); + } + + } + if (levelInfo.level != data.levelAmount) { + if (levelInfo.level == null || levelInfo == undefined) { + let levelInfo = { "level": cc.fx.GameConfig.GM_INFO.level, "timestamp": timestamp }; + cc.fx.StorageMessage.setStorage("level", levelInfo); + } + else { + cc.fx.GameTool.setUserLevel((data) => { + }); + } + + } + if (propInfo.freezeAmount != data.freezeAmount || propInfo.hammerAmount != data.hammerAmount || propInfo.magicAmount != data.magicAmount) { + cc.fx.GameTool.setUserProp(0, 0, (data) => { + }) + } + this.load3 = true; + this.load4 = true; + } else { + if (data.levelAmount == null || data.levelAmount == undefined) { + data.levelAmount = cc.fx.GameConfig.GM_INFO.level; + cc.fx.GameTool.setUserLevel((data) => { + }); + } + if (data.coinAmount == null || data.coinAmount == undefined) { + data.coinAmount = cc.fx.GameConfig.GM_INFO.coin; + cc.fx.GameTool.setUserCoin((data) => { + }); + } + const timestamp = Date.now(); + let levelInfo = { "level": data.levelAmount, "timestamp": timestamp }; + cc.fx.StorageMessage.setStorage("level", levelInfo); + let coinInfo = { "coin": data.coinAmount, "timestamp": timestamp }; + cc.fx.StorageMessage.setStorage("coin", coinInfo); + let propInfo = { + "freezeAmount": data.freezeAmount, + "hammerAmount": data.hammerAmount, + "magicAmount": data.magicAmount, + "timestamp": timestamp, + } + cc.fx.GameConfig.GM_INFO.freezeAmount = data.freezeAmount; + cc.fx.GameConfig.GM_INFO.hammerAmount = data.hammerAmount; + cc.fx.GameConfig.GM_INFO.magicAmount = data.magicAmount; + cc.fx.GameConfig.GM_INFO.level = data.levelAmount; + cc.fx.GameConfig.GM_INFO.coin = data.coinAmount; + cc.fx.StorageMessage.setStorage("prop", propInfo); + this.load3 = true; + this.load4 = true; + } + } + //#region 新用户,读取数据 + /** 本地没信息,新用户,或者清缓存用户 */ + getUserDataToServer(data) { + const timestamp = Date.now(); + if (data) { + if (data.isFirst == true) { + cc.fx.GameConfig.GM_INFO.first = true; + if (data.register_time) { + const time = data.register_time; + MiniGameSdk.API.shushu_userSet(time); + } + } + else { + } + this.load3 = true; + this.load4 = true; + if (data.levelAmount == null || data.levelAmount == undefined) { + data.levelAmount = cc.fx.GameConfig.GM_INFO.level; + cc.fx.GameTool.setUserLevel((data) => { + }); + } + if (data.coinAmount == null || data.coinAmount == undefined) { + data.coinAmount = cc.fx.GameConfig.GM_INFO.coin; + cc.fx.GameTool.setUserCoin((data) => { + }); + } + let levelInfo = { "level": data.levelAmount, "timestamp": timestamp }; + cc.fx.StorageMessage.setStorage("level", levelInfo); + let coinInfo = { "coin": data.coinAmount, "timestamp": timestamp }; + cc.fx.StorageMessage.setStorage("coin", coinInfo); + let propInfo = { + "freezeAmount": data.freezeAmount, + "hammerAmount": data.hammerAmount, + "magicAmount": data.magicAmount, + "timestamp": timestamp, + } + cc.fx.GameConfig.GM_INFO.freezeAmount = data.freezeAmount; + cc.fx.GameConfig.GM_INFO.hammerAmount = data.hammerAmount; + cc.fx.GameConfig.GM_INFO.magicAmount = data.magicAmount; + cc.fx.GameConfig.GM_INFO.level = data.levelAmount; + cc.fx.GameConfig.GM_INFO.coin = data.coinAmount; + cc.fx.StorageMessage.setStorage("prop", propInfo); + } + } + /** 倒计时,保证进度在1秒内不进入游戏 */ + startTimeCutDown() { + this.scheduleCallback = function () { + if (this.timeNumber <= 0) { + this.stopTimeCutDown(); + } + else { + this.timeNumber -= 1; + } + }.bind(this); + this.schedule(this.scheduleCallback, 1); + } + /** 停止定时器 */ + stopTimeCutDown() { + if (this.scheduleCallback) { + this.unschedule(this.scheduleCallback); + } + } + //#region 设置无限体力信息 + /** 设置无限体力信息 */ + setUserPower(data) { + let nowTime = Math.floor(Date.now() / 1000); + let powerTime = cc.fx.StorageMessage.getStorage("userPowerTime"); + //本地没缓存 + if (powerTime == "undifend" || powerTime == null || powerTime == "" || powerTime == 0) { + //本地没缓存,但是服务器有缓存,判断服务器的无限体力时间是否过期 + if (data.data.userPowerTime && data.data.userPowerTime != 0) { + powerTime = data.data.userPowerTime; + if (powerTime > nowTime) { + cc.fx.GameConfig.GM_INFO.userPowerTime = powerTime; + cc.fx.StorageMessage.setStorage("userPowerTime", powerTime); + } + else { + cc.fx.GameConfig.GM_INFO.userPowerTime = 0; + cc.fx.StorageMessage.setStorage("userPowerTime", 0); + } + } + //本地没缓存,服务器也没缓存 + else { + powerTime = 0; + cc.fx.GameConfig.GM_INFO.userPowerTime = 0; + cc.fx.StorageMessage.setStorage("userPowerTime", 0); + } + } + //本地有缓存 + else { + //本地有缓存,且服务器有缓存 + if (data.data.userPowerTime && data.data.userPowerTime != 0) { + //服务器缓存大于本地缓存,以服务器缓存为主 + if (data.data.userPowerTime > powerTime) { + powerTime = data.data.userPowerTime; + if (powerTime > nowTime) { + cc.fx.GameConfig.GM_INFO.userPowerTime = powerTime; + cc.fx.StorageMessage.setStorage("userPowerTime", powerTime); + } + else { + cc.fx.GameConfig.GM_INFO.userPowerTime = 0; + cc.fx.StorageMessage.setStorage("userPowerTime", 0); + } + } + //服务器缓存小于本地缓存,以本地缓存为主 + else { + if (powerTime > nowTime) { + cc.fx.GameConfig.GM_INFO.userPowerTime = powerTime; + cc.fx.StorageMessage.setStorage("userPowerTime", powerTime); + } + else { + cc.fx.GameConfig.GM_INFO.userPowerTime = 0; + cc.fx.StorageMessage.setStorage("userPowerTime", 0); + } + } + } + //本地有缓存,服务器没缓存 + else { + if (powerTime > nowTime) { + cc.fx.GameConfig.GM_INFO.userPowerTime = powerTime; + cc.fx.StorageMessage.setStorage("userPowerTime", powerTime); + } + else { + cc.fx.GameConfig.GM_INFO.userPowerTime = 0; + cc.fx.StorageMessage.setStorage("userPowerTime", 0); + } + } + } + } + //#region 设置月卡信息 + /** 设置月卡信息 */ + setmonth(data) { + //如果给的时间戳大于当前时间hpmax=7,否则等于5 + let nowTime = Math.floor(Date.now() / 1000); + if (data.data.monthCardTime > nowTime) { + cc.fx.GameConfig.GM_INFO.hp_Max = 7; + cc.fx.GameConfig.GM_INFO.doubleCoin = 2; + } else { + cc.fx.GameConfig.GM_INFO.hp_Max = 5; + cc.fx.GameConfig.GM_INFO.doubleCoin = 1; + } + //本地储存当前服务器时间 + let dateStr = new Date(data.data.monthCardTime); + cc.fx.StorageMessage.setStorage("mCardDate", dateStr); + } + //#region 复活购买次数初始化 + /** 复活购买次数初始化 */ + setRevive(data) { + cc.fx.GameConfig.GM_INFO.revive = data.data.rebornGiftCount; + } + //#region 获取有没有分享信息 + /** 获取有没有分享信息 */ + getShareInfo() { + // 检查微信小游戏启动参数 + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + //@ts-ignore + const launchOptions = wx.getLaunchOptionsSync(); + const query = launchOptions.query; + if (query.level && query.uid) { + const level = parseInt(query.level, 10); + const uid = query.uid; + cc.fx.GameConfig.GM_INFO.otherUid = uid; + cc.fx.GameConfig.GM_INFO.otherLevel = level; + // 可以在这里处理关卡信息和 UID + } + } + } + //#region 获取是否授权 + /** 获取是否授权 */ + getSetting() { + MiniGameSdk.API.getWechatUserInfo((res) => { + }) + } + /** 主循环,判断是否各项加载完成进入游戏 */ + update(dt) { + if (this.load1 && this.load2 && this.load3 && this.load4 && this.load5 && this.load6 == true && this.timeNumber <= 0) { + this.load1 = this.load2 = false; + MiniGameSdk.API.shushu_Login(); + MiniGameSdk.API.yinli_Init(); + MiniGameSdk.API.yinli_Login(); + this.startGame(); + } + } +} diff --git a/assets/Script/GameManager.ts.meta b/assets/Script/GameManager.ts.meta new file mode 100644 index 0000000..d96129d --- /dev/null +++ b/assets/Script/GameManager.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "df248952-2e59-4e66-9087-c06a90e587b7", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/GameOver.ts b/assets/Script/GameOver.ts new file mode 100644 index 0000000..e8d13c3 --- /dev/null +++ b/assets/Script/GameOver.ts @@ -0,0 +1,185 @@ + +const {ccclass, property} = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + @property(cc.Label) + count: cc.Label = null; + @property(cc.Label) + time: cc.Label = null; + @property(cc.Node) + selfNode: cc.Node = null; + @property(cc.Node) + one: cc.Node = null; + @property(cc.Node) + two: cc.Node = null; + @property(cc.Node) + three: cc.Node = null; + @property(cc.Node) + four: cc.Node = null; + @property(cc.Node) + five: cc.Node = null; + listData: any; + selfData: any; + // onLoad () {} + start () { + this.count.string = cc.fx.GameConfig.GM_INFO.score + ""; + var yes = 0; + var successList = cc.fx.GameConfig.GM_INFO.successList; + if(successList.length > 0){ + var success = 0; + for(let i=0; ithis.getRankData(data)); + } + //打开排行榜 + jumpFinishi(){ + let url = "https://train.sparkus.cn/poster/game/" + cc.fx.GameConfig.GM_INFO.scode + "?suc=1"; + window.location.href = url; + } + //设置排行信息 + getRankData(data){ + if(data){ + cc.fx.GameTool.getRankData(data,this,4); + cc.fx.GameTool.setPic(this.selfNode.getChildByName("pic").getChildByName("icon"),this.selfData.pic); + var length = this.listData.length-1; if(length > 4) length = 4; + for(let i=0;i<=length;i++){ + this.setRank(i,this.listData[i]); + } + } + } + //根据内容填充排行榜 + setRank(num,data){ + if(!data){ + return; + } + + var hitNode = null; + if(num == 0){ + hitNode = this.one; + } + else if(num == 1){ + hitNode = this.two; + } + else if(num == 2){ + hitNode = this.three; + } + else if(num == 3){ + hitNode = this.four; + } + else if(num == 4){ + hitNode = this.five; + } + + let trun = num + 1; + for(let i=0; i< trun; i++){ + if(this.listData[i] && this.listData[i].nickName == cc.fx.GameConfig.GM_INFO.nickName){ + trun = i + 1; + break; + } + else if(!this.listData[i] == null ){ + trun = i * 2; + break; + } + this.node.color = cc.color(this.listData[0],this.listData[1],this.listData[2]); + cc.tween(this.node) + .to(0.5,{scale:2}) + .by(1,{opacity:0}) + .delay(0.5) + .call(() =>{ + this.node.scale = 1; + this.node.opacity = 255; + this.node.color = cc.color(255,255,255); + }) + .start(); + } + + hitNode.getChildByName("num").getComponent(cc.Label).string = num + ""; + cc.tween(hitNode.getChildByName("num").getComponent(cc.Label)) + .to(0.5,{string:trun+""}) + .start(); + + let record = cc.fx.GameConfi.GM_INFO.score; + if(data.score >= record){ + this.selfData = data; + this.selfNode.active = true; + } + + if(hitNode){ + hitNode.active = true; + if(data.nickName.length >= 4) + data.nickName = cc.fx.GameTool.subName(data.nickName,4); + hitNode.getChildByName("name").getComponent(cc.Label).string = data.nickName; + hitNode.getChildByName("total").getComponent(cc.Label).string = data.score; + cc.fx.GameTool.setPic(hitNode.getChildByName("pic").getChildByName("icon"),data.pic); + } + } +} diff --git a/assets/Script/GameOver.ts.meta b/assets/Script/GameOver.ts.meta new file mode 100644 index 0000000..b407263 --- /dev/null +++ b/assets/Script/GameOver.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "805c69df-dfdf-4759-97ae-5a7341f424c7", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/GameScene.js b/assets/Script/GameScene.js new file mode 100644 index 0000000..1cf57d4 --- /dev/null +++ b/assets/Script/GameScene.js @@ -0,0 +1,48 @@ + +// cc.Class({ +// extends: cc.Component, +// properties: { +// localTest: { +// default: false, +// tooltip: '本地测试时勾选,避免tz_url和Configure报错,提交前勾掉' +// }, +// clientTest: { +// default: false, +// tooltip: '客户端测试时勾选,展示版本标记方便测试区分,上线前勾掉' +// }, +// clientTestVersion: { +// default: '', +// tooltip: '版本标记' +// }, +// testVersion: cc.Label, +// score: cc.Label, +// double_hit: cc.Node, +// add: cc.Node, +// add2: cc.Node, +// double_title: cc.Node, +// count_time: cc.Node, +// beginNode: cc.Node, +// ball_nomal: [cc.SpriteFrame], +// bg_nomal: [cc.SpriteFrame], +// ball_light: [cc.SpriteFrame], +// kuang_Frame: [cc.SpriteFrame], +// daojishi: cc.Label, +// pause_anniu: cc.Sprite, +// mask: cc.Node, + +// flashUI: { +// default: null, +// type: cc.SpriteAtlas +// }, +// }, + +// onLoad() { + + +// }, + +// update(dt) { + +// }, + +// }); \ No newline at end of file diff --git a/assets/Script/GameScene.js.meta b/assets/Script/GameScene.js.meta new file mode 100644 index 0000000..aaf124f --- /dev/null +++ b/assets/Script/GameScene.js.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "e8b23e56-8d10-44ad-a8f0-2e637cc45533", + "importer": "javascript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/ItemGuide.ts b/assets/Script/ItemGuide.ts new file mode 100644 index 0000000..e9ebcbb --- /dev/null +++ b/assets/Script/ItemGuide.ts @@ -0,0 +1,101 @@ + + +import JiaZai from "./JiaZai"; +import MapConroler from "./Map"; + +const { ccclass, property } = cc._decorator; + + +@ccclass +export default class ItemGuide extends cc.Component { + static _instance: any; + time: number = 0; + //需要替换的三个道具节点 + @property([cc.Node]) + itemList: cc.Node[] = []; + @property(cc.Node) + itemGuide: cc.Node = null; + //道具节点的图片 + @property([cc.SpriteFrame]) + itemSpriteList: cc.SpriteFrame[] = []; + //飞的目标节点 + @property([cc.Node]) + targetNode: cc.Node[] = []; + onLoad() { + if (cc.fx.GameConfig.GM_INFO.level + 1 == 8) { + this.itemList[0].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[0]; + this.itemList[1].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[1]; + this.itemList[2].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[2]; + this.itemList[3].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[12]; + } else if (cc.fx.GameConfig.GM_INFO.level + 1 == 11) { + this.itemList[0].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[3]; + this.itemList[1].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[4]; + this.itemList[2].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[5]; + this.itemList[3].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[12]; + } else if (cc.fx.GameConfig.GM_INFO.level + 1 == 16) { + this.itemList[0].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[6]; + this.itemList[1].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[7]; + this.itemList[2].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[8]; + this.itemList[3].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[12]; + } + else if (cc.fx.GameConfig.GM_INFO.winStreakFirst == true) { + this.itemList[0].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[9]; + this.itemList[1].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[10]; + this.itemList[2].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[11]; + this.itemList[3].getComponent(cc.Sprite).spriteFrame = this.itemSpriteList[13]; + } + } + + start() { + } + //关闭引导 + closeGuide() { + this.node.children.forEach((item) => { + item.active = false; + }) + this.node.children[0].active = true; + this.node.children[0].getComponent(cc.Sprite).spriteFrame = null; + this.itemGuide.active = true; + this.itemGuide.zIndex = 1000; + //获取目标节点的位置并且转换到itemGuide的位置的层级 + let index = 0; + if (cc.fx.GameConfig.GM_INFO.level + 1 == 8) { + cc.fx.GameConfig.GM_INFO.hammerFirst = false; + index = 0; + } else if (cc.fx.GameConfig.GM_INFO.level + 1 == 11) { + cc.fx.GameConfig.GM_INFO.freezeFirst = false; + index = 1; + } else if (cc.fx.GameConfig.GM_INFO.level + 1 == 16) { + cc.fx.GameConfig.GM_INFO.magicAFirst = false; + index = 2; + } + else if (cc.fx.GameConfig.GM_INFO.winStreakFirst == true) { + cc.fx.GameConfig.GM_INFO.winStreakFirst = false; + index = 0; + } + let pos = this.targetNode[index].convertToWorldSpaceAR(cc.Vec3.ZERO); + pos = this.node.convertToNodeSpaceAR(pos); + this.itemGuide.zIndex = 1000; + //同时改变大小和位置 + MapConroler._instance.setPropNum(); + // if (this.itemGuide.active == true) { + + cc.tween(this.itemGuide) + .to(0.9, { scale: 0.3, position: pos }) // 同时执行 + .call(() => { + MapConroler._instance.setPropNum(); + this.node.active = false; + }) + .start(); + // } + + + } + //显示引导 + showGuide() { + this.node.active = true; + this.node.children[0].active = true; + } + + // update (dt) {} +} diff --git a/assets/Script/ItemGuide.ts.meta b/assets/Script/ItemGuide.ts.meta new file mode 100644 index 0000000..22f460d --- /dev/null +++ b/assets/Script/ItemGuide.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "54996cd2-afca-4734-b3a6-9aa9d34465de", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts new file mode 100644 index 0000000..305c20d --- /dev/null +++ b/assets/Script/JiaZai.ts @@ -0,0 +1,1731 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import GameManager from "./GameManager"; +import MapConroler from "./Map"; +import NumberToImage from "./NumberToImage"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; +import { LQCollideSystem } from "./lq_collide_system/lq_collide_system"; +import AudioManager from "./module/Music/AudioManager"; +import Utils from "./module/Pay/Utils"; +const { ccclass, property } = cc._decorator; + +@ccclass +export default class JiaZai extends cc.Component { + + // 缓存 shop 预制体 + private static cachedShopPrefab: cc.Prefab | null = null; + // 缓存 shop 节点 + private shopNode: cc.Node | null = null; + + // 缓存 reward 预制体 + private static cachedRewardPrefab: cc.Prefab | null = null; + // 缓存 reward 奖励窗口 节点 + private RewardNode: cc.Node | null = null; + //缓存月卡 + private static cachedMonthlyCardPrefab: cc.Prefab | null = null; + // 缓存月卡节点 + private monthlyCardNode: cc.Node | null = null; + + // 缓存 预制体 + private static cachedActionPrefab: cc.Prefab | null = null; + // 缓存 新手活动节点 节点 + private actionpNode: cc.Node | null = null; + private static cachedAvatarPrefab: cc.Prefab | null = null; + private AvatarNode: cc.Node | null = null; + private static cachedDailyQuestsPrefab: cc.Prefab | null = null; + private dailyQuestsNode: cc.Node | null = null; + private static cachedWinStreakPrefab: cc.Prefab | null = null; + private winStreakNode: cc.Node | null = null; + + @property(cc.EditBox) + custom: cc.EditBox = null; + + + + @property({ type: [cc.SpriteAtlas], tooltip: "方块颜色" }) + Block_Color: Array = []; + + @property(cc.SpriteAtlas) + liuGuang: cc.SpriteAtlas = null; + + @property(cc.SpriteAtlas) + avatarUI: cc.SpriteAtlas = null; + + + + @property(cc.Node) + level: cc.Node = null; + + @property(cc.Node) + coin: cc.Node = null; + + // 健康值 + @property(cc.Prefab) + health: cc.Prefab = null; + @property(cc.Node) + Stamina: cc.Node = null; + scheduleCallback: any; + private heath: any; // 用于存储heath预制体 + private lastPauseClickTime: number = 0; // 用于记录上次点击的时间戳 + // 弹窗倒计时调度器 + private heathScheduleCallback: Function = null; + @property(cc.Node) + setUi: cc.Node = null; + scheduleCallback2: any; + scheduleCallback3: any; + private isFirstLaunch: boolean = true; // 添加首次启动标志 + newbieGift: any; // 用于存储heath预制体 + dailyQuestsShow: boolean = false; // 每日任务加载 + winStreakShow: boolean = false; // 连胜活动是否展示 + // //月卡 + // @property(cc.Node) + // monthCardBtn: cc.Node = null; + // @property(cc.Node) + // monthCardBtn2: cc.Node = null; + // @property(cc.Node) + // monthCardTime: cc.Node = null; + // @property(cc.Node) + // monthCard: cc.Node = null; + //月卡领取 + @property(cc.Node) + getcard: cc.Node = null; + @property(cc.Node) + cardTime: cc.Node = null; + // LIFE-CYCLE CALLBACKS: + private onShowListener: () => void; + private onHideListener: () => void; + // LIFE-CYCLE CALLBACKS: + + onLoad() { + if (cc.fx.GameConfig.GM_INFO.otherUid != "") { + this.getShareInfo(); + } + this.node.getChildByName("zhuanchang").zIndex = 1000; + this.closeLoad(); + this.checkShare(); + this.closeAvatar(); + this.setShareInfo(); + this.checkTasks(); + // this.checkDailyQuests(); + //console.log("进入首页获取的share", cc.fx.GameConfig.GM_INFO.otherUid, cc.fx.GameConfig.GM_INFO.otherLevel); + + + cc.game.setFrameRate(63); + LQCollideSystem.is_enable = true; + //新手礼包 + this.newbieGift = false; + this.Stamina.parent.getChildByName("xinshou").active = false; + this.winStreakShow = false; + this.checkStarter_pack(); + //每日任务 + this.dailyQuestsShow = false; + + // //console.log("加载关卡配置2"); + // window.initMgr(); + GameManager._instance.Block_Color = this.Block_Color; + let version = cc.fx.GameTool.getWechatGameVersion(); + if (version == "开发版" || version == "体验版") { + this.node.getChildByName("Load").getChildByName("New EditBox").active = true; + } + else if (version == "正式版") { + this.node.getChildByName("Load").getChildByName("New EditBox").active = false; + if (cc.fx.GameConfig.GM_INFO.openid) { + if (cc.fx.GameConfig.GM_INFO.openid == "orm8I7N10NSQdAhN4LP04n8UP56I") { + this.node.getChildByName("Load").getChildByName("New EditBox").active = true; + cc.fx.GameTool.changeCoin(99999); + } + } + } + else { + this.node.getChildByName("Load").getChildByName("New EditBox").active = true; + } + + // 预加载 活动 预制体 + if (!JiaZai.cachedActionPrefab) { + cc.assetManager.loadBundle('action_bundle', (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + cc.error(err.message || err); + return; + } + bundle.load('prefab/newbieGift', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedActionPrefab = prefab; + }); + bundle.load('prefab/Avatar', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedAvatarPrefab = prefab; + console.log("头像预制体已经准备好"); + }); + bundle.load('prefab/dailyQuests', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedDailyQuestsPrefab = prefab; + console.log("每日任务预制体已经准备好"); + }); + bundle.load('prefab/winStreak', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedWinStreakPrefab = prefab; + console.log("连胜活动预制体已经准备好"); + }); + + }); + } + // 预加载 shop 预制体 + if (!JiaZai.cachedShopPrefab) { + cc.assetManager.loadBundle('shop', (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + cc.error(err.message || err); + return; + } + bundle.load('prefab/shop', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedShopPrefab = prefab; + }); + bundle.load('prefab/RewardWindow', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedRewardPrefab = prefab; + this.getOrder(); + }); + bundle.load('prefab/monthlyCard', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedMonthlyCardPrefab = prefab; + //等级大于16开启 + if (cc.fx.GameConfig.GM_INFO.level >= 16) { + let top = this.node.getChildByName("Load").getChildByName("Top"); + top.getChildByName("yicon").active = true; + this.monthH(); + }; + }); + }); + } + + + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + if (cc.fx.GameConfig.GM_INFO.first) { + this.setFirstInfo(); + cc.fx.GameConfig.GM_INFO.first = false; + } + let power = cc.fx.GameTool.getUserPowerTime(); + if (cc.fx.GameConfig.GM_INFO.hp < 1 && power == false) { + MiniGameSdk.API.showToast("体力值不足,无法进入好友关卡"); + setTimeout(() => { + this.openHeath(); + }, 1000); + return; + } + else { + // this.closeLoad(); + cc.fx.GameConfig.LEVEL_INFO_init(true, 1000); + } + } + else { + if (cc.fx.GameConfig.GM_INFO.first) { + //console.log("————————准备注册事件", cc.fx.GameConfig.GM_INFO.openid); + this.setFirstInfo(); + cc.fx.AudioManager._instance.playEffect("zhuan1", null); + this.node.getChildByName("zhuanchang").active = true; + this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); + setTimeout(() => { + cc.fx.GameConfig.GM_INFO.first = false; + cc.director.loadScene("GameScene"); + }, 1000); + } + } + + //console.log("音乐开关", cc.fx.GameConfig.GM_INFO.musicOpen); + AudioManager._instance.playMusicGame(); + + this.onGames(); + } + //监听后台 + onGames() { + //@ts-ignore + if (typeof wx !== 'undefined') { + this.onShowListener = null; + this.onHideListener = null; + // 定义监听函数 + this.onShowListener = () => { + this.onGameShow(); + + }; + this.onHideListener = () => { + this.onGameHide(); + }; + //@ts-ignore + wx.onShow(this.onShowListener); + //@ts-ignore + wx.onHide(this.onHideListener); + + } + } + onGameHide() { + // console.log("执行onGameHide", cc.fx.GameConfig.GM_INFO.min_Time); + if (this.isFirstLaunch != null && this.isFirstLaunch != undefined) this.isFirstLaunch = false; + if (this) { + if (this.node) { + this.stopHeathTimeCutDown(); + this.stopTimeCutDown(); + this.stopPowerTime(); + } + } + + } + + onGameShow() { + // console.log("执行开始游戏gameshow"); + cc.fx.GameTool.getHealth((data) => { + if (this.level) { + NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 43, 15, "level_", this.level, true); + } + if (this.coin) { + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + this.setHealthInfo(true); + } + }); + // console.log("执行on", cc.fx.GameConfig.GM_INFO.min_Time); + if (this) { + if (this.node) { + if (this.node.getChildByName("heathpop")) { + if (this.node.getChildByName("heathpop").active == true) { + const heathComponent = this.node.getChildByName("heathpop").getComponent("heathnum"); + if (heathComponent && heathComponent.timeNode && + cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) { + this.startHeathTimeCutDown(heathComponent.timeNode); + } + } + } + + } + } + + } + + start() { + // //console.log("已经进入Home界面"); + // //console.log("金币",cc.fx.GameConfig.GM_INFO.coin); + // //console.log("关卡",cc.fx.GameConfig.GM_INFO.level+1); + this.updatePower(); + + + cc.fx.GameTool.getHealth((data) => { + NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 43, 15, "level_", this.level, true); + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + this.setHealthInfo(true); + }); + // cc.fx.GameConfig.LEVEL_INFO_init(false,0); + + if (cc.fx.GameConfig.GM_INFO.gameState) { + this.node.getChildByName("zhuanchang").active = true; + setTimeout(() => { + cc.fx.AudioManager._instance.playEffect("zhuan2", null); + this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "down", false); + this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setCompleteListener((entry) => { + if (entry.animation.name === "down" && !cc.fx.GameConfig.GM_INFO.first) { + // 动画播放结束后执行的逻辑 + this.node.getChildByName("zhuanchang").active = false; + if (this.newbieGift) this.openStarter_pack(); + } + }); + }, 500); + } + else { + if (!cc.fx.GameConfig.GM_INFO.first) { + this.node.getChildByName("zhuanchang").active = false; + if (this.newbieGift) this.openStarter_pack(); + } + + } + // //打开heath弹窗 + // this.openHeath(); + this.uploadToCloud(cc.fx.GameConfig.GM_INFO.level + 1); + + // this.getMonthlyCardValidityDays(); + this.rewarded(); + + //判断过期 + cc.fx.GameTool.checkExpiration(); + let isExpired = cc.fx.GameTool.checkExpiration(); + if (isExpired) { + const validityTime = cc.fx.StorageMessage.getStorage("mCardDate"); // 后端返回的到期时间戳(毫秒) + const today = new Date(); + today.setHours(0, 0, 0, 0); + const todayMidnight = today.getTime(); + const expiryDate = new Date(validityTime); + expiryDate.setHours(0, 0, 0, 0); + const expiryMidnight = expiryDate.getTime(); + const diffMs = expiryMidnight - todayMidnight; + const days = Math.floor(diffMs / 86400000); + const remainingDays = Math.max(0, days); + cc.fx.GameConfig.GM_INFO.monthTime = remainingDays; + } + + + if (cc.fx.GameConfig.GM_INFO.level >= 16) { + let top = this.node.getChildByName("Load").getChildByName("Top"); + top.getChildByName("yicon").active = true; + if (JiaZai.cachedMonthlyCardPrefab) { + this.monthH(); + } + }; + + if (cc.fx.GameConfig.GM_INFO.level >= 17) { + let top = this.node.getChildByName("Load").getChildByName("Top"); + top.getChildByName("hammer").active = true; + } + else { + let top = this.node.getChildByName("Load").getChildByName("Top"); + top.getChildByName("hammer").active = false; + } + } + + checkDailyQuests() { + cc.fx.GameTool.getDailyQuestsInfo((data) => { + }) + } + + openAvatar() { + if (!JiaZai.cachedAvatarPrefab) { + console.log('Avatar prefab is not loaded yet.'); + cc.assetManager.loadBundle('action_bundle', (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + cc.error(err.message || err); + return; + } + bundle.load('prefab/Avatar', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedAvatarPrefab = prefab; + if (!this.AvatarNode) { + // 第一次使用,创建节点 + this.AvatarNode = cc.instantiate(JiaZai.cachedAvatarPrefab); + this.node.addChild(this.AvatarNode); + this.AvatarNode.getComponent("Avatar").init(); + } else { + // 非第一次使用,直接激活节点 + this.AvatarNode.active = true; + this.AvatarNode.getComponent("Avatar").init(); + } + }); + }); + return; + } + if (!this.AvatarNode) { + // 第一次使用,创建节点 + this.AvatarNode = cc.instantiate(JiaZai.cachedAvatarPrefab); + this.node.addChild(this.AvatarNode); + this.AvatarNode.getComponent("Avatar").init(); + } else { + // 非第一次使用,直接激活节点 + this.AvatarNode.active = true; + this.AvatarNode.getComponent("Avatar").init(); + } + } + + closeAvatar() { + console.log("最终头像:", cc.fx.GameConfig.GM_INFO.useravatarIcon); + console.log("最终头像框:", cc.fx.GameConfig.GM_INFO.useravaterkuang); + let top = this.node.getChildByName("Load").getChildByName("Top"); + if (this.AvatarNode) this.AvatarNode.active = false; + if (cc.fx.GameConfig.GM_INFO.useravatarIcon.length > 10) { + console.log("获取头像链接:", cc.fx.GameConfig.GM_INFO.useravatarIcon); + cc.assetManager.loadRemote(cc.fx.GameConfig.GM_INFO.useravatarIcon, { ext: '.png' }, (err, texture: cc.Texture2D) => { + if (texture) { + top.getChildByName("avatar").getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture); + } + top.getChildByName("avatar").opacity = 255; + }) + } else { + top.getChildByName("avatar").getComponent(cc.Sprite).spriteFrame = + this.avatarUI.getSpriteFrame(cc.fx.GameConfig.GM_INFO.useravatarIcon); + top.getChildByName("avatar").opacity = 255; + } + + top.getChildByName("kuang").getComponent(cc.Sprite).spriteFrame = + this.avatarUI.getSpriteFrame(cc.fx.GameConfig.GM_INFO.useravaterkuang); + top.getChildByName("kuang").opacity = 255; + cc.fx.GameTool.setUserAvatar(); + } + + // 打开heath弹窗,创建预制体并启动自己的倒计时 + openHeath() { + let health = cc.instantiate(this.health); + this.node.addChild(health); + let heathPop = health.getComponent("heathnum").heatht; + heathPop.scale = 2; + this.heath = heathPop; // 保存heath预制体引用 + let swichs = health.getComponent("heathnum").switchNode; + let timeNode = health.getComponent("heathnum").timeNode; + let switchButtons = health.getComponent("heathnum").switchButtons; + let coin = health.getComponent("heathnum").coin; + let pauseNode = health.getChildByName("heath"); + cc.fx.AudioManager._instance.playEffect("tanchuang", null); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + // 启动弹窗自己的倒计时 + if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) { + this.startHeathTimeCutDown(timeNode); + } + + if (cc.fx.GameConfig.GM_INFO.hp == 0) { + if (cc.fx.GameConfig.GM_INFO.userPowerTime == 0) { + // 体力为0,显示spriteFrames[1],只显示第二个按钮 + if (switchButtons[0]) { switchButtons[0].active = false; swichs[0].active = false; } + if (switchButtons[1]) { switchButtons[1].active = true; swichs[1].active = true; } + } + else { + if (switchButtons[0]) { switchButtons[0].active = true; swichs[0].active = false; } + if (switchButtons[1]) { switchButtons[1].active = false; swichs[1].active = true; } + } + + } else if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max && cc.fx.GameConfig.GM_INFO.hp > 0) { + // 体力小于5但大于0,显示spriteFrames[1],只显示第一个按钮 + if (switchButtons[0]) { switchButtons[0].active = true; swichs[0].active = false; } + if (switchButtons[1]) { switchButtons[1].active = false; swichs[1].active = true; } + } else if (cc.fx.GameConfig.GM_INFO.hp >= cc.fx.GameConfig.GM_INFO.hp_Max) { + + // 体力为5,显示spriteFrames[0],只显示第一个按钮 + if (switchButtons[0]) { switchButtons[0].active = true; swichs[0].active = true; } + if (switchButtons[1]) { switchButtons[1].active = false; swichs[1].active = false; } + } + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 40, 20, "time_", heathPop, true); + // 设置金币花费数 + + // NumberToImage.numberToImageNodes(1000, 35, 15, "button_", coin, true); + + + } + + // 弹窗倒计时 + startHeathTimeCutDown(timeLabelNode?: cc.Node) { + this.stopHeathTimeCutDown(); + this.heathScheduleCallback = function () { + if (cc.fx.GameConfig.GM_INFO.min_Time <= 0) { + this.stopHeathTimeCutDown(); + + let timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + //console.log("健康值倒计时结束,当前时间:", timeTemp, cc.fx.GameConfig.GM_INFO.min_Time); + if (timeLabelNode) { + NumberToImage.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time, 50, "month_", timeLabelNode); + } + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 40, 20, "month_", this.heath, true); + } else { + let timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + if (timeLabelNode) { + NumberToImage.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time, 50, "month_", timeLabelNode); + } + } + }.bind(this); + this.heathScheduleCallback(); + this.schedule(this.heathScheduleCallback, 1); + } + + stopHeathTimeCutDown() { + if (this.heathScheduleCallback) { + this.unschedule(this.heathScheduleCallback); + this.heathScheduleCallback = null; + } + } + //开始倒计时 恢复体力 + startTimeCutDown() { + this.stopTimeCutDown(); + this.scheduleCallback = function () { + if (cc.fx.GameConfig.GM_INFO.min_Time <= 0) { + this.stopTimeCutDown(); + var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + // 同步显示 + if (this.Stamina && this.Stamina.getChildByName("time")) { + this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp; + } + if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) { + // MiniGameSdk.API.showToast("恢复一点体力"); + cc.fx.GameTool.setUserHealth(1, (data) => { + cc.fx.GameTool.getHealth((data) => { + this.setHealthInfo(true); + }); + }, true) + } + + } + else { + cc.fx.GameConfig.GM_INFO.min_Time -= 1; + var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + // 同步显示 + if (this.Stamina && this.Stamina.getChildByName("time")) { + let power = cc.fx.GameTool.getUserPowerTime(); + if (!power) this.Stamina.getChildByName("time").opacity = 255; + else this.Stamina.getChildByName("time").opacity = 0; + this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp; + } + } + // console.log(cc.fx.GameConfig.GM_INFO.hp, cc.fx.GameConfig.GM_INFO.hp_Max, "月卡体力"); + }.bind(this); + this.schedule(this.scheduleCallback, 1); + } + // 停止倒计时 恢复体力 + stopTimeCutDown() { + if (this.scheduleCallback) { + this.unschedule(this.scheduleCallback); + this.scheduleCallback = null; + } + } + + startPowerTime() { + this.stopPowerTime(); + if (this.scheduleCallback2) { + this.unschedule(this.scheduleCallback2); + } + this.scheduleCallback2 = function () { + let nowTime = Math.floor(Date.now() / 1000); + if (cc.fx.GameConfig.GM_INFO.userPowerTime < nowTime) { + this.Stamina.getChildByName("skyLine").active = false; + this.stopPowerTime(); + this.setHealthInfo(true); + return; + } + else { + this.Stamina.getChildByName("skyLine").active = true; + this.Stamina.getChildByName("time").opacity = 0; + this.Stamina.getChildByName("man").active = false; + } + let time = cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime; + if (time <= 0) { + time = 0; + this.Stamina.getChildByName("skyLine").active = false; + this.stopPowerTime(); + this.setHealthInfo(true); + var timeTemp = cc.fx.GameTool.getTimeMargin2(time); + // 同步显示 + if (this.Stamina && this.Stamina.getChildByName("skyLine").getChildByName("skyTime")) { + this.Stamina.getChildByName("skyLine").getChildByName("skyTime").getComponent(cc.Label).string = timeTemp; + } + } + else { + var timeTemp = cc.fx.GameTool.getTimeMargin2(time); + // 同步显示 + if (this.Stamina && this.Stamina.getChildByName("skyLine").getChildByName("skyTime")) { + this.Stamina.getChildByName("skyLine").getChildByName("skyTime").getComponent(cc.Label).string = timeTemp; + } + } + }.bind(this); + this.schedule(this.scheduleCallback2, 1); + } + + stopPowerTime() { + cc.fx.GameTool.getUserPowerTime(); + if (this.scheduleCallback2) { + this.unschedule(this.scheduleCallback2); + this.scheduleCallback2 = null; + } + } + + uploadToCloud(level: number) { + //@ts-ignore + if (typeof wx !== 'undefined') { + //@ts-ignore + wx.setUserCloudStorage({ + KVDataList: [ + { key: 'level', value: String(level) } + ], + success: () => console.log('✅ 数据上传成功'), + fail: (err) => console.error('❌ 上传失败', err) + }); + } + } + + + setHealthInfo(type) { + if (cc.fx.GameConfig.GM_INFO.hp >= cc.fx.GameConfig.GM_INFO.hp_Max) { + if (cc.fx.GameConfig.GM_INFO.userPowerTime != 0) { + let nowTime = Math.floor(Date.now() / 1000); + if (cc.fx.GameConfig.GM_INFO.userPowerTime > nowTime) { + this.stopPowerTime(); + this.startPowerTime(); + //console.log("还有无限体力时间_____________", (cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime)); + this.Stamina.getChildByName("skyLine").active = true; + this.Stamina.getChildByName("time").opacity = 0; + this.Stamina.getChildByName("man").active = false; + } + else { + this.Stamina.getChildByName("skyLine").active = false; + //console.log("无限体力时间已过期"); + this.Stamina.getChildByName("man").active = true; + } + } + else { + this.Stamina.getChildByName("man").active = true; + } + + this.Stamina.getChildByName("health").active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 25, 15, "hp_", this.Stamina.getChildByName("health"), false); + this.Stamina.getChildByName("time").active = false; + } + else { + this.Stamina.getChildByName("man").active = false; + this.Stamina.getChildByName("health").active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 25, 15, "hp_", this.Stamina.getChildByName("health"), false); + this.Stamina.getChildByName("time").active = true; + if (cc.fx.GameConfig.GM_INFO.min_Time != 0) { + let time = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + this.Stamina.getChildByName("time").getComponent(cc.Label).string = time; + let power = cc.fx.GameTool.getUserPowerTime(); + if (!power) this.Stamina.getChildByName("time").opacity = 255; + else this.Stamina.getChildByName("time").opacity = 0; + // console.log("______________________启动计时器"); + this.stopTimeCutDown(); + this.startTimeCutDown(); + } + } + } + + + startGame() { + cc.fx.AudioManager._instance.playEffect("anniu_Big", null); + let version = cc.fx.GameTool.getWechatGameVersion(); + if (cc.fx.GameTool.maxLevel()) { + if (version != "开发版" && version != "体验版") { + MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); + return; + } + + } + + let power = cc.fx.GameTool.getUserPowerTime(); + if (cc.fx.GameConfig.GM_INFO.hp < 1 && power == false) { + MiniGameSdk.API.showToast("体力值不足"); + setTimeout(() => { + this.openHeath(); + }, 500); + return; + } + //@ts-ignore + if (typeof wx !== 'undefined') { + //@ts-ignore + wx.offShow(this.onShowListener); + //@ts-ignore + wx.offHide(this.onHideListener); + } + + if (this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl")._touch) { + this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl").setTouch(false); + let version = cc.fx.GameTool.getWechatGameVersion(); + if (version == "开发版" || version == "体验版") { + if (this.custom.string != "") { + cc.fx.GameConfig.GM_INFO.level = parseInt(this.custom.string) - 1; + // cc.fx.StorageMessage.setStorage("level",cc.fx.GameConfig.GM_INFO.level.toString()); + if (cc.fx.GameTool.maxLevel()) { + MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); + return; + } + cc.fx.GameConfig.LEVEL_INFO_init(true); + } + else { + cc.fx.AudioManager._instance.playEffect("zhuan1", null); + this.node.getChildByName("zhuanchang").active = true; + this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); + if (cc.fx.GameTool.maxLevel()) { + MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); + return; + } + cc.fx.GameConfig.LEVEL_INFO_init(true, 1000); + } + } + else if (version == "正式版") { + if (cc.fx.GameTool.maxLevel()) { + MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); + return; + } + cc.fx.AudioManager._instance.playEffect("zhuan1", null); + this.node.getChildByName("zhuanchang").active = true; + this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); + + cc.fx.GameConfig.LEVEL_INFO_init(true, 1000); + } + else { + if (this.custom.string != "") { + cc.fx.GameConfig.GM_INFO.level = parseInt(this.custom.string) - 1; + // cc.fx.StorageMessage.setStorage("level",cc.fx.GameConfig.GM_INFO.level.toString()); + if (cc.fx.GameTool.maxLevel()) { + MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); + return; + } + cc.fx.GameConfig.LEVEL_INFO_init(true); + } + else { + cc.fx.AudioManager._instance.playEffect("zhuan1", null); + this.node.getChildByName("zhuanchang").active = true; + this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); + if (cc.fx.GameTool.maxLevel()) { + MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); + return; + } + cc.fx.GameConfig.LEVEL_INFO_init(true, 1000); + } + } + } + + + + } + + //打开商店 + openShop() { + if (!JiaZai.cachedShopPrefab) { + cc.error('Shop prefab is not loaded yet.'); + return; + } + + if (!this.shopNode) { + // 第一次使用,创建节点 + this.shopNode = cc.instantiate(JiaZai.cachedShopPrefab); + this.node.addChild(this.shopNode); + this.shopNode.getComponent("shop").init(); + } else { + // 非第一次使用,直接激活节点 + this.shopNode.active = true; + this.shopNode.getComponent("shop").init(); + } + //@ts-ignore + if (typeof wx !== 'undefined') { + // console.log("执行开始游戏shop") + //@ts-ignore + wx.offShow(this.onShowListener); + //@ts-ignore + wx.offHide(this.onHideListener); + } + } + + openRewardWindow(data, month?: number) { + if (!JiaZai.cachedRewardPrefab) { + cc.error('Reward prefab is not loaded yet.'); + return; + } + if (!this.RewardNode) { + // 第一次使用,创建节点 + this.RewardNode = cc.instantiate(JiaZai.cachedRewardPrefab); + this.node.addChild(this.RewardNode); + this.RewardNode.getComponent("Reward").init(data); + } + else { + this.RewardNode.destroy(); + this.RewardNode = null; + this.RewardNode = cc.instantiate(JiaZai.cachedRewardPrefab); + this.node.addChild(this.RewardNode); + this.RewardNode.getComponent("Reward").init(data); + } + this.RewardNode.zIndex = 1001; + this.updatePower(); + } + //打开月卡 + openMonthlyCard() { + if (!JiaZai.cachedMonthlyCardPrefab) { + cc.error('MonthlyCard prefab is not loaded yet.'); + return; + } + if (!this.monthlyCardNode) { + // 第一次使用,创建节点 + this.monthlyCardNode = cc.instantiate(JiaZai.cachedMonthlyCardPrefab); + this.node.addChild(this.monthlyCardNode); + this.monthlyCardNode.active = true; + this.monthlyCardNode.getComponent("monthlyCard").init(); + this.monthlyCardNode.getComponent("monthlyCard").juwai = true; + } else { + // 非第一次使用,直接激活节点 + this.monthlyCardNode.active = true; + this.monthlyCardNode.zIndex = 1000; + this.monthlyCardNode.getComponent("monthlyCard").init(); + this.monthlyCardNode.getComponent("monthlyCard").juwai = true; + } + //@ts-ignore + if (typeof wx !== 'undefined') { + // console.log("执行开始游戏monthlyCard") + //@ts-ignore + wx.offShow(this.onShowListener); + //@ts-ignore + wx.offHide(this.onHideListener); + } + + } + + openDailyQuests() { + this.dailyQuestsNode = null; + this.openLoad2(); + this.dailyQuestsShow = true; + cc.fx.GameTool.getDailyQuestsInfo((data) => { + this.dailyQuestsShow = false; + console.log("处理结果:", data); + this.closeLoad(); + + if (data.code != 1) { + MiniGameSdk.API.showToast("网络异常,请稍后重试!") + return; + } + if (!JiaZai.cachedDailyQuestsPrefab) { + // cc.error('Action prefab is not loaded yet.'); + cc.assetManager.loadBundle('action_bundle', (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + cc.error(err.message || err); + return; + } + bundle.load('prefab/dailyQuests', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedDailyQuestsPrefab = prefab; + if (!this.dailyQuestsNode) { + // 第一次使用,创建节点 + this.dailyQuestsNode = cc.instantiate(JiaZai.cachedDailyQuestsPrefab); + this.node.addChild(this.dailyQuestsNode); + this.dailyQuestsNode.getComponent("DailyQuests").init(data.data.task); + } else { + // 非第一次使用,直接激活节点 + this.dailyQuestsNode.active = true; + this.dailyQuestsNode.getComponent("DailyQuests").init(data.data.task); + } + }); + }); + return; + } + if (!this.dailyQuestsNode) { + // 第一次使用,创建节点 + this.dailyQuestsNode = cc.instantiate(JiaZai.cachedDailyQuestsPrefab); + this.node.addChild(this.dailyQuestsNode); + this.dailyQuestsNode.active = true; + this.dailyQuestsNode.getComponent("DailyQuests").init(data.data.task); + } else { + // 非第一次使用,直接激活节点 + this.dailyQuestsNode.active = true; + this.dailyQuestsNode.getComponent("DailyQuests").init(data.data.task); + } + }) + } + + // 关闭商店 + closeShop() { + if (this.shopNode) { + this.shopNode.active = false; + } + } + + closeRank() { + this.node.getChildByName("Rank").active = false; + } + + openRank() { + this.node.getChildByName("Rank").active = true; + } + + openReward() { + this.node.getChildByName("Reward").active = true; + } + + clickShop() { + // 假设已经获取到了 userId 和 productId + + + } + + + openPause() { + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + //console.log(cc.fx.GameConfig.GM_INFO); + if (cc.fx.GameConfig.GM_INFO.openid == undefined) { + //console.log(cc.fx.GameConfig.GM_INFO.openid); + cc.fx.GameConfig.GM_INFO.openid = ""; + } + this.node.getChildByName("Pause").active = true; + this.node.getChildByName("Pause").getChildByName("openID").getComponent(cc.Label).string = cc.fx.GameConfig.GM_INFO.openid; + } + + closePause() { + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + this.node.getChildByName("Pause").active = false; + + } + + openSet() { + const now = Date.now(); + if (now - this.lastPauseClickTime < 300) { + // 0.3秒内禁止再次点击 + return; + } + this.lastPauseClickTime = now; + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + if (cc.fx.GameConfig.GM_INFO.openid == undefined) { + cc.fx.GameConfig.GM_INFO.openid = ""; + } + if (!this.setUi.active) { + // 第一次点击,打开并播放动画 + this.setUi.active = true; + this.setUi.getComponent(cc.Animation).play(); + } else { + // 再次点击,关闭节点 + this.setUi.active = false; + } + } + + closeReward() { + this.node.getChildByName("Reward").active = false; + + } + + openStamina() { + this.node.getChildByName("Stamina").active = true; + } + + closeStamina() { + this.node.getChildByName("Stamina").active = false; + } + + updateCoin() { + //console.log("主页更新金币", cc.fx.GameConfig.GM_INFO.coin); + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + } + + getOrder() { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + // 判断设备系统 + let systemType = "Android"; + try { + //@ts-ignore + const systemInfo = wx.getSystemInfoSync(); + if (systemInfo.platform === 'ios') { + systemType = "ios"; + } + } catch (e) { + console.error('获取系统信息失败', e); + } + if (cc.fx.GameConfig.GM_INFO.allOutTradeNo.length != 0) { + console.log("有需要补发数据", cc.fx.GameConfig.GM_INFO.allOutTradeNo); + + // 递归函数,按顺序处理每个订单 + const processOrder = (index: number) => { + if (index >= cc.fx.GameConfig.GM_INFO.allOutTradeNo.length) { + return; // 所有订单处理完成 + } + + let order = cc.fx.GameConfig.GM_INFO.allOutTradeNo[index]; + console.log("需要补发数据", order); + if (order.itemid == "gold_1" || order.itemid == "gold_2" || order.itemid == "gold_3" + || order.itemid == "gold_4" || order.itemid == "gold_5" || order.itemid == "gold_6" + || order.itemid == "unlimited_health_bundle_10" || order.itemid == "unlimited_health_bundle_20" + || order.itemid == "unlimited_health_bundle_30" || order.itemid == "month_Card" || "reborn_Gift" + || order.itemid == "starter_pack" + ) { + this.openLoad(); + console.log("补发名称:", order.itemid); + let productId = order.itemid; + Utils.setPayInfo( + (res) => { + console.log("设置轮训结果:", res); + this.closeLoad(); + if (res.code === 1) { + console.log("7.14_________正式发货"); + let coinTemp = 0; + if (order.itemid == "gold_1") { coinTemp = 1200; } + else if (order.itemid == "gold_2") { coinTemp = 8000; } + else if (order.itemid == "gold_3") { coinTemp = 16000; } + else if (order.itemid == "gold_4") { coinTemp = 32000; } + else if (order.itemid == "gold_5") { coinTemp = 100000; } + else if (order.itemid == "gold_6") { coinTemp = 240000; } + else if (order.itemid == "unlimited_health_bundle_10") { coinTemp = 2500; } + else if (order.itemid == "unlimited_health_bundle_20") { coinTemp = 5000; } + else if (order.itemid == "unlimited_health_bundle_30") { coinTemp = 7500; } + else if (order.itemid == "month_Card") { + coinTemp = 6000; + cc.fx.GameConfig.GM_INFO.doubleCoin = 2; + cc.fx.GameConfig.GM_INFO.hp_Max = 7; + cc.fx.GameConfig.GM_INFO.hp = 7; + this.openLoad(); + this.buyMonthCard(productId); + } + else if (order.itemid == "reborn_Gift") { + coinTemp = 1000; + } + else if (order.itemid == "starter_pack") { + coinTemp = 3000; + cc.fx.GameConfig.GM_INFO.doubleCoin = 5; + cc.fx.GameConfig.GM_INFO.hp_Max = 5; + cc.fx.GameConfig.GM_INFO.hp = 5; + } + let title = "充值补发奖励金币:" + coinTemp; + // MiniGameSdk.API.showToast(title); + if (order.itemid != "month_Card") cc.fx.GameTool.shopBuy(productId, true); + console.log("充值成功获得金币"); + let price = parseInt(order.goodsPrice) || 0; + // const dataSuccess = { + // outTradeNo: order.outTradeNo, + // pay_amount: price, + // payment_name: productId, + // payment_num: 1, + // type: systemType, + // } + let name = "补发充值成功" + productId; + // cc.fx.GameTool.shushu_Track("payment", dataSuccess); + + // console.log("引力付费透传", price, order.outTradeNo, name); + MiniGameSdk.API.yinli_Pay(price, order.outTradeNo, name); + } + else { + MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放"); + const dataFail4 = { + outTradeNo: order.outTradeNo, + pay_amount: parseInt(order.goodsPrice) || 0, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "成功付款,但是发货时请求服务器失败,重新进入游戏后轮训发货又失败", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail4); + } + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + this.updateCoin(); + // 处理下一个订单 + processOrder(index + 1); + }, order.outTradeNo); + } else { + // 如果当前订单不处理,直接处理下一个订单 + processOrder(index + 1); + } + }; + + // 从第一个订单开始处理 + processOrder(0); + } + } + } + + openLoad() { + this.node.getChildByName("Loading").active = true; + this.node.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + } + + openLoad2() { + this.node.getChildByName("Loading").active = true; + this.node.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + setTimeout(() => { + if (this.dailyQuestsShow == true) { + MiniGameSdk.API.showToast("网络异常,请稍后重试!") + this.closeLoad(); + } + }, 5000); + } + + closeLoad() { + this.node.getChildByName("Loading").active = false; + } + updatePower() { + if (cc.fx.GameConfig.GM_INFO.userPowerTime != 0) { + let nowTime = Math.floor(Date.now() / 1000); + if (cc.fx.GameConfig.GM_INFO.userPowerTime > nowTime) { + this.stopPowerTime(); + this.startPowerTime(); + //("还有无限体力时间_____________", (cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime)); + this.Stamina.getChildByName("skyLine").active = true; + this.Stamina.getChildByName("time").opacity = 0; + this.Stamina.getChildByName("man").active = false; + } + else { + this.Stamina.getChildByName("skyLine").active = false; + //console.log("无限体力时间已过期"); + this.setHealthInfo(true); + } + } + else { + this.Stamina.getChildByName("skyLine").active = false; + this.Stamina.getChildByName("time").opacity = 255; + this.Stamina.getChildByName("man").active = true; + //console.log("没有无限体力时间"); + this.setHealthInfo(true); + } + } + + //月卡 + //打开界面 + openMonthCard() { + this.openMonthlyCard(); + // this.monthCard.active = true; + // Utils.getMonthlyCard((data) => { + // if (data.msg == "不在有效期") { + // this.monthCardBtn.active = true; + // this.monthCardBtn2.active = false; + // } else { + // this.monthCardBtn.active = false; + // this.monthCardBtn2.active = true; + // NumberToImage.numberToImageNodes(25, 35, 20, "month_", this.monthCardTime, true); + // } + // }) + } + + openStarter_pack() { + if (!JiaZai.cachedActionPrefab) { + // cc.error('Action prefab is not loaded yet.'); + cc.assetManager.loadBundle('action_bundle', (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + cc.error(err.message || err); + return; + } + bundle.load('prefab/newbieGift', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedActionPrefab = prefab; + if (!this.actionpNode) { + // 第一次使用,创建节点 + this.actionpNode = cc.instantiate(JiaZai.cachedActionPrefab); + this.node.addChild(this.actionpNode); + this.actionpNode.zIndex = 2; + this.actionpNode.getComponent("NewbieGift").init(true); + this.actionpNode.getChildByName("time").active = false; + } else { + // 非第一次使用,直接激活节点 + this.actionpNode.active = true; + this.actionpNode.getComponent("NewbieGift").init(false); + this.actionpNode.getChildByName("time").active = false; + } + }); + }); + return; + } + + if (!this.actionpNode) { + // 第一次使用,创建节点 + this.actionpNode = cc.instantiate(JiaZai.cachedActionPrefab); + this.node.addChild(this.actionpNode); + this.actionpNode.zIndex = 2; + this.actionpNode.getComponent("NewbieGift").init(true); + } else { + // 非第一次使用,直接激活节点 + this.actionpNode.active = true; + this.actionpNode.getComponent("NewbieGift").init(false); + } + //@ts-ignore + if (typeof wx !== 'undefined') { + //@ts-ignore + wx.offShow(this.onShowListener); + //@ts-ignore + wx.offHide(this.onHideListener); + } + } + + closeStarter_pack() { + if (this.actionpNode) { + this.actionpNode.active = false; + } + } + + startStarter_pack() { + this.stopStarter_pack(); + if (this.scheduleCallback3) { + this.unschedule(this.scheduleCallback3); + } + this.scheduleCallback3 = function () { + let nowTime = Math.floor(Date.now() / 1000); + if (cc.fx.GameConfig.GM_INFO.starter_packTime < nowTime) { + this.stopStarter_pack(); + this.Stamina.parent.getChildByName("xinshou").active = false; + return; + } + + let time = cc.fx.GameConfig.GM_INFO.starter_packTime - nowTime; + if (time <= 0) { + time = 0; + this.stopStarter_pack(); + this.Stamina.parent.getChildByName("xinshou").active = false; + } + else { + var timeTemp = cc.fx.GameTool.getTimeMargin2(time); + this.Stamina.parent.getChildByName("xinshou").getChildByName("time").getComponent(cc.Label) + .string = timeTemp; + if (this.actionpNode) { + this.actionpNode.getChildByName("time").getComponent(cc.Label). + string = timeTemp; + + + } + // 同步显示 + } + }.bind(this); + this.schedule(this.scheduleCallback3, 1); + } + + stopStarter_pack() { + if (this.scheduleCallback3) { + this.unschedule(this.scheduleCallback3); + this.scheduleCallback3 = null; + } + } + + rewarded() { + Utils.monthGetReward((data) => { + if (data.data == null) { + //console.log("到期"); + cc.fx.GameConfig.GM_INFO.hp_Max = 5; + //如果体力大于5,设置为5,小于5,设置为体力值 + if (cc.fx.GameConfig.GM_INFO.hp > 5) { + cc.fx.GameConfig.GM_INFO.hp = 5; + cc.fx.GameTool.setUserHealth(0, (data) => { + cc.fx.GameTool.getHealth(null); + }) + } + setTimeout(() => { + this.updateCoin(); + this.setHealthInfo(false); + this.startTimeCutDown(); + }, 300); + + + } + if (data.data != null && data.code == 0) { + //console.log("未到期已领取"); + } + if (data.code == 1) { + this.getcard.active = true; + let pauseNode = this.getcard.getChildByName("mcReward"); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.monthTime, 40, 20, "month_", this.cardTime, true) + } + }) + } + + + //缓存弹窗 + monthH() { + // return; + //如果没有充值月卡,每天弹一次月卡弹窗用缓存实现 + Utils.getMonthlyCard((data) => { + if (data.msg == "不在有效期") { + let date = new Date(); + let day = date.getDate(); // 当前日期(1-31) + let month = date.getMonth() + 1; // 当前月份(1-12) + let year = date.getFullYear(); // 当前年份 + let dateStr = `${year}-${String(month).padStart(2, '0')}-${String(day).padStart(2, '0')}`; // 格式化为 YYYY-MM-DD + // 从缓存中获取上次弹窗的日期 + let cachedDateStr = cc.fx.StorageMessage.getStorage("monthlyCardDate"); + // 如果缓存中的日期和当前日期不一致 + if (cachedDateStr !== dateStr) { + this.winStreakShow = false; + // 更新缓存 + cc.fx.StorageMessage.setStorage("monthlyCardDate", dateStr); + this.openMonthCard(); + } + else { + this.openWin(); + } + } + else { + this.openWin(); + } + }) + } + + + //检查是否弹出新手礼包 + checkStarter_pack() { + // return; + //如果没有充值新手礼包,每天弹一次新手礼包 + if (cc.fx.GameConfig.GM_INFO.level < 15) { + return; + } + const timestamp = Date.now(); + Utils.getStarter_pack((data) => { + if (data.code == 1) { + if (data.data.starter_pack == 0) { + console.log("用户没有触发新手礼包,准备触发,并且给弹窗"); + this.winStreakShow = false; + Utils.setStarter_pack((res) => { + if (res.code == 1) { + this.newbieGift = true; + // let top = this.node.getChildByName("Load").getChildByName("Top"); + // top.getChildByName("yicon").active = false; + this.Stamina.parent.getChildByName("xinshou").active = true; + cc.fx.GameConfig.GM_INFO.starter_packTime = res.data.starter_pack / 1000; + if (!this.actionpNode) this.openStarter_pack(); + console.log("打开新手礼包"); + const nowTime = Math.floor(Date.now() / 1000); + let time = cc.fx.GameConfig.GM_INFO.starter_packTime - nowTime; + if (time > 0) { + this.startStarter_pack(); + time = cc.fx.GameTool.getTimeMargin2(time); + this.Stamina.parent.getChildByName("xinshou").getChildByName("time").getComponent(cc.Label) + .string = time + ""; + + } + + } + }) + } + else if (data.data.starter_pack < timestamp) { + this.winStreakShow = true; + console.log("用户新手礼包已经过期,不触发"); + this.newbieGift = false; + this.Stamina.parent.getChildByName("xinshou").active = false; + } + else if (data.data.starter_packState == 1) { + this.winStreakShow = true; + console.log("用户已经购买过新手礼包,不触发"); + this.newbieGift = false; + this.Stamina.parent.getChildByName("xinshou").active = false; + } + else { + console.log("用户在新手礼包时间范围内,给弹窗"); + cc.fx.GameConfig.GM_INFO.starter_packTime = data.data.starter_pack / 1000; + const nowTime = Math.floor(Date.now() / 1000); + let time = cc.fx.GameConfig.GM_INFO.starter_packTime - nowTime; + if (time > 0) { + this.startStarter_pack(); + time = cc.fx.GameTool.getTimeMargin2(time); + this.Stamina.parent.getChildByName("xinshou").getChildByName("time").getComponent(cc.Label) + .string = time + ""; + } + let date = new Date(); + let day = date.getDate() + 1; // 当前日期(1-31) + let month = date.getMonth(); // 当前月份(1-12) + let year = date.getFullYear(); // 当前年份 + let dateStr = `${year}-${String(month).padStart(2, '0')}-${String(day).padStart(2, '0')}`; // 格式化为 YYYY-MM-DD + // 从缓存中获取上次弹窗的日期 + let cachedDateStr = cc.fx.StorageMessage.getStorage("Starter_pack"); + // 如果缓存中的日期和当前日期不一致 + if (cachedDateStr !== dateStr) { + // 更新缓存 + this.newbieGift = true; + // let top = this.node.getChildByName("Load").getChildByName("Top"); + // top.getChildByName("yicon").active = false; + this.Stamina.parent.getChildByName("xinshou").active = true; + cc.fx.StorageMessage.setStorage("Starter_pack", dateStr); + if (!this.actionpNode) this.openStarter_pack(); + console.log("打开新手礼包"); + this.winStreakShow = false; + } + else { + this.winStreakShow = true; + this.newbieGift = false; + this.Stamina.parent.getChildByName("xinshou").active = true; + console.log("当天已经给过,不再弹窗新手礼包"); + } + } + } + else { + this.newbieGift = false; + this.Stamina.parent.getChildByName("xinshou").active = false; + } + }) + } + + + //获取有没有分享信息 + getShareInfo() { + // 检查微信小游戏启动参数 + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + //@ts-ignore + const launchOptions = wx.getLaunchOptionsSync(); + const query = launchOptions.query; + if (query.level && query.uid) { + const level = parseInt(query.level, 10); + const uid = query.uid.toString(); + if (uid != cc.fx.GameConfig.GM_INFO.uid) { + cc.fx.GameConfig.GM_INFO.otherUid = uid; + cc.fx.GameConfig.GM_INFO.otherLevel = level; + // console.log('从分享链接获取到的关卡信息:', level); + // console.log('从分享链接获取到的 UID:', uid); + // console.log("自己的UID", cc.fx.GameConfig.GM_INFO.uid) + let eventData = { + identity: "helper", //发起者为helped 帮助者为helper + helpedId: cc.fx.GameConfig.GM_INFO.otherUid, //被帮助者UID + level: level //被帮助关卡等级 + } + cc.fx.GameTool.shushu_Track("stage_help", eventData); //帮助通关 + this.openLoad(); + } + else { + cc.fx.GameConfig.GM_INFO.otherLevel = 0; + } + // 可以在这里处理关卡信息和 UID + } + } + } + + //第一次进游戏用户处理信息 + setFirstInfo() { + const group = cc.fx.GameTool.setWechatGameGroup(2); + if (group == 0) { + cc.fx.GameConfig.GM_INFO.musicOpen = true; + } + else if (group == 1) { + cc.fx.GameConfig.GM_INFO.musicOpen = false; + } + const audioInfo = { + "musicOpen": cc.fx.GameConfig.GM_INFO.musicOpen, //音乐 + "effectOpen": cc.fx.GameConfig.GM_INFO.effectOpen, //音效 + "vibrateOpen": cc.fx.GameConfig.GM_INFO.vibrateOpen, //震动 + } + cc.fx.StorageMessage.setStorage("music", audioInfo); + + if (cc.fx.GameConfig.GM_INFO.openid != "") { + // console.log("————————发送注册事件"); + const time = cc.fx.GameTool.formatDate(new Date()); + let data = { + register_time: time, // 注册时间 + } + // console.log("注册时间:", time); + cc.fx.GameTool.shushu_Track("register", data); + MiniGameSdk.API.shushu_SetSuperProperties(time, false); + } + } + onCardReward() { + this.getcard.active = false; + cc.fx.GameTool.changeCoin(500); + this.updateCoin(); + const dataTemp = { + change_reason: "month", + id: "1001", + num: 500, + compensate: false + } + cc.fx.GameTool.shushu_Track("resource_get", dataTemp); + } + + + //检测当日是否有分享行为,用不用主动获取分享关卡信息 + checkShare() { + const otherInfo = cc.fx.StorageMessage.getStorage("otherLevel"); + // console.log("分享信息:", otherInfo); + if (otherInfo != null && otherInfo != undefined && otherInfo != "") { + const currentTime = Date.now(); + const timeDifference = currentTime - otherInfo.timeStamp; + const oneDayInMilliseconds = 24 * 60 * 60 * 1000; + // console.log("计入时间计算"); + if (timeDifference > oneDayInMilliseconds || cc.fx.GameConfig.GM_INFO.level >= otherInfo.otherLevel) { + // console.log("_______________检查分享信息过期或已获取过,清除存储信息"); + cc.fx.StorageMessage.setStorage("otherLevel", null); + } + else { + // if ((cc.fx.GameConfig.GM_INFO.level + 1) == otherInfo.otherLevel) { + // console.log("_______________有分享信息,并且符合条件"); + Utils.getShareLevel((res) => { + if (res.code == 1) { + if ((cc.fx.GameConfig.GM_INFO.level + 1) == res.data[0].lv) { + let title = "好友帮助通过第" + otherInfo.otherLevel + "关"; + MiniGameSdk.API.showToast(title); + cc.fx.GameConfig.GM_INFO.level = otherInfo.otherLevel; + cc.fx.GameTool.maxLevel(); + const timestamp = Date.now(); + const levelInfo = { + level: cc.fx.GameConfig.GM_INFO.level, // 关卡 + timestamp: timestamp, // 时间戳 + }; + cc.fx.StorageMessage.setStorage("level", levelInfo); + NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 43, 15, "level_", this.level, true); + cc.fx.GameTool.setUserLevel((data) => { + }); + } + + } + + }) + + // } + } + } + else { + // console.log("没有分享信息"); + } + } + + + //购买月卡 + buyMonthCard(id) { + Utils.setMonthlyCard(0, (data) => { + // console.log("购买月卡", data.code); + if (data.code == 1) { + // let rewardData = [ + // { type: "coin", count: 6000 }, + // ] + cc.fx.GameTool.shopBuy(id, false); + cc.fx.GameConfig.GM_INFO.hp_Max = 7; + cc.fx.GameConfig.GM_INFO.hp = 7; + + cc.fx.GameTool.getMonthlyCardValidityDays().then(days => { + cc.fx.GameConfig.GM_INFO.monthTime = days.days; + //本地储存当前服务器时间 + let dateStr = new Date(days.time); + cc.fx.StorageMessage.setStorage("mCardDate", dateStr); + }); + // cc.fx.GameTool.changeCoin(6000); + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + // console.log("获取到JiaZai组件", jiazaiComp); + setTimeout(() => { + jiazaiComp.setHealthInfo(false); + jiazaiComp.startTimeCutDown(); + jiazaiComp.updateCoin(); + + }, 300); + } else { + // console.log("无法获取JiaZai组件"); + } + cc.fx.GameConfig.GM_INFO.doubleCoin = 2; + cc.fx.GameTool.setUserHealth(0, (data) => { + cc.fx.GameTool.getHealth(null); + }) + } + this.closeLoad(); + }) + // update (dt) {} + } + + setShareInfo() { + console.log("设置分享信息"); + MiniGameSdk.API.shareAppToFriends(); + } + + //检查任务列表 + checkTasks() { + let top = this.node.getChildByName("Load").getChildByName("Top"); + top.getChildByName("day").getChildByName("red").active = false; + if (cc.fx.GameConfig.GM_INFO.tasks.levelPass.target == 0) { + console.log("没有获取任务列表从服务器拿"); + cc.fx.GameTool.getDailyQuestsInfo((data) => { + if (data.code == 1) { + let res = data.data.task; + cc.fx.GameConfig.GM_INFO.tasks.levelPass = res["levelPass"]; + cc.fx.GameConfig.GM_INFO.tasks.share = res["share"]; + cc.fx.GameConfig.GM_INFO.tasks.useEnergy = res["useEnergy"]; + cc.fx.GameConfig.GM_INFO.tasks.useProp = res["useProp"]; + } + else { + //以备不时之需 + cc.fx.GameConfig.GM_INFO.tasks.levelPass.target = 3; + cc.fx.GameConfig.GM_INFO.tasks.share.target = 1; + cc.fx.GameConfig.GM_INFO.tasks.useEnergy.target = 10; + cc.fx.GameConfig.GM_INFO.tasks.useProp.target = 3; + } + if (cc.fx.GameConfig.GM_INFO.tasks.levelPass.state == 1 || cc.fx.GameConfig.GM_INFO.tasks.share.state == 1 || + cc.fx.GameConfig.GM_INFO.tasks.useEnergy.state == 1 || cc.fx.GameConfig.GM_INFO.tasks.useProp.state == 1 + ) { + top.getChildByName("day").getChildByName("red").active = true; + } + }) + } + else { + console.log("有任务列表判断红点", cc.fx.GameConfig.GM_INFO.tasks); + if (cc.fx.GameConfig.GM_INFO.tasks.levelPass.state == 1 || cc.fx.GameConfig.GM_INFO.tasks.share.state == 1 || + cc.fx.GameConfig.GM_INFO.tasks.useEnergy.state == 1 || cc.fx.GameConfig.GM_INFO.tasks.useProp.state == 1 + ) { + top.getChildByName("day").getChildByName("red").active = true; + } + + } + } + + openWin() { + if (this.winStreakShow == false || cc.fx.GameConfig.GM_INFO.level < 17) { + return; + } else { + let date = new Date(); + let day = date.getDate(); // 当前日期(1-31) + let month = date.getMonth() + 1; // 当前月份(1-12) + let year = date.getFullYear(); // 当前年份 + let dateStr = `${year}-${String(month).padStart(2, '0')}-${String(day).padStart(2, '0')}`; // 格式化为 YYYY-MM-DD + // 从缓存中获取上次弹窗的日期 + let cachedDateStr = cc.fx.StorageMessage.getStorage("winStreakTime"); + // 如果缓存中的日期和当前日期不一致 + if (cachedDateStr !== dateStr) { + // 更新缓存 + cc.fx.StorageMessage.setStorage("winStreakTime", dateStr); + } + else { + return; + } + } + this.openWinStreak(); + } + //打开连胜活动 + openWinStreak() { + if (!JiaZai.cachedWinStreakPrefab) { + // cc.error('Action prefab is not loaded yet.'); + cc.assetManager.loadBundle('action_bundle', (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + cc.error(err.message || err); + return; + } + bundle.load('prefab/winStreak', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedWinStreakPrefab = prefab; + if (!this.winStreakNode) { + // 第一次使用,创建节点 + this.winStreakNode = cc.instantiate(JiaZai.cachedWinStreakPrefab); + this.node.addChild(this.winStreakNode); + this.winStreakNode.getComponent("WinStreak").init(); + } else { + // 非第一次使用,直接激活节点 + this.winStreakNode.active = true; + this.winStreakNode.getComponent("WinStreak").init(); + } + }); + }); + return; + } + if (!this.winStreakNode) { + // 第一次使用,创建节点 + this.winStreakNode = cc.instantiate(JiaZai.cachedWinStreakPrefab); + this.node.addChild(this.winStreakNode); + this.winStreakNode.active = true; + this.winStreakNode.getComponent("WinStreak").init(); + } else { + // 非第一次使用,直接激活节点 + this.winStreakNode.active = true; + this.winStreakNode.getComponent("WinStreak").init(); + } + } + + update(dt) { + if (this.newbieGift && this.monthlyCardNode) { + if (this.monthlyCardNode.active == true) { + this.monthlyCardNode.active = false; + } + } + } +} diff --git a/assets/Script/JiaZai.ts.meta b/assets/Script/JiaZai.ts.meta new file mode 100644 index 0000000..2549796 --- /dev/null +++ b/assets/Script/JiaZai.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "1dc936f8-7de8-4eae-91a0-4e48a1047e20", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Load.ts b/assets/Script/Load.ts new file mode 100644 index 0000000..584b71b --- /dev/null +++ b/assets/Script/Load.ts @@ -0,0 +1,206 @@ +import ranking from "./ranking"; + + +const { ccclass, property, requireComponent } = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + + + @property(cc.Node) + node1: cc.Node = null; + + @property(cc.Node) + node2: cc.Node = null; + + @property(cc.Node) + node3: cc.Node = null; + + @property(false) + localTest: boolean = false; + + @property("") + clientTestVersion: string = "1.0.0"; + + + + @property(cc.Label) + testVersion: cc.Label = null; + + onLoad() { + //@ts-ignore + + cc.internal.inputManager._maxTouches = 1 + cc.debug.setDisplayStats(false); + let manager = cc.director.getCollisionManager(); + manager.enabled = true; + this.setWX(); + + // let version = cc.fx.GameTool.getWechatGameVersion(); + // if (version == "开发版" || version == "体验版") { + // cc.debug.setDisplayStats(true); + // } + // else if (version == "正式版") { + // cc.debug.setDisplayStats(false); + // } + // else { + // cc.debug.setDisplayStats(true); + // } + + + + cc.tween(this.node1) + .delay(0 * 0.3) + .to(0.3, { scale: 1 }) + .to(0.3, { scale: 1.3 }) + .to(0.3, { scale: 1 }) + .union() + .repeatForever() + .start(); + + cc.tween(this.node2) + .delay(1 * 0.3) + .to(0.3, { scale: 1 }) + .to(0.3, { scale: 1.3 }) + .to(0.3, { scale: 1 }) + .union() + .repeatForever() + .start(); + + cc.tween(this.node3) + .delay(2 * 0.3) + .to(0.3, { scale: 1 }) + .to(0.3, { scale: 1.3 }) + .to(0.3, { scale: 1 }) + .union() + .repeatForever() + .start(); + //this.SubContext(); + } + + // SubContext() { + // if (typeof wx === 'undefined') { + // return; + // } + // wx.getOpenDataContext().postMessage({ + // message: 'show' + // }); + // console.log("加载子域"); + // } + setWX() { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { // 判断是否在微信环境 + wx.setPreferredFramesPerSecond(60); + // // 设置转发按钮点击后的回调 + + let iphoneArr = [ + "https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/0", + "https://mmocgame.qpic.cn/wechatgame/TWKuFxnCn7ksT3KXfhCC4yOfZeD4b0hrptDSJ2DFmwz02Yc8SppcwyPAOoS1MsMr/0", + "https://mmocgame.qpic.cn/wechatgame/dibaH2x79o1wSwBDymhyzXwfcyicaDb6R5icrFIO7251T4NgxIzXRXErHvAvn50vXFA/0", + "https://mmocgame.qpic.cn/wechatgame/Pgxad80d8ws3o69OicV3DTuTkcP81upQeJ0JBNS1xib3pzYLTF1ZqGY3niciaI7ICKlL/0", + "https://mmocgame.qpic.cn/wechatgame/SfB1vrRBIHKn9ffKFt5sib62yPLE31m2rCvk6DKlEicJNVZSoryEObD6ItwsQn4xibR/0", + "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0", + "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0" + ] + let randomIphone = iphoneArr[Math.floor(Math.random() * iphoneArr.length)]; + let img = randomIphone; + // const title = + // 构建分享参数 + const shareParams = { + title: '快来一起玩这个超有趣的小游戏吧!', // 修改为默认分享标题 + imageUrl: 'https://example.com/default_share_image.jpg' // 修改为默认分享图片 + }; + // 仅设置分享内容,不主动触发分享 + wx.onShareAppMessage(() => shareParams); + + + // 监听分享到朋友圈事件 + //@ts-ignore + wx.onShareTimeline(() => { + return { + title: '你想玩上怎样的游戏?' + }; + }); + + wx.showShareMenu(() => { + return { + title: '你想玩上怎样的游戏?', + imageUrl: img, + query: '' + }; + }); + + setTimeout(() => { + wx.showShareMenu({ + menus: ['shareAppMessage', 'shareTimeline'] + }) + }, 2000); + + setTimeout(() => { + wx.showShareMenu({ + menus: ['shareAppMessage', 'shareTimeline'] + }) + }, 4000); + + // 设置分享到朋友圈 + //@ts-ignore + // wx.updateShareMenu({ + // withShareTicket: true, + // success: (data) => { + // console.log('更新分享菜单成功', data); + // }, + // fail: (data) => { + // console.log('更新分享菜单失败', data); + // }, + // complete: (data) => { + // console.log('更新分享菜单完成', data); + // } + // }); + //@ts-ignore + } + + } + + //判断来源 + containsTrain(str) { + + return /from=train/i.test(str); + } + + //开始游戏,跳转至引导页面 + startGame() { + cc.director.loadScene("GameScene"); + // cc.director.loadScene("GuideScene"); + } + //备用,用来测试跳转 指定关卡 + clickBtn(event, data) { + cc.fx.GameConfig.GM_INFO.custom = parseInt(data); + cc.director.loadScene("GameScene"); + } + //打开排行榜 + openRank() { + cc.director.loadScene("RankScene"); + } + + + protected update(dt: number): void { + } + + // 3月17日 - 3月21日 工作完成内容 + + // 1:游戏框架搭建 + // 2:制作18个基础方块预制体 (方块可编辑颜色与道具和状态) + // 3:完成地图的搭建,可配置8*8以内,任意组合,包括可缺口和障碍物配置 + // 4:完成地图墙面建立,根据 ↑3上面构建的地图自动生成墙体。 + // 5:做完方块的基础移动,跟随手指,遇到方块或者墙壁或者障碍物阻碍移动。 + // 6:方块的自动落点做完11个基础方块的(未做完还差11个) + + // 3月24日 - 3月28日 预计完成目标 + + // 1:完成全部方块的落点。 + // 2:完成门的搭建,门可选颜色,可选开关或者星星等特殊状态 + // 3:完成方块通过门的游戏逻辑,使游戏可以最基础运行玩起来 + // 4:出5关版本,配合小白备案审核。 + // 5:根据方块,地图,以及道具,制作地图编辑器 (方块和地图制作的时候都已经考虑到编辑器的需求了) + // 优先制作,后续开发拓展玩法功能时,小白可同步进行制作关卡。 +} diff --git a/assets/Script/Load.ts.meta b/assets/Script/Load.ts.meta new file mode 100644 index 0000000..7822b7e --- /dev/null +++ b/assets/Script/Load.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "454ad829-851a-40ea-8ab9-941e828357ca", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Main.ts b/assets/Script/Main.ts new file mode 100644 index 0000000..eaf8151 --- /dev/null +++ b/assets/Script/Main.ts @@ -0,0 +1,44 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class Main extends cc.Component { + + // LIFE-CYCLE CALLBACKS: + + onLoad() { + + } + + start() { + // console.log("运行LoadScene场景") + cc.assetManager.loadBundle('shop', (err, bundle) => { + if (err) { + console.error('加载 shop 失败:', err); + } else { + // console.log('shop加载成功'); + cc.director.loadScene("LoadScene", (loadErr) => { + if (loadErr) { + // 加载场景失败,打印错误信息 + console.error('加载 LoadScene 场景失败:', loadErr); + } + }); + } + }); + // 预加载 LoadScene 场景 + // console.log("开始加载LoadScene场景") + + + } + + + + + // update (dt) {} +} diff --git a/assets/Script/Main.ts.meta b/assets/Script/Main.ts.meta new file mode 100644 index 0000000..aecfdf4 --- /dev/null +++ b/assets/Script/Main.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "ab8c1952-7f8e-479f-a2f8-ad140b75f7e3", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts new file mode 100644 index 0000000..0714eb0 --- /dev/null +++ b/assets/Script/Map.ts @@ -0,0 +1,3833 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import GameManager from "./GameManager"; +import { LQCollide } from "./lq_collide_system/lq_collide"; +import NumberToImage from "./NumberToImage"; +import SceneManager from "./SceneManager"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; +import Animation = cc.Animation; +// import Revive from "./Revive"; +import Utils from "./module/Pay/Utils"; +const { ccclass, property } = cc._decorator; + + + +@ccclass +export default class MapConroler extends cc.Component { + static _instance: any; + @property(cc.SpriteAtlas) + fontUI: cc.SpriteAtlas = null; + + @property({ type: [cc.Prefab], tooltip: "方块数组" }) + Block_Array: Array = []; + + @property({ type: [cc.Prefab], tooltip: "方块道具数组" }) + Block_Prop: Array = []; + + @property(cc.Prefab) + MapBlockPrefab: cc.Prefab = null; + + @property({ type: [cc.SpriteAtlas], tooltip: "方块颜色" }) + Block_Color: Array = []; + + + @property({ type: [cc.Prefab], tooltip: "墙壁数组" }) + Wall_Prefab: Array = []; + + @property(cc.Prefab) + wallTurnPrefab: cc.Prefab = null; + + @property(cc.Prefab) + wallRevolvingPrefab: cc.Prefab = null; + + @property(cc.Button) + timeBtn: cc.Button = null; + @property(cc.Button) + destroyBtn: cc.Button = null; + @property(cc.Button) + magicBtn: cc.Button = null; + @property(cc.Button) + winStreakBtn: cc.Button = null; + //魔法棒特效 + @property(cc.Node) + magics: cc.Node = null; + @property(cc.Node) + mask: cc.Node = null; + //引导道具 + @property(cc.Node) + guideItem: cc.Node = null; + //道具锁 + @property([cc.Node]) + itemLock: cc.Node[] = []; + @property(cc.Label) + iceLabel: cc.Label = null; + @property(cc.Label) + hammerLabel: cc.Label = null; + @property(cc.Label) + magicLabel: cc.Label = null; + + @property(cc.Node) + iceNode: cc.Node = null; + @property(cc.Node) + hammerNode: cc.Node = null; + @property(cc.Node) + magicNode: cc.Node = null; + @property(cc.Node) + icetimeNode: cc.Node[] = []; + @property(cc.Node) + magicMask: cc.Node = null; + + @property(cc.Node) + hammerMask: cc.Node = null; + + @property(cc.Node) + freezeMask: cc.Node = null; + @property(cc.Node) + guideNode: cc.Node = null; + @property(cc.Node) + hammerAni: cc.Node = null; + + @property(cc.Node) + coinPop: cc.Node = null; + //结算界面节点 + @property(cc.Node) + gameOverNode: cc.Node = null; + //复活 + @property(cc.Node) + revive: cc.Node = null; + timeLabel: cc.Node = null; + levelLabel: cc.Node = null; + coin: cc.Node = null; + + new_mode: number = 0; + new_item: number = 0; + mapWidth: number = 0; + mapHeight: number = 0; + wallNum: number = 0; + blockNum: number = 0; + reviewState: boolean = false; + mapBlocksWall: any; //地图的所有底块 + mapInfo: any; //地图除了底块的其他信息 + blocks: any; //方块数组 + wallInfo: any; //墙壁数组 + wallArray: any; // + openWall: any; //开关墙数组 + freezeWall: any; //冻结墙数组 + riseFallBlcok: any; //升降地块数组 + scheduleCallback: any;//倒计时用 + homeCanTouch: boolean = true;//按钮可用状态 + againCanTouch: boolean = true;//重玩按钮可以用状态 + gameOver: boolean = false;//游戏结束状态 + gameWin: boolean = false;//游戏胜利状态 + gameStart: boolean = false;//游戏开始状态 + timeNumber: number = 0; //游戏时间 用于倒计时 + count_Time: number = 0; //用于统计总游戏时长 + add_Time: number = 0; //复活时间 + mapBlockArray: any; //地图的所有格子状态存储 + pause: boolean = false;//暂停状态 + hammer: boolean = false;//锤子状态 + ishammer: boolean = false;//魔法棒与锤子区分 + ismagic: boolean = false;//魔法棒状态 + freezeArray: any; //冻结 + loackArray: any; //上锁 + particleEffects: cc.ParticleAsset[]; + // leftDoors: []; //左门 + rightDoors: any; //右门 + topDoors: any; //上门 + bottomDoors: any; //下门 + leftDoors: any; //左门 + powerState: boolean = false; //无限体力状态 + SceneManager: any; //场景管理器 + lastMagicTime: number; //上次使用魔法的时间 + wall_Pass: any; //可通过门的数组 + arr: any; + isreview: boolean = false; + is_frenzy: boolean = false;//是否连胜状态 + lastHammerTime: number;//上次使用锤子的时间 + revolving_state: number = 0;//是否是旋转门关卡,0:不是,1:顺时针旋转,2:逆时针旋转 + revolvingWallArray: any; //旋转门数组 + + // mapInfo: number[][] = []; + + onLoad() { + MiniGameSdk.API.setNewCloudlevel(); + cc.fx.GameConfig.GM_INFO.review = 0; + cc.fx.GameConfig.GM_INFO.reviewBoom = 0; + cc.fx.GameConfig.GM_INFO.reviewDoor = 0; + cc.fx.GameConfig.GM_INFO.gameState = true; + this.mask.opacity = 0; + this.node.getChildByName("Adhesive").zIndex = 500; + cc.game.setFrameRate(63); + cc.fx.AudioManager._instance.playEffect("zhuan2", null); + this.node.parent.parent.parent.getChildByName("zhuanchang").active = true; + this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "down", false); + this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setCompleteListener((entry) => { + if (entry.animation.name === "down") { + // 动画播放结束后执行的逻辑 + this.node.parent.parent.parent.getChildByName("zhuanchang").active = false; + } + }); + this.wall_Pass = []; + this.blocks = []; + this.leftDoors = []; //左门 + this.rightDoors = []; //右门 + this.topDoors = []; //上门 + this.bottomDoors = []; //下门 + this.revolvingWallArray = []; //旋转门数组 + this.gameWin = false; + this.gameOver = false; + this.gameStart = false; + this.reviewState = false; + this.homeCanTouch = true; + this.againCanTouch = true; + this.powerState = false; + this.new_mode = 0; + this.new_item = 0; + this.count_Time = 0; + this.add_Time = 0; + this.arr = []; // 初始化结算界面动画数组 + this.isreview = false; + this.is_frenzy = false; + this.revolving_state = 0; + //this.iceLabel.string = cc.fx.GameConfig.GM_INFO.freezeAmount.toString(); + // this.hammerLabel.string = cc.fx.GameConfig.GM_INFO.hammerAmount.toString(); + // this.magicLabel.string = cc.fx.GameConfig.GM_INFO.magicAmount.toString(); + this.setPropNum(); + // cc.game.addPersistRootNode(this.node); + MapConroler._instance = this; + const canvasTemp = cc.find("Canvas"); // 假设 Canvas 节点 + if (canvasTemp) { + const SceneManager = canvasTemp.getComponent("SceneManager"); + if (SceneManager) { + MapConroler._instance.SceneManager = SceneManager + } else { + console.log("SceneManager 组件未找到"); + } + } else { + console.log("SceneManager 节点未找到"); + } + + } + + start() { + setTimeout(() => { + cc.director.preloadScene("HomeScene", (err, asset) => { + if (err) { + console.error('动态加载 HomeScene 失败:', err); + return; + } + }); + }, 1000); + // console.log("进入GameScene"); + this.Block_Array = GameManager._instance.Block_Array; + this.Wall_Prefab = GameManager._instance.Wall_Prefab; + this.Block_Color = GameManager._instance.Block_Color; + // this.particleEffects = GameManager._instance.particleEffects; + this.initMap(); + } + //道具数量 + setPropNum() { + //如果道具数量大于0,显示 cc.fx.GameConfig.GM_INFO.freezeAmount,如果为零显示'mul10' + + if (cc.fx.GameConfig.GM_INFO.freezeAmount > 0) { + this.iceNode.children[0].active = false; + this.iceNode.children[1].active = true; + this.iceNode.children[2].active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.freezeAmount, 20, 15, "mul", this.iceNode.children[2], true); + } else { + this.iceNode.children[0].active = true + this.iceNode.children[1].active = false; + this.iceNode.children[2].active = false; + } + if (cc.fx.GameConfig.GM_INFO.hammerAmount > 0) { + this.hammerNode.children[1].active = true; + this.hammerNode.children[0].active = false; + this.hammerNode.children[2].active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hammerAmount, 20, 15, "mul", this.hammerNode.children[2], true); + } else { + this.hammerNode.children[0].active = true; + this.hammerNode.children[1].active = false; + this.hammerNode.children[2].active = false; + } + if (cc.fx.GameConfig.GM_INFO.magicAmount > 0) { + this.magicNode.children[1].active = true; + this.magicNode.children[0].active = false; + this.magicNode.children[2].active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.magicAmount, 20, 15, "mul", this.magicNode.children[2], true); + } else { + this.magicNode.children[0].active = true + this.magicNode.children[1].active = false; + this.magicNode.children[2].active = false; + } + //道具锁 第八关之前全为true + const currentLevel = cc.fx.GameConfig.GM_INFO.level + 1; + let lock0Active = false; + let lock1Active = false; + let lock2Active = false; + + if (currentLevel < 8) { + lock0Active = true; + lock1Active = true; + lock2Active = true; + this.iceNode.active = false; + this.hammerNode.active = false; + this.magicNode.active = false; + this.iceNode.parent.getComponent(cc.Button).interactable = false; + this.hammerNode.parent.getComponent(cc.Button).interactable = false; + this.magicNode.parent.getComponent(cc.Button).interactable = false; + } else if (currentLevel >= 8 && currentLevel < 11) { + lock0Active = false; + lock1Active = true; + lock2Active = true; + this.iceNode.active = false; + this.hammerNode.active = true; + this.magicNode.active = false; + this.iceNode.parent.getComponent(cc.Button).interactable = false; + this.hammerNode.parent.getComponent(cc.Button).interactable = true; + this.magicNode.parent.getComponent(cc.Button).interactable = false; + } else if (currentLevel >= 11 && currentLevel < 16) { + lock0Active = false; + lock1Active = false; + lock2Active = true; + this.iceNode.active = true; + this.hammerNode.active = true; + this.magicNode.active = false; + this.iceNode.parent.getComponent(cc.Button).interactable = true; + this.hammerNode.parent.getComponent(cc.Button).interactable = true; + this.magicNode.parent.getComponent(cc.Button).interactable = false; + } else if (currentLevel >= 16) { + lock0Active = false; + lock1Active = false; + lock2Active = false; + this.iceNode.active = true; + this.hammerNode.active = true; + this.magicNode.active = true; + this.iceNode.parent.getComponent(cc.Button).interactable = true; + this.hammerNode.parent.getComponent(cc.Button).interactable = true; + this.magicNode.parent.getComponent(cc.Button).interactable = true; + } + + this.itemLock[0].active = lock0Active; + this.itemLock[1].active = lock1Active; + this.itemLock[2].active = lock2Active; + + if (cc.fx.GameConfig.GM_INFO.magicAFirst == true) { + this.magicNode.children[0].active = true; + this.magicNode.children[1].active = false; + this.magicNode.children[2].active = false; + } + if (cc.fx.GameConfig.GM_INFO.hammerFirst == true) { + this.hammerNode.children[0].active = true; + this.hammerNode.children[1].active = false; + this.hammerNode.children[2].active = false; + } + if (cc.fx.GameConfig.GM_INFO.freezeFirst == true) { + this.iceNode.children[0].active = true; + this.iceNode.children[1].active = false; + this.iceNode.children[2].active = false; + } + + } + + startUpdate() { + if (this.iceTrue() == true) { + return; + } + if (this.isreview) { + this.startTimeCutDown(); + this.isreview = false; + } + if (this.gameStart == false) { + this.gameStart = true; + let power = cc.fx.GameTool.getUserPowerTime(); + if (!power) { + cc.fx.GameTool.setUserHealth(-1, (data) => { + }) + } + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + if (cc.fx.GameConfig.GM_INFO.tasks.useEnergy.value < cc.fx.GameConfig.GM_INFO.tasks.useEnergy.target) { + cc.fx.GameConfig.GM_INFO.tasks.useEnergy.value += 1; + cc.fx.GameTool.setDailyQuestInfo(); + if (cc.fx.GameConfig.GM_INFO.tasks.useEnergy.value == cc.fx.GameConfig.GM_INFO.tasks.useEnergy.target) { + let data = { + id: 2, + status: "complete" + } + cc.fx.GameTool.shushu_Track("daily_task", data); + } + } + } + + this.powerState = power; + this.count_Time = Date.now(); + //发送数数事件——进入关卡 + console.log("准备进入下一关,发送下一关进入"); + if ((cc.fx.GameConfig.GM_INFO.level + 1) == 1) { + this.guideNode.getComponent(Animation).stop(); + this.guideNode.active = false; + } + if (cc.fx.GameConfig.GM_INFO.winStreak >= 10) { + this.is_frenzy = true; + } + let data = { + "is_frenzy": this.is_frenzy + } + if (cc.fx.GameConfig.GM_INFO.winStreak >= 10 && cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + cc.fx.GameConfig.GM_INFO.winState = false; + cc.fx.StorageMessage.setStorage("winState", cc.fx.GameConfig.GM_INFO.winState); + } + cc.fx.GameTool.shushu_Track("enter_stage", data); + this.stopTimeCutDown(); + this.startTimeCutDown(); + } + } + + initMap() { + if (cc.fx.GameConfig.GM_INFO.winStreak < 10 || cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + this.winStreakBtn.node.active = false; + this.destroyBtn.node.getChildByName("mul10").opacity = 255; + + } else { + this.winStreakBtn.node.active = true; + this.destroyBtn.node.getChildByName("mul10").opacity = 0; + } + // this.node.getChildByName("Wall").zIndex = 10; + this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time"); + this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level"); + this.coin = this.node.parent.getChildByName("Top").getChildByName("shop").getChildByName("coin"); + this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time; + console.log("当前关卡时间", this.timeNumber); + + this.add_Time = 0; + NumberToImage.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel) + + this.updateCoin(); + // var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber); + // this.timeLabel.string = timeTemp.toString(); + let levelName = (cc.fx.GameConfig.GM_INFO.level + 1); + if (cc.fx.GameConfig.GM_INFO.otherLevel) { + levelName = cc.fx.GameConfig.GM_INFO.otherLevel; + } + NumberToImage.numberToImageNodes(levelName, 45, 0, "level_", this.levelLabel, true) + console.log("当前关卡", cc.fx.GameConfig.GM_INFO.level + 1); + + this.mapWidth = cc.fx.GameConfig.LEVEL_INFO[0].map[0]; + this.mapHeight = cc.fx.GameConfig.LEVEL_INFO[0].map[1]; + let gap = cc.fx.GameConfig.LEVEL_INFO[0].gap; + let risefall = cc.fx.GameConfig.LEVEL_INFO[0].risefall; + + this.pause = false; + this.hammer = false; + this.ishammer = false; + this.ismagic = false; + this.wallNum = 0; + this.setMapInfo(); + this.blocks = []; + this.mapBlocksWall = []; + this.mapInfo = []; + this.wallInfo = []; + this.openWall = []; + this.wallArray = []; + this.freezeWall = []; + this.riseFallBlcok = []; + this.mapBlockArray = []; + this.freezeArray = []; + this.loackArray = []; + this.count_Time = 0; + this.add_Time = 0; + + + let startX = this.mapWidth % 2 == 0 ? -(this.mapWidth - 1) * 60 : -(this.mapWidth - 1) * 60; + let startY = this.mapHeight % 2 == 0 ? -(this.mapHeight - 1) * 60 : -(this.mapHeight - 1) * 60; + // startX =(this.mapWidth-1)*60 + 60; + // startY =-(this.mapHeight-1)*60 - 60; + this.node.getChildByName("mapBlock").zIndex = -100; + for (let i = 0; i < this.mapWidth; i++) { + this.mapBlocksWall[i] = []; + + for (let j = 0; j < this.mapHeight; j++) { + let block = cc.instantiate(this.MapBlockPrefab); + block.parent = this.node.getChildByName("mapBlock"); + block.getComponent("MapBlock").init(i, j); + // block.getChildByName("num").getComponent(cc.Label).string = i + ":" + j; + block.setPosition(cc.v2(startX + i * 120, startY + j * 120)) + if (risefall != null) { + if (risefall.length > 0) { + if (this.mapRiseFall(cc.v2(i, j), risefall, block)) { + this.riseFallBlcok.push(block); + block.getChildByName("rise").active = true; + } + } + } + + if (gap.length > 0) { + if (!this.mapGap(cc.v2(i, j), gap) || i == 0 || i == this.mapWidth - 1 + || j == 0 || j == this.mapHeight - 1) { + block.opacity = 254; + block.removeComponent(cc.Sprite); + block.removeAllChildren(); + this.wallInfo.push(block); + } + else this.mapInfo.push(block); + } + else { + if (i == 0 || i == this.mapWidth - 1 + || j == 0 || j == this.mapHeight - 1) { + block.opacity = 254; + block.removeComponent(cc.Sprite); + block.removeAllChildren(); + this.wallInfo.push(block); + } + else this.mapInfo.push(block); + } + + this.mapBlocksWall[i].push(block); + } + } + this.wallInit(); + this.blockInit(); + + if ((cc.fx.GameConfig.GM_INFO.level + 1) == 1) { + // 如果是第一关,显示引导 + this.guideNode.active = true; + this.guideNode.zIndex = 1000; + this.guideNode.getComponent(Animation).play(); + } + + if (cc.fx.GameConfig.GM_INFO.hammerFirst == true) { + this.guideItem.active = true; + this.setPropNum(); + } + if (cc.fx.GameConfig.GM_INFO.freezeFirst == true) { + this.guideItem.active = true; + this.setPropNum(); + } + if (cc.fx.GameConfig.GM_INFO.magicAFirst == true) { + this.guideItem.active = true; + this.setPropNum(); + } + if (cc.fx.GameConfig.GM_INFO.winStreakFirst == true) { + this.guideItem.active = true; + } + + } + + //创建方块 + // ... 已有代码 ... + + //创建方块 + // ... 已有代码 ... + + + + + blockInit() { + let blockArray = cc.fx.GameConfig.BLOCK_INFO[0]; + blockArray = this.sortBlock(blockArray); + //console.log("创建方块", blockArray); + let index = 0; // 当前要创建的方块索引 + let BLOCKS_PER_FRAME = 1; // 初始每帧创建的方块数量 + const MAX_PER_FRAME = 10; // 每帧最大创建数量 + const MIN_PER_FRAME = 1; // 每帧最小创建数量 + + const createBlocks = () => { + const startTime = performance.now(); + for (let i = 0; i < BLOCKS_PER_FRAME && index < blockArray.length; i++) { + let blockInfo = blockArray[index]; + // 缓存 Block_Array 访问 + const blockPrefab = this.Block_Array[blockInfo.block]; + let block = cc.instantiate(blockPrefab); + block.parent = this.node; + block.setPosition(cc.v2(blockInfo.position.x, blockInfo.position.y)); + if (blockInfo.block != 23) { + if (blockInfo.color != 11) { + this.blockNum += 1; + this.blocks.push(block); + } + else { + console.log("创建无色障碍块"); + } + if (blockInfo.type == 1) { + let info = { + id: blockInfo.id + 1, + block: blockInfo.block, + color: blockInfo.stacking, + type: 10, + position: blockInfo.position, + stacking: blockInfo.color + }; + if (blockInfo.floor) info["floor"] = blockInfo.floor; + if (blockInfo.floorTime) info["floorTime"] = blockInfo.floorTime; + + // 缓存 Block_Array 访问 + const blockUpPrefab = this.Block_Array[info.block]; + let blockUp = cc.instantiate(blockUpPrefab); + blockUp.parent = this.node; + blockUp.setPosition(cc.v2(info.position.x, info.position.y)); + + + block.getComponent("Block").init(blockInfo, null, null, blockUp); + blockUp.getComponent("Block").init(info, null, null, block); + if (info.color != 11) { + this.blocks.push(blockUp); + this.blockNum += 1; + } + } else if (blockInfo.type == 9) { + if (blockInfo.adhesiveTime < 2) { + index++; + continue; + } + index++; + let info = blockArray[index]; + // 缓存 Block_Array 访问 + const blockUpPrefab = this.Block_Array[info.block]; + let blockUp = cc.instantiate(blockUpPrefab); + blockUp.parent = this.node; + blockUp.setPosition(cc.v2(info.position.x, info.position.y)); + + + block.getComponent("Block").init(blockInfo, null, null, blockUp, false); + setTimeout(() => { + blockUp.getComponent("Block").init(info, null, null, block, true); + }, 100); + if (info.color != 11) { + this.blocks.push(blockUp); + this.blockNum += 1; + } + } else { + block.getComponent("Block").init(blockInfo); + } + } + else { + block.getComponent("Barrier").init(blockInfo); + } + index++; + } + const endTime = performance.now(); + const frameTime = endTime - startTime; + // 如果当前帧执行时间过长,减少每帧创建数量 + if (frameTime > 16) { + BLOCKS_PER_FRAME = Math.max(BLOCKS_PER_FRAME - 1, MIN_PER_FRAME); + } else { + BLOCKS_PER_FRAME = Math.min(BLOCKS_PER_FRAME + 1, MAX_PER_FRAME); + } + + // 如果还有方块未创建,下一帧继续创建 + if (index < blockArray.length) { + // 使用 scheduleOnce 在下一帧执行 createBlocks + this.scheduleOnce(() => { + createBlocks(); + }, 0); + } else { + + } + }; + + // 开始分帧创建方块 + createBlocks(); + } + //给创建方块排序,用来降低drawcall 合批 + sortBlock(allBlocks: { color: number; block: number; type: number }[]) { + return allBlocks.sort((a, b) => { + // 先处理 type 为 1 的情况,将其放到最后 + if (a.type === 1 && b.type !== 1) { + return 1; + } + if (a.type !== 1 && b.type === 1) { + return -1; + } + + // 对 type 不为 0 的元素按 type 排序 + if (a.type !== 0 && b.type !== 0) { + return a.type - b.type; + } + if (a.type !== 0 && b.type === 0) { + return 1; + } + if (a.type === 0 && b.type !== 0) { + return -1; + } + + // 再处理 block 为 23 的情况,将其放到最前面 + if (a.block === 23 && b.block !== 23) { + return -1; + } + if (a.block !== 23 && b.block === 23) { + return 1; + } + + // 其余按 color 升序排列 + return a.color - b.color; + }); + } + + //创建墙壁 + + wallInit() { + let index = 0; // 当前要创建的墙壁索引 + let WALLS_PER_FRAME = 1; // 初始每帧创建的墙壁数量 + const MAX_PER_FRAME = 10; // 每帧最大创建数量 + const MIN_PER_FRAME = 1; // 每帧最小创建数量 + + const createWalls = () => { + const startTime = performance.now(); + for (let i = 0; i < WALLS_PER_FRAME && index < this.wallInfo.length; i++) { + let block = this.wallInfo[index]; + let dir = this.getWllDiraction("wall", cc.v2(block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY)); + if (dir != null) { + this.createWall(dir, block); + } + index++; + } + const endTime = performance.now(); + const frameTime = endTime - startTime; + // 如果当前帧执行时间过长,减少每帧创建数量 + if (frameTime > 16) { + WALLS_PER_FRAME = Math.max(WALLS_PER_FRAME - 1, MIN_PER_FRAME); + } else { + WALLS_PER_FRAME = Math.min(WALLS_PER_FRAME + 1, MAX_PER_FRAME); + } + + // 如果还有墙壁未创建,下一帧继续创建 + if (index < this.wallInfo.length) { + this.scheduleOnce(() => { + createWalls(); + }, 0); + } else { + // 所有墙壁创建完成后,创建拐角节点 + this.createCornerNodes(); + if (this.revolving_state != 0) { + this.createRevolvingWall(); + } + } + }; + + // 开始分帧创建墙壁 + createWalls(); + } + + // ... 已有代码 ... + + getWllDiraction(type, pointA) { + let dir = []; + let pointB = cc.v2(pointA.x + 1, pointA.y); + let pointC = cc.v2(pointA.x - 1, pointA.y); + let pointD = cc.v2(pointA.x, pointA.y + 1); + let pointE = cc.v2(pointA.x, pointA.y - 1); + let opacity = 0; + let turn = 0; + if (type == "wall") opacity = 255; + if (type == "turn") opacity = 250; + if (this.mapBlocksWall[pointA.x][pointA.y].opacity == 249 && this.mapBlocksWall[pointB.x][pointB.y].opacity == 249) { + //console.log("缺角", pointA, pointB); + return null; + } + else if (this.mapBlocksWall[pointA.x][pointA.y].opacity == 249 && this.mapBlocksWall[pointC.x][pointC.y].opacity == 249) { + //console.log("缺角", pointA, pointC); + return null; + } + else if (this.mapBlocksWall[pointA.x][pointA.y].opacity == 249 && this.mapBlocksWall[pointD.x][pointD.y].opacity == 249) { + //console.log("缺角", pointA, pointD); + return null; + } + else if (this.mapBlocksWall[pointA.x][pointA.y].opacity == 249 && this.mapBlocksWall[pointE.x][pointE.y].opacity == 249) { + //console.log("缺角", pointA, pointE); + return null; + } + + if (pointB.x < this.mapWidth) { + if (this.mapBlocksWall[pointB.x][pointB.y].opacity == opacity) { + if (type == "turn" && this.mapBlocksWall[pointB.x][pointB.y].getComponent("MapBlock").direction == "right") { + + } + else { + dir.push("right"); + } + } + else if (type == "turn") { + if (this.mapBlocksWall[pointB.x][pointB.y].opacity == 249) { + dir.push("right"); + turn++; + // console.log("right从转角处增加", pointB.x, pointB.y); + } + } + } + if (pointC.x >= 0) { + if (this.mapBlocksWall[pointC.x][pointC.y].opacity == opacity) { + if (type == "turn" && this.mapBlocksWall[pointC.x][pointC.y].getComponent("MapBlock").direction == "left") { + + } + else { + dir.push("left"); + } + } + else if (type == "turn") { + if (this.mapBlocksWall[pointC.x][pointC.y].opacity == 249) { + dir.push("left"); + turn++; + // console.log("left从转角处增加", turn); + } + } + } + if (pointD.y < this.mapHeight) { + if (this.mapBlocksWall[pointD.x][pointD.y].opacity == opacity) { + if (type == "turn" && this.mapBlocksWall[pointD.x][pointD.y].getComponent("MapBlock").direction == "up") { + + } + else { + dir.push("up"); + } + } + else if (type == "turn") { + if (this.mapBlocksWall[pointD.x][pointD.y].opacity == 249) { + dir.push("up"); + turn++; + // console.log("up从转角处增加", turn); + } + } + } + if (pointE.y >= 0) { + if (this.mapBlocksWall[pointE.x][pointE.y].opacity == opacity) { + if (type == "turn" && this.mapBlocksWall[pointE.x][pointE.y].getComponent("MapBlock").direction == "down") { + + } + else { + dir.push("down"); + } + } + else if (type == "turn") { + if (this.mapBlocksWall[pointE.x][pointE.y].opacity == 249) { + dir.push("down"); + turn++; + // console.log("down从转角处增加", turn); + } + } + } + if (dir.length > 2) { + return null; + } + if (dir.length == 1) { + if (type == "wall") + return dir[0]; + else { + return null; + } + + } + else if (dir.length == 2) { + return dir[0] + dir[1]; + } + } + + //创建角落填补方块 + createCornerNodes() { + // 定义拐角位置 + for (let i = 0; i < this.wallInfo.length; i++) { + let block = this.wallInfo[i]; + if (block.opacity != 250) { + let dir = this.getWllDiraction("turn", cc.v2(block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY)); + //console.log("转角方向", dir, block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY); + let blockDir = block.getComponent("MapBlock").direction; + //console.log("转角方向", dir, block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY); + if (dir != null && blockDir != "rightup" && blockDir != "leftdown" && blockDir != "rightdown" && blockDir != "leftup") { + this.createTurn(dir, block, block.getComponent("MapBlock").posX, block.getComponent("MapBlock").posY); + } + } + } + } + + //创建普通门和墙壁 + createWall(direction, node) { + let wall = null; + let wall2 = null; + node.getComponent("MapBlock").setDiraction(direction); + switch (direction) { + case "right": + node.opacity = 250; + wall = cc.instantiate(this.Wall_Prefab[6]); + this.leftDoors.push(wall); + // wall.parent = this.node.getChildByName("Wall"); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x, node.y)); + node.opacity = 250; + wall.getChildByName("wall").getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction); + //wall.getChildByName("wall").getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall.getChildByName("wall")); + this.wallNum += 1; + if (wall.getChildByName("wall").getComponent("Wall").special == 2) + this.openWall.push(wall); + else if (wall.getChildByName("wall").getComponent("Wall").special == 3) + this.freezeWall.push(wall); + + break; + case "left": + node.opacity = 250; + wall = cc.instantiate(this.Wall_Prefab[3]); + // wall.parent = this.node.getChildByName("Wall"); + this.rightDoors.push(wall); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x + 4.5, node.y)); + wall.getChildByName("wall").getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction); + this.setDoorInfo(wall.getChildByName("wall")); + //wall.getChildByName("wall").getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.wallNum += 1; + if (wall.getChildByName("wall").getComponent("Wall").special == 2) + this.openWall.push(wall); + else if (wall.getChildByName("wall").getComponent("Wall").special == 3) + this.freezeWall.push(wall); + break; + case "up": + node.opacity = 250; + wall = cc.instantiate(this.Wall_Prefab[9]); + + this.topDoors.push(wall); + // wall.parent = this.node.getChildByName("Wall"); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x, node.y)); + + wall.getChildByName("wall").getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction); + this.setDoorInfo(wall.getChildByName("wall")); + //wall.getChildByName("wall").getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.wallNum += 1; + if (wall.getChildByName("wall").getComponent("Wall").special == 2) + this.openWall.push(wall); + else if (wall.getChildByName("wall").getComponent("Wall").special == 3) + this.freezeWall.push(wall); + break; + case "down": + node.opacity = 250; + wall = cc.instantiate(this.Wall_Prefab[0]); + this.bottomDoors.push(wall); + // wall.parent = this.node.getChildByName("Wall"); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x, node.y)); + // this.setDoorInfo(wall.getChildByName("wall")); + wall.getChildByName("wall").getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, direction); + this.setDoorInfo(wall.getChildByName("wall")); + //wall.getChildByName("wall").getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.wallNum += 1; + if (wall.getChildByName("wall").getComponent("Wall").special == 2) + this.openWall.push(wall); + else if (wall.getChildByName("wall").getComponent("Wall").special == 3) + this.freezeWall.push(wall); + break; + case "rightup": case "upright": + node.opacity = 249; + wall = cc.instantiate(this.Wall_Prefab[8]); + // wall.parent = this.node.getChildByName("Wall"); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x, node.y)); + wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall.name); + //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall.children[1]); + this.wallNum += 1; + wall2 = cc.instantiate(this.Wall_Prefab[11]); + // wall.parent = this.node.getChildByName("Wall"); + wall2.parent = this.node; + wall2.setPosition(cc.v2(node.x, node.y)); + wall2.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall2.name); + //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall2.children[1]); + this.wallNum += 1; + break; + case "leftup": case "upleft": + node.opacity = 249; + wall = cc.instantiate(this.Wall_Prefab[5]); + // wall.parent = this.node.getChildByName("Wall"); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x + 5, node.y)); + wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall.name); + //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall.children[1]); + this.wallNum += 1; + wall2 = cc.instantiate(this.Wall_Prefab[10]); + // wall.parent = this.node.getChildByName("Wall"); + wall2.parent = this.node; + wall2.setPosition(cc.v2(node.x + 5, node.y)); + wall2.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall2.name); + //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall2.children[1]); + this.wallNum += 1; + break; + case "downright": case "rightdown": + node.opacity = 249; + wall = cc.instantiate(this.Wall_Prefab[2]); + // wall.parent = this.node.getChildByName("Wall"); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x, node.y)); + wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall.name); + //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall.children[1]); + this.wallNum += 1; + wall2 = cc.instantiate(this.Wall_Prefab[7]); + // wall.parent = this.node.getChildByName("Wall"); + wall2.parent = this.node; + wall2.setPosition(cc.v2(node.x, node.y)); + wall2.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall2.name); + //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall2.children[1]); + this.wallNum += 1; + break; + case "downleft": case "leftdown": + node.opacity = 249; + wall = cc.instantiate(this.Wall_Prefab[1]); + // wall.parent = this.node.getChildByName("Wall"); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x + 5, node.y)); + wall.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall.name); + //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall.children[1]); + this.wallNum += 1; + wall2 = cc.instantiate(this.Wall_Prefab[4]); + // wall.parent = this.node.getChildByName("Wall"); + wall2.parent = this.node; + wall2.setPosition(cc.v2(node.x + 5, node.y)); + wall2.children[1].getComponent("Wall").init(null, node.getComponent("MapBlock").posX, node.getComponent("MapBlock").posY, wall2.name); + //wall.children[0].getChildByName("num").getComponent(cc.Label).string = this.wallNum.toString(); + this.setDoorInfo(wall2.children[1]); + this.wallNum += 1; + break; + } + + + // if(wallTurn){ + // wallTurn.getComponent("wallTunr").init(wall); + // } + } + + //设置门的信息 + setDoorInfo(wall) { + let doorInfo = cc.fx.GameConfig.WALL_INFO[0]; + if (doorInfo) { + for (let j = 0; j < doorInfo.length; j++) { + if (doorInfo[j].num == this.wallNum) { + if (doorInfo[j].special == 4) { + this.revolving_state = 1; + } + else if (doorInfo[j].special == 5) { + this.revolving_state = 2; + } + wall.getComponent("Wall").init(doorInfo[j], null, null, null); + this.wallArray.push(wall.parent); + + } + } + } + } + + //创建拐角墙壁 + createTurn(direction, node, posX, posY) { + let wall = null; + wall = cc.instantiate(this.wallTurnPrefab); + wall.parent = this.node; + wall.setPosition(cc.v2(node.x, node.y)); + switch (direction) { + case "upright": case "rightup": + wall.angle = 0; + wall.getChildByName("icon").angle = 0; + + break; + case "upleft": case "leftup": + wall.angle = 90; + wall.getChildByName("icon").angle = -90; + wall.getChildByName("icon").y += 0; + wall.getChildByName("icon").x -= 1.3; + break; + case "downright": case "rightdown": + wall.angle = 270; + wall.getChildByName("icon").angle = -270; + wall.getChildByName("icon").x += 2.5; + wall.getChildByName("icon").y += 1; + break; + case "downleft": case "leftdown": + wall.angle = 180; + wall.getChildByName("icon").angle = -180; + wall.getChildByName("icon").x -= 0.5; + wall.getChildByName("icon").y += 3.2; + break; + } + + // if(direction == "rightdown" || direction == "downright") { + // wall.zIndex = 50 + posX - posY*3; + // } + // else + // wall.zIndex = 50 + posX - posY*3; + + if (direction == "up" || direction == "leftup" || direction == "upleft" + ) { + wall.zIndex = 100 + posX - posY * 3; + } + else if (direction == "rightdown" || direction == "downright") { + wall.zIndex = -20 + posX - posY * 3; + } + else if (direction == "rightup" || direction == "upright") { + wall.zIndex = 50 + posX - posY * 3; + } + else if (direction == "left" || direction == "leftdown" || direction == "downleft") { + wall.zIndex = 70 + posX - posY * 3; + } + else wall.zIndex = 70 + posX - posY * 3; + + // wall.getChildByName("num").angle = -wall.angle; + //wall.getChildByName("num").getComponent(cc.Label).string = direction; + // wall.getChildByName("num").getComponent(cc.Label).string = wall.zIndex + ""; + // console.log(posX,posY,wall.zIndex); + // this.wallNum += 1; + // wall.getChildByName("num").getComponent(cc.Label).string = this.wallNum + ""; + } + + + //创建旋转门设置功能 + createRevolvingWall() { + // 第一步:将数组分为N个小数组,每个小数组以length不为0的元素开头 + let wallTemp = []; + for (let j = 0; j < cc.fx.GameConfig.WALL_INFO[0].length; j++) { + for (let k = 0; k < this.wallArray.length; k++) { + if (this.wallArray[k].getChildByName("wall").getComponent("Wall").num == cc.fx.GameConfig.WALL_INFO[0][j].num) { + wallTemp.push(this.wallArray[k]); + } + } + } + + let i = 0; + while (i < wallTemp.length) { + if (wallTemp[i].getChildByName("wall").getComponent("Wall").wall_Info.length === 0) { + i++; + continue; + } + const length = wallTemp[i].getChildByName("wall").getComponent("Wall").wall_Info.length; + const group = wallTemp.slice(i, i + length); + this.revolvingWallArray.push(group); + // 移动到下一组的位置 + i += length; + } + if (this.revolving_state == 1) { + } + //如果是逆时针 + else if (this.revolving_state == 2) { + let wallStart = this.revolvingWallArray[0]; + // 获取从索引1开始的剩余元素 + const restOfArray = this.revolvingWallArray.slice(1); + // 对剩余元素进行翻转 + const reversedRest = restOfArray.reverse(); + // 重新组合数组:第一个元素 + 翻转后的剩余元素 + this.revolvingWallArray = [wallStart, ...reversedRest]; + for (let n = 0; n < this.wallArray.length; n++) { + let revolvingNode = this.wallArray[n].getChildByName("wall").getComponent("Wall").revolvingNode; + if (revolvingNode) revolvingNode.children[0].scaleX = -revolvingNode.children[0].scaleX; + } + } + + // console.log("排序后的WALL_INFO数组:", this.revolvingWallArray); + } + + changeRevolvingWall() { + //没有旋转门,直接不处理 + if (this.revolving_state == 0) { + return; + } + // console.log("旋转一次"); + //有旋转门,根据旋转门数组,改变旋转门状态,受旋转方向影响 + let wallStart = this.revolvingWallArray[0]; + let wallArray = []; + let special = 4; if (this.revolving_state == 2) special = 5; + for (let i = 0; i < this.revolvingWallArray.length; i++) { + let wall = this.revolvingWallArray[i]; + if (wall[0].getChildByName("wall").getComponent("Wall").special == special) { + wallArray.push(i); + for (let k = 0; k < wall.length; k++) { + wall[k].getChildByName("wall").getComponent("Wall").special = 0; + wall[k].getChildByName("wall").getComponent("Wall").changeRevolvingWall(); + } + } + } + + for (let j = 0; j < wallArray.length; j++) { + + if (wallArray[j] < (this.revolvingWallArray.length - 1)) { + let wall2 = this.revolvingWallArray[wallArray[j] + 1]; + for (let k = 0; k < wall2.length; k++) { + wall2[k].getChildByName("wall").getComponent("Wall").special = special; + } + this.revolvingWallAction(wallArray[j], wallArray[j] + 1, wall2); + } + else { + let wall3 = wallStart; + for (let k = 0; k < wall3.length; k++) { + wall3[k].getChildByName("wall").getComponent("Wall").special = special; + } + this.revolvingWallAction(wallArray[j], 0, wall3); + } + } + + } + + revolvingWallAction(startPos, endPos, wall) { + let startWall = this.revolvingWallArray[startPos][0].getChildByName("revolving"); + let startLength = this.revolvingWallArray[startPos][0].getChildByName("wall").getComponent("Wall").wall_Info.length; + let endWall = this.revolvingWallArray[endPos][0].getChildByName("revolving"); + let endLength = this.revolvingWallArray[endPos][0].getChildByName("wall").getComponent("Wall").wall_Info.length; + let startRotate = startWall.getChildByName("rotate" + startLength); + let endRotate = endWall.getChildByName("rotate" + endLength); + let startAngle = startRotate.angle; + let endAngle = endRotate.angle; + let startPosition = cc.v2(startRotate.parent.parent.x + startRotate.x, startRotate.parent.parent.y + startRotate.y); + let endPosition = cc.v2(endRotate.parent.parent.x + endRotate.x, endRotate.parent.parent.y + endRotate.y); + if (startAngle == -270 && endAngle == 0) startAngle = 90; + if (startAngle == 0 && endAngle == -270) startAngle = -360; + + let sp = cc.instantiate(this.wallRevolvingPrefab); + sp.parent = this.node; + sp.zIndex = 999; + sp.angle = startAngle; + sp.width = startRotate.width; + sp.height = startRotate.height; + sp.x = startPosition.x; + sp.y = startPosition.y; + if (this.revolving_state == 2) sp.getChildByName("arror").scaleX = 1; + + cc.tween(sp) + .to(0.3, { + x: endPosition.x, y: endPosition.y, width: endRotate.width, height: endRotate.height, scaleX: 1.2, scaleY: 1.2, angle: endAngle + }) + .to(0.1, { scaleX: 0.9, scaleY: 0.9 }) + .to(0.1, { scaleX: 1, scaleY: 1 }) + .call(() => { + wall[0].getChildByName("wall").getComponent("Wall").changeRevolvingWall(); + sp.destroy(); + }) + .start(); + + } + + //地图底块缺口判断 + mapGap(point, gap) { + for (let i = 0; i < gap.length; i++) { + if (point.x == gap[i].x && point.y == gap[i].y) { + return false; + } + } + return true; + } + + //升降地块判断 + mapRiseFall(point, risefall, block) { + for (let i = 0; i < risefall.length; i++) { + if (point.x == risefall[i].x && point.y == risefall[i].y) { + block.getChildByName("riseup").active = true; + let spriteName = "riseup" + risefall[i].color; + let spriteName2 = "risefall" + risefall[i].color; + let icon = block.getComponent("MapBlock").riseFall.getSpriteFrame(spriteName); + let icon2 = block.getComponent("MapBlock").riseFall.getSpriteFrame(spriteName2); + block.getChildByName("risefall").getComponent(cc.Sprite).spriteFrame = icon2; + block.getChildByName("riseup").getComponent(cc.Sprite).spriteFrame = icon; + block.getChildByName("risefall").active = false; + block.getChildByName('risefall').getChildByName("color").getComponent(cc.Label).string = risefall[i].color + ""; + return true; + } + } + return false; + } + //升降地块 + changeRiseFall(color, down) { + color = color.toString(); + for (let i = 0; i < this.riseFallBlcok.length; i++) { + if (color == this.riseFallBlcok[i].getChildByName("risefall").getChildByName("color").getComponent(cc.Label).string) { + if (down) { + this.riseFallBlcok[i].getChildByName("risefall").active = true; + this.riseFallBlcok[i].getChildByName("riseup").active = false; + } + else { + this.riseFallBlcok[i].getChildByName("risefall").active = false; + this.riseFallBlcok[i].getChildByName("riseup").active = true; + } + } + + } + } + + + + //查询叠加快id + foundDownBlock(id) { + for (let i = 0; i < this.blocks.length; i++) { + if (this.blocks[i].getComponent("Block").blockId == id) { + return this.blocks[i]; + } + } + return null; + } + + //删除块 + removeBlock(id) { + for (let i = 0; i < this.blocks.length; i++) { + if (this.blocks[i].getComponent("Block").blockId == id) { + return this.blocks[i]; + } + } + return null; + } + + getMinAndMax(block) { + let width = Math.floor(block.width / 120); + let height = Math.floor(block.height / 120); + + let minX = width; + let maxX = this.mapWidth - 2; + let minY = 1; + let maxY = this.mapHeight - 2 - height + 1; + + if (block.name == "block10") { + minX = width - 1; + if (this.mapWidth > 3) maxX = maxX - 1; + } + else if (block.name == "block11") { + minX = width - 2; + if (this.mapWidth > 3) maxX = maxX - 2; + } + + else if (block.name == "block14") { + minX = width - 1; + maxX = maxX - 1; + } + else if (block.name == "block16") { + minX = width - 1; + maxX = maxX - 1; + } + else if (block.name == "block18") { + minX = width - 1; + maxX = maxX - 1; + } + else if (block.name == "block21") { + minX = width - 1; + maxX = maxX - 1; + } + + return { minX: minX, maxX: maxX, minY: minY, maxY: maxY }; + } + + //检测落点是否可以消除 + checkPass(node, blocks) { + let minAndMax = this.getMinAndMax(node); + let minX = minAndMax.minX; + let maxX = minAndMax.maxX; + let minY = minAndMax.minY; + let maxY = minAndMax.maxY; + + let nodePos = cc.v2(node.getComponent("Block").posX, node.getComponent("Block").posY); + + // 获取地图边界信息 + + let allBlocks = []; + for (let i = 0; i < blocks.length; i++) { + allBlocks.push(cc.v2(nodePos.x + blocks[i].x, nodePos.y + blocks[i].y)); + } + + // const date1 = new Date().getTime(); + // console.log("将小块放入数组的时间",date1); + + let jg = -1; + let pz = 0; + // 获取所有墙壁节点 + // let wall = this.node; + let direction = this.checkDiraction(allBlocks, maxX, maxY); + + // 判断方块是否在地图边缘 + if (nodePos.x <= minX || direction[0] == true) { + // const date2 = new Date().getTime(); + // console.log("碰到左边缘",date2); + pz += 1; + let leftWalls = []; + for (let i = 0; i < this.leftDoors.length; i++) { + let wallLeft = this.leftDoors[i].getChildByName("wall"); + let wallPos = cc.v2(wallLeft.getComponent("Wall").posX, wallLeft.getComponent("Wall").posY); + for (let i = 0; i < allBlocks.length; i++) { + if (allBlocks[i].y == wallPos.y && allBlocks[i].x > wallPos.x) { + // console.log("id:",wall.getChildByName("num").getComponent(cc.Label).string); + leftWalls.push(wallLeft); + } + } + } + // console.log("得到左边墙壁数组",date6); + if (leftWalls.length != 0) { + let result = this.detectingBlock("left", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks); + if (result == true) result = this.passWall(result, leftWalls, node); + // console.log("碰到左边缘结果:",jg); + if (result) { + + this.blockNum -= 1; + this.special_Treatment(node, true); + jg = 2; + this.createParticle(node, jg); + return jg; + } + } + } + if (nodePos.x >= maxX || direction[1] == true) { + // const date3 = new Date().getTime(); + // console.log("碰到右边缘",date3); + pz += 1; + let rightWalls = []; + for (let i = 0; i < this.rightDoors.length; i++) { + let wallRight = this.rightDoors[i].getChildByName("wall"); + let wallPos = cc.v2(wallRight.getComponent("Wall").posX, wallRight.getComponent("Wall").posY); + for (let i = 0; i < allBlocks.length; i++) { + if (allBlocks[i].y == wallPos.y && allBlocks[i].x < wallPos.x) { + // console.log("id:",wall.getChildByName("num").getComponent(cc.Label).string); + rightWalls.push(wallRight); + } + } + } + + if (rightWalls.length != 0) { + let result = this.detectingBlock("right", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks); + + if (result == true) result = this.passWall(result, rightWalls, node); + // console.log("碰到右边缘结果:",jg); + if (result) { + + this.blockNum -= 1; + this.special_Treatment(node, true); + jg = 3; + this.createParticle(node, jg); + return jg; + } + } + + + } + if (nodePos.y <= minY || direction[2] == true) { + pz += 1; + // const date4 = new Date().getTime(); + // console.log("碰到下边缘",date4); + let downWalls = []; + for (let i = 0; i < this.topDoors.length; i++) { + let wallBottom = this.topDoors[i].getChildByName("wall"); + let wallPos = cc.v2(wallBottom.getComponent("Wall").posX, wallBottom.getComponent("Wall").posY); + for (let i = 0; i < allBlocks.length; i++) { + let luocha = Math.abs(allBlocks[i].y - wallPos.y) + if (allBlocks[i].x == wallPos.x && allBlocks[i].y > wallPos.y && luocha <= node.getComponent("Block").shu) { + // console.log("id:",wall.getChildByName("num").getComponent(cc.Label).string); + downWalls.push(wallBottom); + } + } + } + + if (downWalls.length != 0) { + let result = this.detectingBlock("down", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks); + if (result == true) result = this.passWall(result, downWalls, node); + // console.log("碰到下边缘结果:",jg); + if (result) { + + this.blockNum -= 1; + this.special_Treatment(node, true); + jg = 1; + this.createParticle(node, jg); + return jg; + } + } + + + } + if (nodePos.y >= maxY || direction[3] == true) { + pz += 1; + // const date5 = new Date().getTime(); + // console.log("碰到上边缘",date5); + let upWalls = []; + for (let i = 0; i < this.bottomDoors.length; i++) { + let wallTop = this.bottomDoors[i].getChildByName("wall"); + let wallPos = cc.v2(wallTop.getComponent("Wall").posX, wallTop.getComponent("Wall").posY); + for (let i = 0; i < allBlocks.length; i++) { + let luocha = Math.abs(allBlocks[i].y - wallPos.y) + if (allBlocks[i].x == wallPos.x && allBlocks[i].y < wallPos.y && luocha <= node.getComponent("Block").shu) { + upWalls.push(wallTop); + } + } + } + + if (upWalls.length != 0) { + let result = this.detectingBlock("up", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks); + if (result == true) result = this.passWall(result, upWalls, node); + // console.log("碰到上边缘结果:",result); + if (result) { + + this.blockNum -= 1; + this.special_Treatment(node, true); + jg = 0; + this.createParticle(node, jg); + return jg; + } + } + + } + if (pz == 0) jg = -1; + // const date10 = new Date().getTime(); + // console.log("所有检测结束耗时",date10,jg); + return jg; + } + + changeState(type) { + if (type) { + if (this.openWall.length != 0) { + for (let i = 0; i < this.openWall.length; i++) { + this.openWall[i].getChildByName("wall").getComponent("Wall").changeLock(); + } + } + } + } + + changeFreeze() { + if (this.freezeWall.length != 0) { + for (let i = 0; i < this.freezeWall.length; i++) { + this.freezeWall[i].getChildByName("wall").getComponent("Wall").changeFreeze(); + } + } + } + + //检测是否可以通过门 + passWall(jg, wallArray, node) { + for (let i = 0; i < wallArray.length; i++) { + if (wallArray[i].getComponent("Wall").special == 2) { + console.log("尝试通过开关门:", wallArray[i].getComponent("Wall").open); + } + if (wallArray[i].getComponent("Wall").special == 2 && wallArray[i].getComponent("Wall").open == false) { + jg = false; + return jg; + } + if (wallArray[i].getComponent("Wall").special == 3) { + jg = false; + return jg; + } + if (wallArray[i].getComponent("Wall").special == 4 || wallArray[i].getComponent("Wall").special == 5) { + jg = false; + return jg; + } + //console.log(wallArray[i].getChildByName("wall").getComponent("Wall").color,node.getComponent("Block").color) + if (wallArray[i].getComponent("Wall").color != node.getComponent("Block").color) { + jg = false; + return jg; + } + if (node.getComponent("Block").type == 5) { + if (wallArray[i].getComponent("Wall").special != 1) { + jg = false; + return jg; + } + } + } + if (jg == true && node.getComponent("Block").type == 5) { + for (let j = 0; j < wallArray.length; j++) { + if (wallArray[j].getComponent("Wall").special == 1 && wallArray[j].getComponent("Wall").wall_Info.length != 0) { + wallArray[j].getComponent("Wall").playStarDoor(); + } + } + } + // const date8 = new Date().getTime(); + // console.log("检测颜色是否能够通过门",date8); + return jg; + } + + //检测方块和门中间有没有夹杂其他块 + detectingBlock(direction, posX, posY, blocks) { + let jg = true; + let id = ""; + if (blocks.length > 0) { + for (let i = 0; i < blocks.length; i++) { + let pos = blocks[i]; + let x = pos.x; + let y = pos.y; + id = this.mapBlocksWall[x][y].getComponent("MapBlock").block_Id; + jg = this.checkAllDirections(id, direction, x, y); + if (!jg) { + // console.log("方向检测没过"); + i = 1000000; + return jg; + } + } + } + // const date7 = new Date().getTime(); + // console.log("方向检测通过",date7,jg); + return jg; + } + + //检测物体各方向是否有别的物块,防止碰到墙壁了但是是凹凸形状,墙与块之间有阻挡物块 + checkAllDirections(id, direction, x, y) { + let jg = true; + + if (direction == "left") { + if (this.mapBlocksWall[x - 1][y].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x - 1][y].getComponent("MapBlock").block_Id != "Wall" + && this.mapBlocksWall[x - 1][y].getComponent("MapBlock").block_Id != id) { + // console.log("左侧有物体") + jg = false; + return jg; + } + if (this.mapBlocksWall[x - 1][y].opacity == 249) { + jg = false; + return jg; + } + if ((x - 2) >= 0) { + if (this.mapBlocksWall[x - 2][y].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x - 2][y].getComponent("MapBlock").block_Id != "Wall" + && this.mapBlocksWall[x - 2][y].getComponent("MapBlock").block_Id != id) { + // console.log("左侧有物体") + jg = false; + return jg; + } + if (this.mapBlocksWall[x - 2][y].opacity == 249) { + jg = false; + return jg; + } + } + } + else if (direction == "right") { + if (this.mapBlocksWall[x + 1][y].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x + 1][y].getComponent("MapBlock").block_Id != "Wall" + && this.mapBlocksWall[x + 1][y].getComponent("MapBlock").block_Id != id) { + // console.log("右侧有物体") + jg = false; + return jg; + } + if (this.mapBlocksWall[x + 1][y].opacity == 249) { + jg = false; + return jg; + } + if ((x + 2) <= this.mapBlocksWall.length - 1) { + if (this.mapBlocksWall[x + 2][y].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x + 2][y].getComponent("MapBlock").block_Id != "Wall" + && this.mapBlocksWall[x + 2][y].getComponent("MapBlock").block_Id != id) { + // console.log("右侧有物体") + jg = false; + return jg; + } + if (this.mapBlocksWall[x + 2][y].opacity == 249) { + jg = false; + return jg; + } + } + } + if (direction == "up") { + if (this.mapBlocksWall[x][y + 1].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x][y + 1].getComponent("MapBlock").block_Id != "Wall" + && this.mapBlocksWall[x][y + 1].getComponent("MapBlock").block_Id != id) { + // console.log("上侧有物体") + jg = false; + return jg; + } + if (this.mapBlocksWall[x][y + 1].opacity == 249) { + jg = false; + return jg; + } + if ((y + 2) <= this.mapBlocksWall[x].length - 1) { + if (this.mapBlocksWall[x][y + 2].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x][y + 2].getComponent("MapBlock").block_Id != "Wall" + && this.mapBlocksWall[x][y + 2].getComponent("MapBlock").block_Id != id) { + // console.log("上侧有物体") + jg = false; + return jg; + } + if (this.mapBlocksWall[x][y + 2].opacity == 249) { + jg = false; + return jg; + } + } + } + if (direction == "down") { + if (this.mapBlocksWall[x][y - 1].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x][y - 1].getComponent("MapBlock").block_Id != "Wall" + && this.mapBlocksWall[x][y - 1].getComponent("MapBlock").block_Id != id) { + // console.log("下侧有物体") + jg = false; + return jg; + } + if (this.mapBlocksWall[x][y - 1].opacity == 249) { + jg = false; + return jg; + } + if ((y - 2) >= 0) { + if (this.mapBlocksWall[x][y - 2].getComponent("MapBlock").block_Id != "" && this.mapBlocksWall[x][y - 2].getComponent("MapBlock").block_Id != "Wall" + && this.mapBlocksWall[x][y - 2].getComponent("MapBlock").block_Id != id) { + // console.log("下侧有物体") + jg = false; + return jg; + } + if (this.mapBlocksWall[x][y - 2].opacity == 249) { + jg = false; + return jg; + } + } + } + // console.log("检测物体各方向是否有别的物块",jg); + return jg; + } + + checkDiraction(allBlocks, maxX, maxY) { + let jg = [false, false, false, false]; + for (let i = 0; i < allBlocks.length; i++) { + if (allBlocks[i].x > 0 && jg[0] == false) { + if (this.mapBlocksWall[allBlocks[i].x - 1][allBlocks[i].y].opacity == 250) { + jg[0] = true; + } + } + if (jg[1] == false) { + if (this.mapBlocksWall[allBlocks[i].x + 1][allBlocks[i].y].opacity == 250) { + jg[1] = true; + } + } + if (allBlocks[i].y > 0 && jg[2] == false) { + if (this.mapBlocksWall[allBlocks[i].x][allBlocks[i].y - 1].opacity == 250) { + jg[2] = true; + } + } + if (jg[3] == false) { + if (this.mapBlocksWall[allBlocks[i].x][allBlocks[i].y + 1].opacity == 250) { + jg[3] = true; + } + } + } + return jg; + } + + + + //特殊处理,方块带道具或者需要消除冰块 + special_Treatment(node, type) { + let freezeBlock = this.node.children.filter(child => { + if (child.getComponent("Block")) { + if (child.getComponent("Block").type == 4) + return child + } + }); + if (freezeBlock.length > 0) { + for (let i = 0; i < freezeBlock.length; i++) { + freezeBlock[i].getChildByName("freeze").getComponent("Freeze").reduce(1); + } + } + + let floorBlock = this.node.children.filter(child => { + if (child.getComponent("Block")) { + if (child.getComponent("Block").block_Info.floor != null || child.getComponent("Block").block_Info.floor != undefined) + return child + } + }); + + for (let i = 0; i < floorBlock.length; i++) { + for (let j = 0; j < floorBlock[i].children.length; j++) { + if (floorBlock[i].children[j].name == "floor") { + floorBlock[i].children[j].getComponent("Floor").reduce(1); + } + } + } + + if (node.getComponent("Block").type == 2 || node.getComponent("Block").type == 4) { + let lockBlock = this.node.children.filter(child => { + if (child.getComponent("Block")) { + if (child.getComponent("Block").type == 3) + return child + } + }); + if (lockBlock.length > 0) + for (let i = 0; i < lockBlock.length; i++) { + lockBlock[i].getChildByName("lock").getComponent("Lock").reduce(); + } + + } + + for (let i = 0; i < this.blocks.length; i++) { + if (this.blocks[i] == node) { + this.blocks.splice(i, 1); + } + } + this.changeFreeze(); + this.changeState(type); + // console.log("特殊处理——————————————", type); + if (type == true) this.changeRevolvingWall(); + } + + judgeWin(number) { + this.blockNum = this.blocks.length; + if (number == 1) { + if ((this.blockNum == 0 || this.blockNum == 1) && !this.gameWin && !this.gameOver) { + this.stopTimeCutDown(); + this.stopBoom(); + } + } + else if (number == 0) { + if (this.blockNum == 0 && !this.gameWin && !this.gameOver) { + this.stopTimeCutDown(); + this.stopBoom(); + } + } + + } + + //判断游戏成功下一关 + nextLevel(num: number) { + if (num == 1) { + this.pause = false; + this.openIce(); + } else { + if (this.iceTrue() == true) { + this.pause = true; + } else { + this.pause = false; + this.openIce(); + } + } + + + + this.blockNum = this.blocks.length; + + if (this.blockNum == 0 && !this.gameWin && !this.gameOver) { + // alert("游戏成功"); + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + if (cc.fx.GameConfig.GM_INFO.tasks.levelPass.value < cc.fx.GameConfig.GM_INFO.tasks.levelPass.target) { + cc.fx.GameConfig.GM_INFO.tasks.levelPass.value += 1; + cc.fx.GameTool.setDailyQuestInfo(); + if (cc.fx.GameConfig.GM_INFO.tasks.levelPass.value == cc.fx.GameConfig.GM_INFO.tasks.levelPass.target) { + let data = { + id: 0, + status: "complete" + } + cc.fx.GameTool.shushu_Track("daily_task", data); + } + } + else { + cc.fx.GameTool.setDailyQuestInfo(); + } + if (cc.fx.GameConfig.GM_INFO.level >= 17) { + cc.fx.GameTool.setWinStreak("sucess"); + cc.fx.GameConfig.GM_INFO.winState = true; + cc.fx.StorageMessage.setStorage("winState", cc.fx.GameConfig.GM_INFO.winState); + console.log("本地连胜状态:", cc.fx.GameConfig.GM_INFO.winState); + } + + } + this.setOtherLevel(); + this.gameWin = true; + if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) { + console.log("恢复一点体力", cc.fx.GameConfig.GM_INFO.level); + if (!this.powerState) { + cc.fx.GameTool.setUserHealth(1, (data) => { + }, false) + } + this.powerState = false; + } + this.stopTimeCutDown(); + // console.log("即将上报成功________________________:",this.add_Time); + // console.log("成功消除一个",this.add_Time); + cc.fx.GameTool.changeCoin(40 * cc.fx.GameConfig.GM_INFO.doubleCoin); + const data = { + change_reason: "level", + id: (1001 + ""), + num: 40 * cc.fx.GameConfig.GM_INFO.doubleCoin + } + cc.fx.GameTool.shushu_Track("resource_get", data); + let overTime = Date.now(); + this.count_Time = overTime - this.count_Time; + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + + } + else cc.fx.GameTool.addLevel(this.count_Time, this.add_Time); + const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点 + if (winCOIN) { + const wincoin = winCOIN.getComponent(SceneManager); + if (wincoin) { + wincoin.updateWinCoin(); + } else { + console.log("JiaZai 组件未找到"); + } + } else { + console.log("JiaZai 节点未找到"); + } + this.check_NewMode(); + setTimeout(() => { + this.node.parent.parent.getChildByName("Win").active = true; + this.Settlement(); + if (cc.fx.GameConfig.GM_INFO.level >= 17) { + this.node.parent.parent.getChildByName("Win").getChildByName("WinStreak").active = true; + this.openWinStreak(); + } + else { + this.node.parent.parent.getChildByName("Win").getChildByName("WinStreak").active = false; + } + + }, 660); + // console.log("游戏成功"); + } + else { + if (this.gameOver == true) { + this.failLevel("time"); + } + } + } + + check_NewMode() { + for (let i = 0; i < cc.fx.GameConfig.NEW_LEVEL.length; i++) { + if ((cc.fx.GameConfig.GM_INFO.level + 1) == cc.fx.GameConfig.NEW_LEVEL[i].level) { + this.new_mode = 3; + } + } + + for (let i = 0; i < cc.fx.GameConfig.NEW_GUIDE.length; i++) { + if ((cc.fx.GameConfig.GM_INFO.level + 1) == cc.fx.GameConfig.NEW_GUIDE[i].level) { + this.new_item = 3; + } + } + } + + winLevel() { + // MiniGameSdk.API.showToast(cc.fx.GameConfig.GM_INFO.level); + if (this.node.parent.parent.getChildByName("Win").getChildByName("tween"). + getChildByName("nextBtn").getComponent("btnControl")._touch == false) { + return; + } + this.node.parent.parent.getChildByName("Win").getChildByName("tween"). + getChildByName("nextBtn").getComponent("btnControl").setTouch(false); + cc.fx.AudioManager._instance.playEffect("anniu_Big", null); + console.log("下一关", cc.fx.GameConfig.GM_INFO.level); + this.uploadToCloud(cc.fx.GameConfig.GM_INFO.level + 1); + if (cc.fx.GameTool.maxLevel()) { + MiniGameSdk.API.showToast("每周更新,敬请期待"); + setTimeout(() => { + this.node.parent.parent.getChildByName("Win").getChildByName("tween"). + getChildByName("nextBtn").getComponent("btnControl").setTouch(true); + }, 500); + } + else { + // console.log("下一关"); + if (this.new_mode == 3) { + this.node.parent.parent.getChildByName("Win").active = false; + this.openNewMode(2); + cc.fx.GameConfig.LEVEL_INFO_init(false, 0); + return; + } + if (this.new_item == 3) { + if (cc.fx.GameConfig.GM_INFO.level + 1 == 8) { + console.log("新手引导开启"); + cc.fx.GameConfig.GM_INFO.hammerFirst = true; + } + if (cc.fx.GameConfig.GM_INFO.level + 1 == 11) { + cc.fx.GameConfig.GM_INFO.freezeFirst = true; + } + if (cc.fx.GameConfig.GM_INFO.level + 1 == 16) { + cc.fx.GameConfig.GM_INFO.magicAFirst = true; + } + + } + if (cc.fx.GameTool.maxLevel()) { + MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); + return; + } + cc.fx.AudioManager._instance.playEffect("zhuan1", null); + this.node.parent.parent.parent.getChildByName("zhuanchang").active = true; + this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); + setTimeout(() => { + cc.fx.GameConfig.LEVEL_INFO_init(true, 0); + }, 1200); + } + } + + againLevel() { + cc.fx.AudioManager._instance.playEffect("anniu_Big", null); + console.log(MapConroler._instance.powerState); + if (cc.fx.GameConfig.GM_INFO.hp < 1 && MapConroler._instance.powerState == false) { + MiniGameSdk.API.showToast("体力值不足"); + setTimeout(() => { + this.openShop(); + }, 500); + return; + } + if (!this.againCanTouch) return; + + this.againCanTouch = false; + + // MapConroler._instance = null; + cc.fx.AudioManager._instance.playEffect("zhuan1", null); + this.node.parent.parent.parent.getChildByName("zhuanchang").active = true; + this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); + // this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setCompleteListener((entry) => { + // if (entry.animation.name === "up") { + // // 动画播放结束后执行的逻辑 + // this.node.parent.parent.parent.getChildByName("zhuanchang").active = false; + // } + // }); + setTimeout(() => { + cc.fx.GameConfig.LEVEL_INFO_init(true, 0); + }, 1200); + // this.node.parent.parent.parent.destroy(); + } + + //时间到了复活 + reviewLevel(event, type) { + if (this.reviewState == true) { + return; + } + this.reviewState = true; + cc.fx.AudioManager._instance.playEffect("anniu_Big", null); + + let coin = 500; + let data = { + type: type, + coin: -coin + } + if (type == "time") { + if (cc.fx.GameConfig.GM_INFO.review == 1) coin = 1000; + else if (cc.fx.GameConfig.GM_INFO.review == 2) coin = 1500; + } + else if (type == "boom") { + if (cc.fx.GameConfig.GM_INFO.reviewBoom == 1) coin = 1000; + else if (cc.fx.GameConfig.GM_INFO.reviewBoom == 2) coin = 1500; + } + else if (type == "lock") { + if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) coin = 1000; + else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 2) coin = 1500; + } + else if (type == "revolving") { + if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) coin = 1000; + else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 2) coin = 1500; + } + data.coin = -coin; + // console.log("自身金币:",cc.fx.GameConfig.GM_INFO.coin,"消耗金币:",coin); + if (cc.fx.GameConfig.GM_INFO.coin < Math.abs(coin)) { + MiniGameSdk.API.showToast("金币不足,无法加时间"); + setTimeout(() => { + this.openShop(); + this.reviewState = false; + }, 500); + + return; + } + else { + this.runRewive(data); + } + } + + //执行复活函数 + runRewive(data) { + console.log("复活回调函数内", data); + this.isreview = true; + cc.fx.GameTool.changeCoin(data.coin); + const dataTemp = { + change_reason: "游戏内复活消耗金币", + id: (1001 + ""), + num: data.coin + } + cc.fx.GameTool.shushu_Track("resource_cost", dataTemp); + MiniGameSdk.API.showToast("继续游戏"); + this.updateCoin(); + // NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + if (data.type == "time") { + if (cc.fx.GameConfig.GM_INFO.review < 2) + cc.fx.GameConfig.GM_INFO.review += 1; + } + else if (data.type == "boom") { + if (cc.fx.GameConfig.GM_INFO.reviewBoom < 2) + cc.fx.GameConfig.GM_INFO.reviewBoom += 1; + } + else if (data.type == "lock") { + this.changeState(true); + if (cc.fx.GameConfig.GM_INFO.reviewDoor < 2) + cc.fx.GameConfig.GM_INFO.reviewDoor += 1; + } + else if (data.type == "revolving") { + this.changeRevolvingWall(); + if (cc.fx.GameConfig.GM_INFO.reviewDoor < 2) + cc.fx.GameConfig.GM_INFO.reviewDoor += 1; + } + + if (this.node.parent.getChildByName("Ice").active) { + this.freezeMask.active = false; + let freezeBtn = this.node.parent.getChildByName("Bottom").getChildByName("timeBtn"); + freezeBtn.getComponent("btnControl").setTouch(true); + this.node.parent.getChildByName("Ice").getChildByName("skeleton").active = false; + this.node.parent.getChildByName("Ice").active = false; + } + this.icetimeNode[0].active = true; + this.icetimeNode[1].active = false; + this.icetimeNode[2].active = false; + this.gameOver = false; + this.gameWin = false; + this.pause = false; + this.stopBoom(); + if (data.type == "time") { + this.timeNumber = 21; + this.add_Time += 20; + NumberToImage.getTimeMargin(20, 50, "time_", this.timeLabel) + } + + this.blockNum = this.blocks.length; + if (this.blockNum == 0) this.nextLevel(1); + + this.node.parent.parent.getChildByName("Lose").active = false; + setTimeout(() => { + this.reviewState = false; + }, 200); + this.stopTimeCutDown(); + + } + + //执行复活函数 + runRewiveCopy() { + this.isreview = true; + MiniGameSdk.API.showToast("继续游戏"); + this.gameOver = false; + this.gameWin = false; + this.pause = false; + this.timeNumber = 21; + this.add_Time += 20; + NumberToImage.getTimeMargin(20, 50, "time_", this.timeLabel) + this.blockNum = this.blocks.length; + if (this.blockNum == 0) this.nextLevel(1); + this.node.parent.parent.getChildByName("Lose").active = false; + setTimeout(() => { + this.reviewState = false; + }, 200); + this.stopTimeCutDown(); + } + + + homeBtn() { + if (this.powerState) { + this.returnHome(); + return; + } + cc.fx.AudioManager._instance.playEffect("anniu_Big", null); + if (!this.homeCanTouch) return; + this.homeCanTouch = false; + this.node.parent.parent.getChildByName("Lose").active = true; + let pauseNode = this.node.parent.parent.getChildByName("Lose").getChildByName("lose"); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Health").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("WinStreak").active = false; + let overTime = Date.now(); + this.count_Time = overTime - this.count_Time; + let data = { + time: this.count_Time, + add_Time: this.add_Time, + is_frenzy: this.is_frenzy, + result: "fail" + } + + cc.fx.GameTool.shushu_Track("finish_stage", data); + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + let data2 = { + is_frenzy: this.is_frenzy, + count: cc.fx.GameConfig.GM_INFO.winStreak + } + cc.fx.GameTool.shushu_Track("hammer_frenzy", data2); + } + + // alert(cc.fx.GameConfig.GM_INFO.winStreak); + if (cc.fx.GameConfig.GM_INFO.winStreak < 10 || cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + if (cc.fx.GameConfig.GM_INFO.revive == 0 && this.revive) { + this.revive.getComponent("Revive").offShow(); + this.node.active = false; + } + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Health").active = true; + } + else { + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("WinStreak").active = true; + } + } + + openHealth() { + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + this.revive.getComponent("Revive").offShow(); + this.node.active = false; + cc.fx.GameTool.setWinStreak("fail"); + } + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Health").active = true; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("WinStreak").active = false; + } + + closeWinStreak() { + this.homeCanTouch = true; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("WinStreak").active = false; + } + + + uploadToCloud(level: number) { + //@ts-ignore + if (typeof wx !== 'undefined') { + //@ts-ignore + wx.setUserCloudStorage({ + KVDataList: [ + { key: 'level', value: String(level) } + ], + success: () => console.log('✅ 数据上传成功'), + fail: (err) => console.error('❌ 上传失败', err) + }); + } + } + + returnHome() { + cc.fx.AudioManager._instance.playEffect("anniu_Big", null); + if (MapConroler._instance = null) { + return; + } + // MiniGameSdk.API.showToast("体力值减少"); + MapConroler._instance = null; + cc.fx.GameConfig.LEVEL_INFO_init(false, 0); + if (this.new_mode == 3) { + this.node.parent.parent.getChildByName("Win").active = false; + this.openNewMode(1); + return; + } + if (this.new_item == 3) { + if (cc.fx.GameConfig.GM_INFO.level + 1 == 8) { + cc.fx.GameConfig.GM_INFO.hammerFirst = true; + } + if (cc.fx.GameConfig.GM_INFO.level + 1 == 11) { + cc.fx.GameConfig.GM_INFO.freezeFirst = true; + } + if (cc.fx.GameConfig.GM_INFO.level + 1 == 16) { + cc.fx.GameConfig.GM_INFO.magicAFirst = true; + } + } + + cc.fx.AudioManager._instance.playEffect("zhuan1", null); + this.node.parent.parent.parent.getChildByName("zhuanchang").active = true; + this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); + cc.director.preloadScene("HomeScene", (err, asset) => { + if (err) { + console.error('动态加载 Prefab 失败:', err); + return; + } + }); + + setTimeout(() => { + cc.director.loadScene("HomeScene"); + }, 1200); + } + + //判断游戏失败 + failLevel(type) { + if (this.gameOver == true || this.gameWin == true) { + return; + } + this.stopTimeCutDown(); + let time = 0; + this.gameOver = true; + if (type == "boom" || type == "lock" || type == "revolving") { + time = 2000; + } + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + let eventData = { + identity: "helper", //发起者为helped 帮助者为helper + helpedId: cc.fx.GameConfig.GM_INFO.otherUid, //被帮助者UID + level: cc.fx.GameConfig.GM_INFO.otherLevel, //被帮助关卡等级 + success: false, //是否成功 + } + cc.fx.GameTool.shushu_Track("stage_help", eventData); //帮助通关 + } + setTimeout(() => { + + this.node.parent.parent.getChildByName("Lose").active = true; + let pauseNode = this.node.parent.parent.getChildByName("Lose").getChildByName("lose"); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = true; + this.revive.getComponent("Revive").init(); + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + this.node.parent.parent.getChildByName("Lose").getChildByName("share").active = false; + } + else { + console.log("有分享按钮"); + setTimeout(() => { + this.node.parent.parent.getChildByName("Lose").getChildByName("share").active = true; + }, 350); + } + if (type) { + if (type == "time") { + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = true; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = false; + let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").getChildByName("buyBtn"); + buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false; + if (cc.fx.GameConfig.GM_INFO.review == 0) buyBtn.getChildByName("coin1").active = true; + else if (cc.fx.GameConfig.GM_INFO.review == 1) buyBtn.getChildByName("coin2").active = true; + else if (cc.fx.GameConfig.GM_INFO.review == 2) buyBtn.getChildByName("coin3").active = true; + } + else if (type == "boom") { + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = true; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = false; + let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").getChildByName("buyBtn"); + buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false; + if (cc.fx.GameConfig.GM_INFO.reviewBoom == 0) buyBtn.getChildByName("coin1").active = true; + else if (cc.fx.GameConfig.GM_INFO.reviewBoom == 1) buyBtn.getChildByName("coin2").active = true; + else if (cc.fx.GameConfig.GM_INFO.reviewBoom == 2) buyBtn.getChildByName("coin3").active = true; + } + else if (type == "lock") { + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = true; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = false; + let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").getChildByName("buyBtn"); + buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false; + if (cc.fx.GameConfig.GM_INFO.reviewDoor == 0) buyBtn.getChildByName("coin1").active = true; + else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) buyBtn.getChildByName("coin2").active = true; + else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 2) buyBtn.getChildByName("coin3").active = true; + } + else if (type == "rotate") { + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false; + this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = true; + let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").getChildByName("buyBtn"); + buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false; + if (cc.fx.GameConfig.GM_INFO.reviewDoor == 0) buyBtn.getChildByName("coin1").active = true; + else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) buyBtn.getChildByName("coin2").active = true; + else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 2) buyBtn.getChildByName("coin3").active = true; + } + } + }, time); + + // console.log("游戏失败"); + } + + //打开新模式弹窗 + openNewMode(type) { + let index = 0; + const BLOCKS_PER_FRAME = 5; // 每帧销毁的方块数量 + const destroyBlocks = () => { + const endIndex = Math.min(index + BLOCKS_PER_FRAME, this.blocks.length); + for (; index < endIndex; index++) { + if (this.blocks[index]) { + this.blocks[index].destroy(); + } + } + // 如果还有方块未销毁,下一帧继续 + if (index < this.blocks.length) { + this.scheduleOnce(destroyBlocks, 0); + } else { + } + }; + // 开始分帧销毁方块 + destroyBlocks(); + this.node.parent.parent.getChildByName("NewMode").active = true; + let pauseNode = this.node.parent.parent.getChildByName("NewMode").getChildByName("newmode"); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + this.node.parent.parent.getChildByName("NewMode").getComponent("NewMode").setMode(type); + } + + + downDoor(color, type) { + for (let i = 0; i < this.wallArray.length; i++) { + if (this.wallArray[i].getChildByName("wall").getComponent("Wall").color == color) { + if (type) { + if (type == 5) { + if (this.wallArray[i].getChildByName("wall").getComponent("Wall").special == 1) { + this.wallArray[i].getChildByName("wall").getComponent("Wall").downDoor(); + } + } + else { + this.wallArray[i].getChildByName("wall").getComponent("Wall").downDoor(); + } + } + else { + this.wallArray[i].getChildByName("wall").getComponent("Wall").downDoor(); + } + } + } + } + + runRevolving() { + this.revolving_state = 1; + this.revolving_state = 2; + for (let i = 0; i < this.wallArray.length; i++) { + this.wallArray[i].getChildByName("wall").getComponent("Wall").runRevolving(); + } + } + + upDoor() { + for (let i = 0; i < this.wallArray.length; i++) { + if (this.wallArray[i].getChildByName("wall").opacity == 0) { + this.wallArray[i].getChildByName("wall").getComponent("Wall").upDoor(); + } + } + } + + //开始倒计时 + startTimeCutDown() { + this.startBoom(); + this.scheduleCallback = function () { + if (this.pause || this.gameWin || this.gameOver) return; + if (this.timeNumber <= 0) { + this.stopTimeCutDown(); + var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber); + NumberToImage.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel) + // this.timeLabel.string = timeTemp.toString(); + if (!this.pause) this.failLevel("time"); + } + else { + this.timeNumber -= 1; + if (this.timeNumber == 0) { + this.stopTimeCutDown(); + if (!this.pause) this.failLevel("time"); + } + var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber); + NumberToImage.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel) + // this.timeLabel.string = timeTemp.toString(); + } + }.bind(this); + this.schedule(this.scheduleCallback, 1); + } + // 停止倒计时 + stopTimeCutDown() { + if (this.scheduleCallback) { + this.unschedule(this.scheduleCallback); + this.scheduleCallback = null; + } + } + + //使用时间道具 + useTimeProp() { + if (this.gameOver == true || this.gameWin == true) { + return; + } + var pause = this.iceTrue(); + console.log("冰冻状态:", pause); + if (pause == true) { + return; + } + if (this.timeNumber <= 1 || this.gameOver || this.gameWin) { + return; + } + let freezeBtn = this.node.parent.getChildByName("Bottom").getChildByName("timeBtn"); + if (freezeBtn.getComponent("btnControl")._touch) { + freezeBtn.getComponent("btnControl").setTouch(false); + if (cc.fx.GameConfig.GM_INFO.freezeAmount < 1) { + // if (cc.fx.GameConfig.GM_INFO.coin < 1500) { + // MiniGameSdk.API.showToast("金币不足,无法购买道具"); + // setTimeout(() => { + // this.openShop(); + // freezeBtn.getComponent("btnControl").setTouch(true); + // }, 500); + + // return; + // } + this.node.parent.parent.getChildByName("propWindow").active = true; + cc.fx.AudioManager._instance.playEffect("tanchuang", null); + let pauseNode = this.node.parent.parent.getChildByName("propWindow").getChildByName("prop"); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + this.node.parent.parent.parent.getComponent("SceneManager").openPropBuy("freeze"); + } + else { + if (!this.node.parent.getChildByName("Ice").active && !this.pause) { + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + if (cc.fx.GameConfig.GM_INFO.tasks.useProp.value < cc.fx.GameConfig.GM_INFO.tasks.useProp.target) { + cc.fx.GameConfig.GM_INFO.tasks.useProp.value += 1; + cc.fx.GameTool.setDailyQuestInfo(); + if (cc.fx.GameConfig.GM_INFO.tasks.useProp.value == cc.fx.GameConfig.GM_INFO.tasks.useProp.target) { + let data = { + id: 3, + status: "complete" + } + cc.fx.GameTool.shushu_Track("daily_task", data); + } + } + } + const timestamp = Date.now(); + this.freezeMask.active = true; + this.stopBoom(); + this.pause = true; + this.node.parent.getChildByName("Ice").active = true; + this.node.parent.getChildByName("Ice").getChildByName("skeleton").active = true; + // this.node.parent.getChildByName("Top").getChildByName("Ice").active = true; + this.icetimeNode[0].active = false; + //播放第三個子節點的動畫 + this.icetimeNode[2].active = true; + this.icetimeNode[2].getChildByName("dongjie").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + //播放结束后消失 + this.icetimeNode[2].getChildByName("dongjie").getComponent(sp.Skeleton).setCompleteListener(() => { + this.icetimeNode[2].active = false; + if (this.icetimeNode[0].active == false) { + this.icetimeNode[1].active = true; + this.node.parent.getChildByName("Ice").getChildByName("skeleton").getComponent(sp.Skeleton).setAnimation(0, "animation", true); + } + }) + + cc.fx.GameConfig.GM_INFO.freezeAmount -= 1; + if (cc.fx.GameConfig.GM_INFO.freezeAmount < 0) + cc.fx.GameConfig.GM_INFO.freezeAmount = 0; + this.setPropNum(); + // this.iceLabel.string = cc.fx.GameConfig.GM_INFO.freezeAmount.toString(); + let propInfo = cc.fx.StorageMessage.getStorage("prop"); + propInfo.freezeAmount = cc.fx.GameConfig.GM_INFO.freezeAmount; + propInfo.timestamp = timestamp; + cc.fx.StorageMessage.setStorage("prop", propInfo); + cc.fx.GameTool.setUserProp(2001, cc.fx.GameConfig.GM_INFO.freezeAmount, (data) => { + }) + let data = { + change_reason: "使用道具", + id: "2001", + num: -1 + } + cc.fx.GameTool.shushu_Track("resource_cost", data); + } + else MiniGameSdk.API.showToast("道具使用中,请稍后再试"); + } + } + + + } + + //解开时间冻结 + openIce() { + if (this.node.parent.getChildByName("Ice").active) { + this.freezeMask.active = false; + let freezeBtn = this.node.parent.getChildByName("Bottom").getChildByName("timeBtn"); + freezeBtn.getComponent("btnControl").setTouch(true); + this.node.parent.getChildByName("Ice").getChildByName("skeleton").active = false; + this.node.parent.getChildByName("Ice").active = false; + + // this.node.parent.getChildByName("Top").getChildByName("Ice").active = false; + this.icetimeNode[0].active = true; + this.icetimeNode[1].active = false; + this.icetimeNode[2].active = false; + if (this.iceTrue() == false) { + this.pause = false; + if (this.gameStart == true) this.startBoom(); + } + } + } + + handleBuySuccess(data) { + this.node.parent.parent.parent.getComponent("SceneManager").resetBtn(); + this.updateCoin(); + + const timestamp = Date.now(); + // console.log("回调函数内:",this.pause); + let freezeBtn = this.node.parent.getChildByName("Bottom").getChildByName("timeBtn"); + let hammerBtn = this.node.parent.getChildByName("Bottom").getChildByName("destroyBtn"); + let magicBtn = this.node.parent.getChildByName("Bottom").getChildByName("magicBtn"); + if (data == "freezeAmount") freezeBtn.getComponent("btnControl").setTouch(true); + else if (data == "hammerAmount") hammerBtn.getComponent("btnControl").setTouch(true); + else if (data == "magicAmount") magicBtn.getComponent("btnControl").setTouch(true); + if (data == "freezeAmount") { + // cc.fx.GameConfig.GM_INFO.freezeAmount += 3; + let propInfo = cc.fx.StorageMessage.getStorage("prop"); + propInfo.freezeAmount = cc.fx.GameConfig.GM_INFO.freezeAmount; + propInfo.timestamp = timestamp; + cc.fx.StorageMessage.setStorage("prop", propInfo); + this.node.parent.parent.parent.getComponent("SceneManager").closePropBuy(true); + setTimeout(() => { + this.setPropNum(); + // this.iceLabel.string = cc.fx.GameConfig.GM_INFO.freezeAmount.toString(); + // MiniGameSdk.API.showToast("购买冻结时间成功"); + let data = [ + { type: "freeze", count: 3 }, + ] + MapConroler._instance.SceneManager.openRewardWindow(data, () => { + console.log("_________恢复游戏"); + var pause2 = this.iceTrue(); + if (pause2 == false) { + this.pause = false; + if (this.gameStart == true) this.startBoom(); + } + }); + }, 200); + + + } + else if (data == "magicAmount") { + // cc.fx.GameConfig.GM_INFO.magicAmount += 3; + let propInfo = cc.fx.StorageMessage.getStorage("prop"); + propInfo.magicAmount = cc.fx.GameConfig.GM_INFO.magicAmount; + propInfo.timestamp = timestamp; + cc.fx.StorageMessage.setStorage("prop", propInfo); + this.node.parent.parent.parent.getComponent("SceneManager").closePropBuy(true); + setTimeout(() => { + // MiniGameSdk.API.showToast("购买魔法棒成功"); + this.setPropNum(); + // this.magicLabel.string = cc.fx.GameConfig.GM_INFO.magicAmount.toString(); + let data = [ + { type: "magic", count: 3 }, + ] + MapConroler._instance.SceneManager.openRewardWindow(data, () => { + console.log("_________恢复游戏"); + var pause2 = this.iceTrue(); + if (pause2 == false) { + this.pause = false; + if (this.gameStart == true) this.startBoom(); + } + }); + }, 200); + + } + else if (data == "hammerAmount") { + // cc.fx.GameConfig.GM_INFO.hammerAmount += 1; + let propInfo = cc.fx.StorageMessage.getStorage("prop"); + propInfo.hammerAmount = cc.fx.GameConfig.GM_INFO.hammerAmount; + propInfo.timestamp = timestamp; + cc.fx.StorageMessage.setStorage("prop", propInfo); + this.node.parent.parent.parent.getComponent("SceneManager").closePropBuy(true); + setTimeout(() => { + this.setPropNum(); + // this.hammerLabel.string = cc.fx.GameConfig.GM_INFO.hammerAmount.toString(); + // MiniGameSdk.API.showToast("购买锤子成功"); + let data = [ + { type: "hammer", count: 1 }, + ] + MapConroler._instance.SceneManager.openRewardWindow(data, () => { + console.log("_________恢复游戏"); + var pause2 = this.iceTrue(); + if (pause2 == false) { + this.pause = false; + if (this.gameStart == true) this.startBoom(); + } + }); + }, 200); + + } + + + + } + + updateCoin() { + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + } + + //使用锤子道具 + useHammer() { + if (this.gameOver == true || this.gameWin == true) { + return; + } + //一秒之内只能点一次 + if (this.lastHammerTime && Date.now() - this.lastHammerTime < 1000) { + return; + } + this.lastHammerTime = Date.now(); + if (this.magicMask.active == true || this.timeNumber <= 1 || this.gameOver || this.gameWin) { + return; + } + let hammerBtn = this.node.parent.getChildByName("Bottom").getChildByName("destroyBtn"); + if (hammerBtn.getComponent("btnControl")._touch) { + hammerBtn.getComponent("btnControl").setTouch(false); + if (cc.fx.GameConfig.GM_INFO.hammerAmount < 1) { + this.node.parent.parent.getChildByName("propWindow").active = true; + cc.fx.AudioManager._instance.playEffect("tanchuang", null); + let pauseNode = this.node.parent.parent.getChildByName("propWindow").getChildByName("prop"); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + this.node.parent.parent.parent.getComponent("SceneManager").openPropBuy("hammer"); + } + else { + if (!this.hammer) { + this.hammerMask.active = true; + this.hammer = true; + this.ishammer = true; + this.stopBoom(); + this.pause = true; + // this.hammerLabel.string = cc.fx.GameConfig.GM_INFO.hammerAmount.toString(); + } + else MiniGameSdk.API.showToast("道具使用中,请稍后再试"); + } + + } + + } + + costHammer() { + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + if (cc.fx.GameConfig.GM_INFO.tasks.useProp.value < cc.fx.GameConfig.GM_INFO.tasks.useProp.target) { + cc.fx.GameConfig.GM_INFO.tasks.useProp.value += 1; + cc.fx.GameTool.setDailyQuestInfo(); + if (cc.fx.GameConfig.GM_INFO.tasks.useProp.value == cc.fx.GameConfig.GM_INFO.tasks.useProp.target) { + let data = { + id: 3, + status: "complete" + } + cc.fx.GameTool.shushu_Track("daily_task", data); + } + } + } + const timestamp = Date.now(); + cc.fx.GameConfig.GM_INFO.hammerAmount -= 1; + if (cc.fx.GameConfig.GM_INFO.hammerAmount < 0) + cc.fx.GameConfig.GM_INFO.hammerAmount = 0; + this.setPropNum(); + let propInfo = cc.fx.StorageMessage.getStorage("prop"); + console.log("锤子道具信息:", propInfo); + propInfo.hammerAmount = cc.fx.GameConfig.GM_INFO.hammerAmount; + propInfo.timestamp = timestamp; + cc.fx.StorageMessage.setStorage("prop", propInfo); + cc.fx.GameTool.setUserProp(2002, cc.fx.GameConfig.GM_INFO.hammerAmount, (data) => { + }) + let data = { + change_reason: "使用道具", + id: "2002", + num: -1 + } + cc.fx.GameTool.shushu_Track("resource_cost", data); + } + + + buyMagic() { + if (cc.fx.GameConfig.GM_INFO.coin < 900) { + MiniGameSdk.API.showToast("金币不足,无法购买道具"); + this.node.parent.parent.parent.getComponent("SceneManager").resetBtn(); + setTimeout(() => { + this.openShop(); + }, 500); + return; + } + cc.fx.GameTool.buyProp(2003, this.handleBuySuccess.bind(this, "magicAmount")); + } + + buyHammer() { + if (cc.fx.GameConfig.GM_INFO.coin < 600) { + MiniGameSdk.API.showToast("金币不足,无法购买道具"); + this.node.parent.parent.parent.getComponent("SceneManager").resetBtn(); + setTimeout(() => { + this.openShop(); + }, 500); + return; + } + cc.fx.GameTool.buyProp(2002, this.handleBuySuccess.bind(this, "hammerAmount")); + } + + buyFreeze() { + if (cc.fx.GameConfig.GM_INFO.coin < 600) { + MiniGameSdk.API.showToast("金币不足,无法购买道具"); + this.node.parent.parent.parent.getComponent("SceneManager").resetBtn(); + setTimeout(() => { + this.openShop(); + }, 500); + return; + } + cc.fx.GameTool.buyProp(2001, this.handleBuySuccess.bind(this, "freezeAmount")); + } + + openShop() { + const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点 + if (winCOIN) { + const wincoin = winCOIN.getComponent(SceneManager); + if (wincoin) { + this.pause = true; + wincoin.openShop(); + } else { + console.log("JiaZai 组件未找到"); + } + } else { + console.log("JiaZai 节点未找到"); + } + } + + //使用魔法棒随机消除两个方块 + useMagic() { + if (this.gameOver == true || this.gameWin == true) { + return; + } + //一秒之内只能点一次 + if (this.lastMagicTime && Date.now() - this.lastMagicTime < 1200) { + return; + } + this.lastMagicTime = Date.now(); + if (this.magicMask.active == true || this.timeNumber <= 1 || this.gameOver || this.gameWin) { + return; + } + + let magicBtn = this.node.parent.getChildByName("Bottom").getChildByName("magicBtn"); + if (magicBtn.getComponent("btnControl")._touch) { + magicBtn.getComponent("btnControl").setTouch(false); + if (cc.fx.GameConfig.GM_INFO.magicAmount < 1) { + // if (cc.fx.GameConfig.GM_INFO.coin < 1500) { + // MiniGameSdk.API.showToast("金币不足,无法购买道具"); + // setTimeout(() => { + // this.openShop(); + // magicBtn.getComponent("btnControl").setTouch(true); + // }, 500); + + // return; + // } + this.node.parent.parent.getChildByName("propWindow").active = true; + cc.fx.AudioManager._instance.playEffect("tanchuang", null); + let pauseNode = this.node.parent.parent.getChildByName("propWindow").getChildByName("prop"); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + this.node.parent.parent.parent.getComponent("SceneManager").openPropBuy("magic"); + // MiniGameSdk.API.showToast("魔法棒数量不足,自动购买魔法棒"); + } + else { + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + if (cc.fx.GameConfig.GM_INFO.tasks.useProp.value < cc.fx.GameConfig.GM_INFO.tasks.useProp.target) { + cc.fx.GameConfig.GM_INFO.tasks.useProp.value += 1; + cc.fx.GameTool.setDailyQuestInfo(); + if (cc.fx.GameConfig.GM_INFO.tasks.useProp.value == cc.fx.GameConfig.GM_INFO.tasks.useProp.target) { + let data = { + id: 3, + status: "complete" + } + cc.fx.GameTool.shushu_Track("daily_task", data); + } + } + } + const timestamp = Date.now(); + this.magicMask.active = true; + setTimeout(() => { + this.magicMask.active = false; + magicBtn.getComponent("btnControl").setTouch(true); + }, 1000); + + //魔法棒 + this.ismagic = true; + this.magics.active = true; + this.magics.scale = 1; + const path = [ + { + "x": -522.8444229452174, + "y": -758.2125792877125, + "z": 0 + }, + { + "x": -499.7565369594692, + "y": -775.5284937770236, + "z": 0 + }, + { + "x": -488.2125939665951, + "y": -784.1864510216792, + "z": 0 + }, + { + "x": -447.8087934915357, + "y": -789.9584225181162, + "z": 0 + }, + { + "x": -407.4049930164763, + "y": -798.6163797627719, + "z": 0 + }, + { + "x": -355.4572495485428, + "y": -810.1603227556459, + "z": 0 + }, + { + "x": -271.76366285020555, + "y": -821.70426574852, + "z": 0 + }, + { + "x": -199.61401914474237, + "y": -821.70426574852, + "z": 0 + }, + { + "x": -101.49050370531245, + "y": -821.70426574852, + "z": 0 + }, + { + "x": -23.568888503412154, + "y": -821.70426574852, + "z": 0 + }, + { + "x": 37.0368122091769, + "y": -815.932294252083, + "z": 0 + }, + { + "x": 88.9845556771104, + "y": -801.5023655109903, + "z": 0 + }, + { + "x": 129.38835615216976, + "y": -775.5284937770236, + "z": 0 + }, + { + "x": 178.4501138718847, + "y": -752.4406077912754, + "z": 0 + }, + { + "x": 215.9679285987255, + "y": -738.0106790501827, + "z": 0 + }, + { + "x": 244.82778608091087, + "y": -723.5807503090901, + "z": 0 + }, + { + "x": 267.915672066659, + "y": -703.3788500715605, + "z": 0 + }, + { + "x": 316.97742978637405, + "y": -683.1769498340307, + "z": 0 + }, + { + "x": 348.72327301677785, + "y": -662.9750495965011, + "z": 0 + }, + { + "x": 360.26721600965186, + "y": -648.5451208554084, + "z": 0 + }, + { + "x": 374.69714475074454, + "y": -625.4572348696602, + "z": 0 + }, + { + "x": 386.24108774361866, + "y": -605.2553346321305, + "z": 0 + }, + { + "x": 389.1270734918372, + "y": -587.9394201428194, + "z": 0 + }, + { + "x": 394.8990449882742, + "y": -561.9655484088526, + "z": 0 + }, + { + "x": 400.67101648471134, + "y": -521.5617479337932, + "z": 0 + }, + { + "x": 406.44298798114835, + "y": -478.2719617105153, + "z": 0 + }, + { + "x": 406.44298798114835, + "y": -434.98217548723744, + "z": 0 + }, + { + "x": 406.44298798114835, + "y": -397.4643607603965, + "z": 0 + }, + { + "x": 403.5570022329298, + "y": -359.9465460335557, + "z": 0 + }, + { + "x": 394.8990449882742, + "y": -328.2007028031519, + "z": 0 + }, + { + "x": 386.24108774361866, + "y": -299.34084532096665, + "z": 0 + }, + { + "x": 377.5831304989631, + "y": -264.7090163423443, + "z": 0 + }, + { + "x": 360.26721600965186, + "y": -227.19120161550347, + "z": 0 + }, + { + "x": 340.0653157721222, + "y": -198.33134413331823, + "z": 0 + }, + { + "x": 308.31947254171837, + "y": -163.69951515469586, + "z": 0 + }, + { + "x": 270.80165781487756, + "y": -137.72564342072906, + "z": 0 + }, + { + "x": 236.1698288362552, + "y": -126.18170042785505, + "z": 0 + }, + { + "x": 187.10807111654026, + "y": -117.52374318319937, + "z": 0 + }, + { + "x": 138.04631339682533, + "y": -117.52374318319937, + "z": 0 + }, + { + "x": 112.07244166285852, + "y": -117.52374318319937, + "z": 0 + }, + { + "x": 94.7565271735474, + "y": -117.52374318319937, + "z": 0 + }, + { + "x": 83.21258418067328, + "y": -126.18170042785505, + "z": 0 + }, + { + "x": 54.35272669848803, + "y": -146.38360066538473, + "z": 0 + }, + { + "x": 39.922797957395346, + "y": -155.0415579100403, + "z": 0 + }, + { + "x": 28.378854964521338, + "y": -169.47148665113286, + "z": 0 + }, + { + "x": 19.72089771986566, + "y": -189.67338688866255, + "z": 0 + }, + { + "x": 13.948926223428657, + "y": -215.64725862262935, + "z": 0 + }, + { + "x": 13.948926223428657, + "y": -232.96317311194048, + "z": 0 + }, + { + "x": 13.948926223428657, + "y": -253.16507334947016, + "z": 0 + } + ] + + // 转换为 cc.v3 数组 + const pts = path.map(point => cc.v3(point.x, point.y, point.z)); + const totalDur = 0.8; // 总时长 + + const smoothPts = this.getSmoothPath(pts, 10); // + + // this.magics.setPosition(smoothPts[0]); + + let totalLen = 0; + let lens: number[] = []; + + + // 1. 先把节点/粒子立即隐藏并复位 + this.magics.stopAllActions(); // 立即停止旧动画 + this.magics.setPosition(smoothPts[0]); // 必须在一开始就先放到起点 + this.magics.active = true; // 保证节点可见 + this.magics.children[0].children[2].active = false; // 先关粒子 + this.magics.children[0].children[3].active = false; + for (let i = 1; i < smoothPts.length; i++) { + const len = smoothPts[i].sub(smoothPts[i - 1]).mag(); + lens.push(len); + totalLen += len; + } + // 1. 立即停止并清零粒子 + const p1 = this.magics.children[0].children[2].getComponent(cc.ParticleSystem); + const p2 = this.magics.children[0].children[3].getComponent(cc.ParticleSystem); + p1 && p1.stopSystem(); // true 表示立即清零 + p2 && p2.stopSystem(); + + // 2. 把节点放到起点 + this.magics.stopAllActions(); + this.magics.setPosition(smoothPts[0]); + + // 3. 下一帧再重新播放 + this.scheduleOnce(() => { + p1 && p1.resetSystem(); // 重置到初始状态再播放 + p2 && p2.resetSystem(); + this.magics.children[0].children[2].active = true; + this.magics.children[0].children[3].active = true; + + // 4. tween 动画 + let t = cc.tween(this.magics); + for (let i = 1; i < smoothPts.length; i++) { + const segDur = totalDur * (lens[i - 1] / totalLen); + t = t.to(segDur, { position: smoothPts[i] }); + } + t.delay(0.5).call(() => { + p1 && p1.stopSystem(); // 结束后再停 + p2 && p2.stopSystem(); + this.magics.children[0].children[2].active = false; + this.magics.children[0].children[3].active = false; + }).to(0.15, { scale: 0 }) + .call(() => { + this.magics.setPosition(-900, -700, 0); + this.magics.active = false; + }) + .start(); + }, 0); + + + + cc.fx.GameConfig.GM_INFO.magicAmount -= 1; + if (cc.fx.GameConfig.GM_INFO.magicAmount < 0) + cc.fx.GameConfig.GM_INFO.magicAmount = 0; + this.setPropNum(); + // this.magicLabel.string = cc.fx.GameConfig.GM_INFO.magicAmount.toString(); + let propInfo = cc.fx.StorageMessage.getStorage("prop"); + if (propInfo) { + propInfo.magicAmount = cc.fx.GameConfig.GM_INFO.magicAmount; + propInfo.timestamp = timestamp; + cc.fx.StorageMessage.setStorage("prop", propInfo); + cc.fx.GameTool.setUserProp(2003, cc.fx.GameConfig.GM_INFO.magicAmount, (data) => { + }) + let data = { + change_reason: "使用道具", + id: "2003", + num: -1 + } + cc.fx.GameTool.shushu_Track("resource_cost", data); + } + + let nomalArray = []; + // this.magicBtn.node.active = false; + for (let i = 0; i < this.blocks.length; i++) { + // console.log("方块类型",this.blocks[i].getComponent("Block").type); + if (this.blocks[i].getComponent("Block").type == 3) { + if (this.blocks[i].getComponent("Block").block_Info.floor == undefined || this.blocks[i].getComponent("Block").block_Info.floor == null) { + this.loackArray.push(this.blocks[i]); + } + } + else if (this.blocks[i].getComponent("Block").type == 4) { + if (this.blocks[i].getComponent("Block").block_Info.floor != undefined || this.blocks[i].getComponent("Block").block_Info.floor == null) { + this.freezeArray.push(this.blocks[i]); + } + } + else if (this.blocks[i].getComponent("Block").type == 10) { + if (this.blocks[i].getComponent("Block").block_Info.node) { + if (this.blocks[i].getComponent("Block").block_Info.node.getComponent("Block").block_Info.floor != undefined && + this.blocks[i].getComponent("Block").block_Info.node.getComponent("Block").block_Info.floor != null) { + nomalArray.push(this.blocks[i].getComponent("Block").block_Info.node); + } + } + // else nomalArray.push(this.blocks[i]); + } + else { + if (!this.blocks[i].getComponent("Block").isEliminatedByHammer) { + if (this.blocks[i].getComponent("Block").block_Info.floor == undefined || this.blocks[i].getComponent("Block").block_Info.floor == null) { + // 只有未被锤子标记的方块才加入魔棒消除数组 + nomalArray.push(this.blocks[i]); + } + } + } + } + if (nomalArray.length > 1) { + nomalArray = cc.fx.GameTool.shuffleArray(nomalArray); + nomalArray[0].getComponent("Block").eliminate(true); + let time = 0; + if (nomalArray[0].getComponent("Block").type == 1 || nomalArray[0].getComponent("Block").type == 9) { + time = 200; + } + // nomalArray[1].getComponent("Block").eliminate(false); + if (time > 0) { + setTimeout(() => { + nomalArray[1].getComponent("Block").eliminate(false); + }, time); + return; + } + else { + nomalArray[1].getComponent("Block").eliminate(false); + return; + } + } + else if (nomalArray.length == 1) { + nomalArray[0].getComponent("Block").eliminate(true); + let time = 0; + if (nomalArray[0].getComponent("Block").type == 1 || nomalArray[0].getComponent("Block").type == 9) { + time = 200; + } + setTimeout(() => { + if (this.freezeArray.length == 0 && this.loackArray.length == 0) { + // console.log("只剩下一个块道具使用完毕"); + } + else { + if (this.loackArray.length != 0) { + // console.log("消除一个普通块后,消除一个带锁块"); + this.loackArray[0].getComponent("Block").eliminate(false); + return; + } + else if (this.freezeArray.length != 0) { + // console.log("消除一个普通块后,消除一个冻结块"); + this.freezeArray[0].getComponent("Block").eliminate(false); + return; + } + } + }, 200 + time); + } + else { + let count = 2; + if (this.loackArray.length != 0) { + for (let i = 0; i < this.loackArray.length; i++) { + // console.log("没有普通快,魔法消除一个带锁块"); + this.loackArray[i].getComponent("Block").eliminate(true); + count -= 1; + if (count == 0) { + break; + } + } + } + + setTimeout(() => { + if (count != 0) { + for (let i = 0; i < this.freezeArray.length; i++) { + // console.log("没有普通快,魔法消除一个冻结块"); + // this.freezeArray[i].getComponent("Block").eliminate(); + count -= 1; + if (count == 0) { + break; + } + } + } + }, 100); + } + } + } + } + + + + //按下暂停按钮 + usePause() { + if (this.pause) { + if (this.iceTrue() == false) { + this.pause = false; + if (this.gameStart == true) this.startBoom(); + } + } + else { + this.pause = true; + this.stopBoom(); + } + } + + + + //根据关卡设置地图大小 + setMapInfo() { + let width = 0; + if (this.mapWidth < 10) { + width = 0.2; + } + else if (this.mapWidth < 17) { + width = 0.15 - (this.mapWidth - 11) * 0.01; + } + + this.node.scale = 1.6 + (6 - this.mapWidth) * width; + + if (this.mapWidth == 8 && this.mapHeight > 13) { + this.node.scale = 1; + } + + // this.node.scale = 1; + cc.fx.GameConfig.GM_INFO.scale = this.node.scale; + // this.node.scale = 0.5; + // console.log(this.node.scale); + // this.node.scale = 1; + } + + //创建门的粒子特效 + createParticle(block, jg) { + let particle = cc.instantiate(MapConroler._instance.Block_Prop[9]); + particle.parent = this.node; + particle.zIndex = 1000; + let width = Math.floor(block.width / 120); + let height = Math.floor(block.height / 120); + let name = ""; + + if (jg == 0 || jg == 1) { + let y = block.y + block.height; + let x = block.x - block.width / 2; + name = "top_" + width + "_" + height; + if (jg == 1) { + name = "bot_" + width + "_" + height; + y = block.y; + } + if (block.anchorX == 0.5) { + x = block.x; + } + else if (block.anchorX == 0.33) { + x = block.x + block.width * (0.5 - 0.33); + } + else if (block.anchorX == 0.66) { + x = block.x + block.width * (0.5 - 0.66); + } + particle.setPosition(x, y); + } + else if (jg == 2 || jg == 3) { + name = "left_" + height + "_" + width; + let x = block.x - block.width; + let y = block.y + block.height / 2; + if (block.anchorX == 0.5) { + x = block.x - block.width / 2; + } + else if (block.anchorX == 0.33) { + x = block.x - block.width * 0.33; + } + else if (block.anchorX == 0.66) { + x = block.x - block.width * 0.66; + } + if (jg == 3) { + name = "right_" + height + "_" + width; + x = block.x; + if (block.anchorX == 0.5) { + x = block.x + block.width / 2; + } + else if (block.anchorX == 0.33) { + x = block.x + block.width * 0.66; + } + else if (block.anchorX == 0.66) { + x = block.x + block.width * 0.33; + } + } + + particle.setPosition(x, y); + } + + let particleNode = particle.getChildByName(name); + let color = block.getComponent("Block").color - 1; + + particleNode.getComponent(cc.ParticleSystem).spriteFrame = particle.getComponent("Reduce").Block_Color[color]; + particleNode.active = true; + setTimeout(() => { + cc.tween(particle) + .to(2, { opacity: 0 }) + .call(() => { + particle.destroy(); + }) + .start(); + }, 1200); + } + + removeOneBlock() { + // 移除所有方块 + for (let i = 0; i < this.blocks.length; i++) { + if (this.blocks[i].opacity == 0) { + this.blocks[i].destroy(); + this.blocks.splice(i, 1); + } + } + } + + startBoom() { + for (let i = 0; i < this.blocks.length; i++) { + if (this.blocks[i].getComponent("Block").type == 6) { + this.blocks[i].getChildByName("boom").getComponent("Boom").startBoom(); + } + } + } + + stopBoom() { + for (let i = 0; i < this.blocks.length; i++) { + if (this.blocks[i].getComponent("Block").type == 6) { + this.blocks[i].getChildByName("boom").getComponent("Boom").stopBoom(); + } + } + } + + getSmoothPath(pts: cc.Vec3[], radius = 10): cc.Vec3[] { + if (pts.length < 3) return pts.slice(); + const smoothPts: cc.Vec3[] = [pts[0]]; + for (let i = 1; i < pts.length - 1; i++) { + const prev = pts[i - 1]; + const curr = pts[i]; + const next = pts[i + 1]; + // 方向向量 + const dir1 = curr.sub(prev).normalize(); + const dir2 = next.sub(curr).normalize(); + // 计算前后过渡点 + const before = curr.sub(dir1.mul(radius)); + const after = curr.add(dir2.mul(radius)); + smoothPts.push(before); + smoothPts.push(curr); + smoothPts.push(after); + } + smoothPts.push(pts[pts.length - 1]); + return smoothPts; + } + + startHammer(pos: cc.Vec3) { + this.hammerAni.active = true; + this.hammerAni.scale = 1; + // this.hammerAni.position = cc.v3(-116, -800); + this.hammerAni.setPosition(pos); + this.hammerAni.zIndex = 1000; + this.hammerAni.getComponent(sp.Skeleton).setAnimation(0, "animation", false); + //播放结束后消失 + this.hammerAni.getComponent(sp.Skeleton).setCompleteListener(() => { + cc.tween(this.hammerAni).to(0.1, { scale: 0 }).call(() => { + this.hammerAni.active = false; + }).start(); + }) + } + + + //判断方块是否可以正常通过门 + blockCanPass(block, wall) { + let jg = false; + let heng = block.getComponent("Block").heng; + let shu = block.getComponent("Block").shu; + let direction = wall.node.parent.name; + if (direction == "left" || direction == "right") { + if (wall.wall_Info.length >= shu) { + jg = true; + } + } + else { + if (wall.wall_Info.length >= heng) { + jg = true; + } + } + if (!jg) { + console.log("普通快:不可通过"); + } + return jg; + } + + //判断方块是否是可移动类型 + blockCanMove(block) { + if (block.getComponent("Block").type == 10 || block.getComponent("Block").type == 3 + || block.getComponent("Block").type == 4) { + return false; + } + return true; + } + + //提前判断游戏结束 + predict_End() { + //return true; + // console.log("提前判断游戏结束"); + if (this.gameOver || this.gameWin) { + return true; + } + let result = false; + if (this.blocks.length == 0) { + return true; + } + for (let i = 0; i < this.blocks.length; i++) { + //确保方块是可移动状态下再做判断 + if (this.blockCanMove(this.blocks[i])) { + let color = this.blocks[i].getComponent("Block").color; + for (let j = 0; j < this.wall_Pass.length; j++) { + //如果颜色相同 + if (this.wall_Pass[j].color == color) { + //星星块特殊判断 + if (this.blocks[i].getComponent("Block").type == 5) { + // console.log("星星块,判断是否可通行"); + if (this.wall_Pass[j].special == 1) { + // console.log("星星门,可通行"); + result = this.blockCanPass(this.blocks[i], this.wall_Pass[j]); + if (result == true) + return result; + } + else { + // console.log("普通门,不可通行"); + continue; + } + } + else { + if (this.wall_Pass[j].special == 2) { + if (this.wall_Pass[j].open == true) { + // console.log("开关门并且开着"); + result = this.blockCanPass(this.blocks[i], this.wall_Pass[j]); + if (result == true) + return result; + } + else { + // console.log("开关门并且关着,________不可通行"); + continue; + } + } + else if (this.wall_Pass[j].special == 3 || this.wall_Pass[j].special == 4 || this.wall_Pass[j].special == 5) { + // console.log("冻结门,不可通行"); + continue; + } + else { + // console.log("普通门,判断是否可通行"); + result = this.blockCanPass(this.blocks[i], this.wall_Pass[j]); + if (result == true) + return result; + } + } + } + } + } + } + return result; + } + + // 展示连胜界面动画 + openWinStreak() { + let winStreak = this.node.parent.parent.getChildByName("Win").getChildByName("WinStreak"); + winStreak.getChildByName("open").active = false; + if (cc.fx.GameConfig.GM_INFO.winStreak > 0) { + let hammer = winStreak.getChildByName("hammer").children; + let count = cc.fx.GameConfig.GM_INFO.winStreak; + if (count >= 10) { + winStreak.getChildByName("open").active = true; + count = 10; + } + for (let i = 0; i < count; i++) { + if (i < 10) { + hammer[i].active = true; + if (i < count - 1) hammer[i].scaleX = hammer[i].scaleY = 0.5; + else { + hammer[i].scaleX = hammer[i].scaleY = 0; + cc.tween(hammer[i]) + .delay(0.2) + .to(0.2, { scaleX: 0.7, scaleY: 0.7 }) // 快速放大到0.7 + .to(0.1, { scaleX: 0.4, scaleY: 0.4 }) // 突然缩小制造弹性感 + .to(0.1, { scaleX: 0.6, scaleY: 0.6 }) // 再次弹起到0.6 + .to(0.1, { scaleX: 0.5, scaleY: 0.5 }) // 最终稳定到0.5 + .to(0.05, { scaleX: 0.55, scaleY: 0.45 }) // X轴抖动效果 + .to(0.05, { scaleX: 0.45, scaleY: 0.55 }) // Y轴抖动效果 + .to(0.1, { scaleX: 0.5, scaleY: 0.5 }) // 恢复最终比例 + .start(); + } + } + } + } + this.numberToImageNodes2(cc.fx.GameConfig.GM_INFO.winStreak, 10, 5, "", winStreak.getChildByName("number"), true); + } + + + //结算界面 + Settlement() { + cc.fx.AudioManager._instance.playEffect("win", null) + //获取this.gameOverNode所有子节点的位置 + let child = this.gameOverNode; + for (let i = 0; i < this.gameOverNode.childrenCount; i++) { + //记录每个节点的位置 + const p = child.children[i].position; + this.arr[i] = [p.x, p.y, p.z]; + } + + let title = this.gameOverNode.getChildByName("gongxi"); + let homeBtn = this.gameOverNode.getChildByName("homeBtn"); + let nextBtn = this.gameOverNode.getChildByName("nextBtn"); + let tiaodik = this.gameOverNode.getChildByName("tiaodik"); + let pian = this.gameOverNode.getChildByName("pian"); + let guang = this.gameOverNode.getChildByName("guang"); + let coins4 = this.gameOverNode.getChildByName("coins4"); + let caidai = this.gameOverNode.getChildByName("caidai"); + + // 初始化所有元素为隐藏状态 + title.active = false; + homeBtn.active = false; + nextBtn.active = false; + tiaodik.active = false; + pian.active = false; + guang.active = false; + coins4.active = false; + caidai.active = false; + + + console.log(this.arr, "this.arr"); + + // 第一步:播放 title - 果冻弹跳效果 + cc.tween(title) + .to(0, { scale: 0, position: cc.v3(0, 0, 0) }) + .call(() => { + title.active = true; + //播放速度减慢一倍 + const anim = title.getChildByName("cai").getComponent(cc.Animation); + anim.defaultClip.speed = 0.5; // 全局默认速度 + anim.play(); // 开始播放 + }) + .to(0.12, { scale: 1.2 }, { easing: 'quadOut' }) + .to(0.08, { scale: 0.85 }, { easing: 'quadIn' }) + .to(0.06, { scale: 1.1 }, { easing: 'quadOut' }) + .to(0.04, { scale: 1 }, { easing: 'quadIn' }) + .delay(0.1) + .to(0.4, { x: this.arr[0][0], y: this.arr[0][1], z: this.arr[0][2] }) + .call(() => { + this.playButtonGroup(); + }) + .start(); + } + + // 播放按钮组动画 + playButtonGroup() { + let homeBtn = this.gameOverNode.getChildByName("homeBtn"); + let nextBtn = this.gameOverNode.getChildByName("nextBtn"); + let tiaodik = this.gameOverNode.getChildByName("tiaodik"); + + cc.tween(homeBtn) + // .to(0, { position: cc.v3(0, -680, 0), scale: 0 }) + .call(() => { + homeBtn.active = true; + }) + .to(0.15, { scale: 1.25 }, { easing: 'backOut' }) + .to(0.08, { scale: 0.9 }, { easing: 'quadIn' }) + .to(0.06, { scale: 1.15 }, { easing: 'quadOut' }) + .to(0.04, { scale: 1 }, { easing: 'quadIn' }) + // .to(0.3 / 2, { position: cc.v3(this.arr[6][0], this.arr[6][1], this.arr[6][2]) }) + .start(); + + cc.tween(nextBtn) + .delay(0.1) + //.to(0, { position: cc.v3(0, -880, 0), scale: 0 }) + .call(() => { + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + nextBtn.active = true; + } + else { + cc.fx.GameConfig.GM_INFO.otherLevel = 0; + cc.fx.GameConfig.GM_INFO.otherUid = ""; + } + }) + .to(0.15, { scale: 1.25 }, { easing: 'backOut' }) + .to(0.08, { scale: 0.9 }, { easing: 'quadIn' }) + .to(0.06, { scale: 1.15 }, { easing: 'quadOut' }) + .to(0.04, { scale: 1 }, { easing: 'quadIn' }) + .call(() => { + this.playDecorationGroup(); + }) + // .to(0.3 / 2, { position: cc.v3(this.arr[5][0], this.arr[5][1], this.arr[5][2]) }) + + .start(); + + // tiaodik 动画(再延迟一点 + cc.tween(tiaodik) + .delay(0.2) + // .to(0, { position: cc.v3(0, -1080, 0), scale: 0 }) + .call(() => { + tiaodik.active = true; + }) + .to(0.15, { scale: 1.25 }, { easing: 'backOut' }) + .to(0.08, { scale: 0.9 }, { easing: 'quadIn' }) + .to(0.06, { scale: 1.15 }, { easing: 'quadOut' }) + .to(0.04, { scale: 1 }, { easing: 'quadIn' }) + // .to(0.3 / 2, { position: cc.v3(this.arr[4][0], this.arr[4][1], this.arr[4][2]) }) + .start(); + } + + // 播放装饰元素动画 + playDecorationGroup() { + let pian = this.gameOverNode.getChildByName("pian"); + let guang = this.gameOverNode.getChildByName("guang"); + let coins4 = this.gameOverNode.getChildByName("coins4"); + let caidai = this.gameOverNode.getChildByName("caidai"); + let diguan = this.gameOverNode.getChildByName("diguan"); + + // caidai 先播放骨骼动画 + cc.tween(caidai) + .to(0, { scale: 2 }) + .call(() => { + caidai.active = true; + caidai.getComponent(sp.Skeleton).setAnimation(0, "animation", false); + caidai.getComponent(sp.Skeleton).setCompleteListener(() => { + caidai.active = false; + }); + }) + .start(); + + // pian 动画(稍微延迟 + cc.tween(pian) + .delay(0.05) + .to(0, { scale: 0 }) + .call(() => { + pian.active = true; + }) + .to(0.3, { scale: 3.6 }) + .call(() => { + pian.active = false; + }) + .start(); + + // guang 动画(再延迟一点) + cc.tween(guang) + .delay(0.1) + .to(0, { scale: 0 }) + .call(() => { + guang.active = true; + }) + .to(0.3, { scale: 1 }) + .start(); + + // coins4 动画(最后播放) + cc.tween(coins4) + .delay(0.15) + .to(0, { scale: 0 }) + .call(() => { + coins4.active = true; + }) + .to(0.2, { scale: 2.2 }, { easing: 'backOut' }) + .to(0.12, { scale: 1.8 }, { easing: 'quadIn' }) + .to(0.08, { scale: 2.1 }, { easing: 'quadOut' }) + .to(0.06, { scale: 2 }, { easing: 'quadIn' }) + .start(); + + // diguan 动画 + cc.tween(diguan) + .delay(0.3) + .to(0.15, { scale: 2.15 }, { easing: 'backOut' }) + .to(0.08, { scale: 1.9 }, { easing: 'quadIn' }) + .to(0.06, { scale: 2.05 }, { easing: 'quadOut' }) + .to(0.04, { scale: 2 }, { easing: 'quadIn' }) + .start(); + } + + setOtherLevel() { + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + console.log("帮助他人通关"); + let level = cc.fx.GameConfig.GM_INFO.otherLevel; + let uid = cc.fx.GameConfig.GM_INFO.otherUid; + let eventData = { + identity: "helper", //发起者为helped 帮助者为helper + helpedId: cc.fx.GameConfig.GM_INFO.otherUid, //被帮助者UID + level: level, //被帮助关卡等级 + success: true, //是否成功 + } + cc.fx.GameTool.shushu_Track("stage_help", eventData); //帮助通关 + Utils.shareLevel(level, uid, (data) => { + console.log("分享结果:", data); + }); + } + } + + iceTrue() { + if (this.node.parent.getChildByName("Ice").active == true || this.gameOver || this.gameWin) { + return true; + } + else { + return false; + } + } + + numberToImageNodes2(number, width, posX, name, targetNode: cc.Node, right: boolean = false) { + const numStr = number.toString(); + let cha = 0; + if (number > 99) cha = -posX + else if (number < 10) cha = posX + if (targetNode.children.length > 0) + targetNode.removeAllChildren(); + + const digitNodes: cc.Node[] = []; + for (let i = 0; i < numStr.length; i++) { + let digit = parseInt(numStr[i], 10); + const node = new cc.Node(); + const sprite = node.addComponent(cc.Sprite); + if (numStr[i] == ":") digit = 10; + sprite.spriteFrame = this.fontUI._spriteFrames[name + digit + ""]; + digitNodes.push(node); + } + + // 计算总宽度 + // const totalWidth = (numStr.length - 1) * width + (digitNodes[0]?.width || 0); + // 计算总宽度,累加每个节点的宽度和间距 + let totalWidth = 0; + for (let i = 0; i < digitNodes.length; i++) { + totalWidth += digitNodes[i].width; + if (i < digitNodes.length - 1) { + totalWidth += width; + } + } + if (right) { + // 新右对齐逻辑:从右向左排列 + let currentX = 0; // 最右侧起点 + for (let i = digitNodes.length - 1; i >= 0; i--) { + const node = digitNodes[i]; + node.x = currentX - node.width; + currentX -= (node.width + width); // 向左累加宽度和间距 + if (targetNode) node.parent = targetNode; + } + } else { + let currentX = cha; + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = currentX; + currentX += node.width + width; + if (targetNode) node.parent = targetNode; + } + } + } + + useHammerSpecial() { + if (this.gameOver == true || this.gameWin == true) { + return; + } + //一秒之内只能点一次 + if (this.lastHammerTime && Date.now() - this.lastHammerTime < 1000) { + return; + } + this.lastHammerTime = Date.now(); + if (this.magicMask.active == true || this.timeNumber <= 1 || this.gameOver || this.gameWin) { + return; + } + + if (!this.hammer) { + const timestamp = Date.now(); + this.hammerMask.active = true; + this.hammer = true; + this.ishammer = true; + this.winStreakBtn.node.active = false; + this.destroyBtn.node.getChildByName("mul10").opacity = 255; + } + else MiniGameSdk.API.showToast("道具使用中,请稍后再试"); + + + + + } + + update(dt) { + + } +} diff --git a/assets/Script/Map.ts.meta b/assets/Script/Map.ts.meta new file mode 100644 index 0000000..37e6720 --- /dev/null +++ b/assets/Script/Map.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "2234ab2c-a7b4-48be-90e0-ae7aa58e9d91", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/MapBlock.ts b/assets/Script/MapBlock.ts new file mode 100644 index 0000000..d500c44 --- /dev/null +++ b/assets/Script/MapBlock.ts @@ -0,0 +1,47 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + + @property(cc.Label) + label: cc.Label = null; + + @property + block_Id: string = ''; + + @property(cc.SpriteAtlas) + riseFall: cc.SpriteAtlas = null; + + // LIFE-CYCLE CALLBACKS: + + posX: number = 0; //地图块的X坐标 + posY: number = 0; //地图块的Y坐标 + direction: string = ""; //地图块的方向 + // onLoad () {} + + start() { + this.direction = ""; + this.block_Id = ""; + + // this.node.getChildByName("num").getComponent(cc.Label).string = this.direction; + } + + setDiraction(direction) { + this.direction = direction; + // this.node.getChildByName("num").getComponent(cc.Label).string = this.direction; + } + + init(posX, posY) { + this.posX = posX; + this.posY = posY; + } + + // update (dt) {} +} diff --git a/assets/Script/MapBlock.ts.meta b/assets/Script/MapBlock.ts.meta new file mode 100644 index 0000000..e66d7b2 --- /dev/null +++ b/assets/Script/MapBlock.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "52958c6c-bab5-40a7-9e16-328fb1143a3a", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/NewMode.ts b/assets/Script/NewMode.ts new file mode 100644 index 0000000..22b751d --- /dev/null +++ b/assets/Script/NewMode.ts @@ -0,0 +1,66 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + + @property(cc.Label) + label: cc.Label = null; + + @property + text: string = 'hello'; + + btnStatic: number = 0; + + propName: string = ""; + + // LIFE-CYCLE CALLBACKS: + + // onLoad () {} + + start() { + for (let i = 0; i < cc.fx.GameConfig.NEW_LEVEL.length; i++) { + if ((cc.fx.GameConfig.GM_INFO.level + 1) == cc.fx.GameConfig.NEW_LEVEL[i].level) { + this.propName = cc.fx.GameConfig.NEW_LEVEL[i].name; + const path = 'Window_Prop/' + this.propName; + cc.resources.load(path, cc.SpriteFrame, (err, spriteFrame: cc.SpriteFrame) => { + if (err) { + console.error('动态加载背景图失败:', err); + return; + } + this.node.getChildByName("newmode").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + }) + break; + } + } + } + + setMode(mode: number) { + this.btnStatic = mode; + let name = "GameScene"; + if (mode == 1) { + name = "HomeScene"; + } + cc.director.preloadScene(name, () => { + + }) + } + + clickBtn() { + cc.fx.AudioManager._instance.playEffect("anniu_Big", null); + if (this.btnStatic == 1) { + cc.director.loadScene("HomeScene"); + } + else if (this.btnStatic == 2) { + cc.director.loadScene("GameScene"); + } + } + + // update (dt) {} +} diff --git a/assets/Script/NewMode.ts.meta b/assets/Script/NewMode.ts.meta new file mode 100644 index 0000000..14aa2ab --- /dev/null +++ b/assets/Script/NewMode.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "7fe14751-1506-4a48-a280-a049f84bb394", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/NumberToImage.ts b/assets/Script/NumberToImage.ts new file mode 100644 index 0000000..caf5b6a --- /dev/null +++ b/assets/Script/NumberToImage.ts @@ -0,0 +1,297 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class NumberToImage extends cc.Component { + + @property(cc.SpriteAtlas) + fontUI: cc.SpriteAtlas = null; + + @property(cc.SpriteAtlas) + fontUI2: cc.SpriteAtlas = null; + + + static font: any = null; + static font2: any = null; + static font3: any = null; + // LIFE-CYCLE CALLBACKS: + + onLoad() { + if (this.fontUI != null) { + NumberToImage.font = this.fontUI; + NumberToImage.font2 = this.fontUI2; + } + } + + //第一个参数 数字, 第二个参数 数字间距 第三个参数 占位宽度 第四个参数 目标节点 + static numberToImageNodes(number, width, posX, name, targetNode: cc.Node, middle: boolean = false) { + const numStr = number.toString(); + let cha = 0; + if (number > 99) cha = -posX + else if (number < 10) cha = posX + if (targetNode.children.length > 0) + targetNode.removeAllChildren(); + + const digitNodes: cc.Node[] = []; + for (let i = 0; i < numStr.length; i++) { + const digit = parseInt(numStr[i], 10); + const node = new cc.Node(); + const sprite = node.addComponent(cc.Sprite); + sprite.spriteFrame = this.font._spriteFrames[name + digit + ""]; + digitNodes.push(node); + } + + // 计算总宽度 + const totalWidth = (numStr.length - 1) * width + (digitNodes[0]?.width || 0); + + if (middle) { + // 计算居中的起始位置 + const startX = -totalWidth / 2; + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = startX + i * width; + if (targetNode) node.parent = targetNode; + } + } else { + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = i * width + cha; + if (targetNode) node.parent = targetNode; + } + } + } + + static numberToImageNodes2(number, width, posX, name, targetNode: cc.Node, right: boolean = false) { + const numStr = number.toString(); + let cha = 0; + if (number > 99) cha = -posX + else if (number < 10) cha = posX + if (targetNode.children.length > 0) + targetNode.removeAllChildren(); + + const digitNodes: cc.Node[] = []; + for (let i = 0; i < numStr.length; i++) { + let digit = parseInt(numStr[i], 10); + const node = new cc.Node(); + const sprite = node.addComponent(cc.Sprite); + if (numStr[i] == ":") digit = 10; + sprite.spriteFrame = this.font._spriteFrames[name + digit + ""]; + digitNodes.push(node); + } + + // 计算总宽度 + // const totalWidth = (numStr.length - 1) * width + (digitNodes[0]?.width || 0); + // 计算总宽度,累加每个节点的宽度和间距 + let totalWidth = 0; + for (let i = 0; i < digitNodes.length; i++) { + totalWidth += digitNodes[i].width; + if (i < digitNodes.length - 1) { + totalWidth += width; + } + } + if (right) { + // 新右对齐逻辑:从右向左排列 + let currentX = 0; // 最右侧起点 + for (let i = digitNodes.length - 1; i >= 0; i--) { + const node = digitNodes[i]; + node.x = currentX - node.width; + currentX -= (node.width + width); // 向左累加宽度和间距 + if (targetNode) node.parent = targetNode; + } + } else { + let currentX = cha; + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = currentX; + currentX += node.width + width; + if (targetNode) node.parent = targetNode; + } + } + } + + static numberToImageNodes3(number, width, posX, name, targetNode: cc.Node, middle: boolean = false) { + const numStr = number.toString(); + let cha = 0; + if (number > 99) cha = -posX + else if (number < 10) cha = posX + if (targetNode.children.length > 0) + targetNode.removeAllChildren(); + + const digitNodes: cc.Node[] = []; + for (let i = 0; i < numStr.length; i++) { + const digit = parseInt(numStr[i], 10); + const node = new cc.Node(); + const sprite = node.addComponent(cc.Sprite); + sprite.spriteFrame = this.font2._spriteFrames[name + digit + ""]; + digitNodes.push(node); + } + + // 计算总宽度 + const totalWidth = (numStr.length - 1) * width + (digitNodes[0]?.width || 0); + + if (middle) { + // 计算居中的起始位置 + const startX = -totalWidth / 2; + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = startX + i * width; + if (targetNode) node.parent = targetNode; + } + } else { + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = i * width + cha; + if (targetNode) node.parent = targetNode; + } + } + } + + + static getTimeMargin(number, width, name, targetNode: cc.Node) { + let timeArr = []; + let total = 0; + total = number; + let hour = 0; + hour = parseInt((total / 3600) + "");//计算整数小时数 + let afterHour = total - hour * 60 * 60;//取得算出小时数后剩余的秒数 + let min = parseInt((afterHour / 60) + "");//计算整数分 + let m = "" + min; + + if (min < 10) m = "0" + min; + let afterMin = total - hour * 60 * 60 - min * 60;//取得算出分后剩余的秒数 + let miao = afterMin + ""; + + if (afterMin < 10) miao = "0" + afterMin; + + let result = m + miao; + for (let i = 0; i < result.length; i++) { + const digit = parseInt(result[i], 10); + timeArr.push(digit); + } + + if (targetNode.children.length > 0) { + for (let i = 0; i < targetNode.children.length; i++) { + targetNode.children[i].getComponent(cc.Sprite).spriteFrame = this.font._spriteFrames[name + timeArr[i] + ""]; + } + } + else { + for (let i = 0; i < 4; i++) { + const node = new cc.Node(); + const sprite = node.addComponent(cc.Sprite); + const digit = timeArr[i]; + // debugger; + sprite.spriteFrame = this.font._spriteFrames[name + digit + ""]; + // 将节点添加到目标节点下 + node.x = i * width; + if (i > 1) node.x += 35; + if (targetNode) node.parent = targetNode; + } + } + + } + + + static getTimeMargin2(number, width, name, targetNode: cc.Node, middle: boolean = false) { + let timeArr = []; + let total = 0; + total = number; + let hour = 0; + hour = parseInt((total / 3600) + "");//计算整数小时数 + let afterHour = total - hour * 60 * 60;//取得算出小时数后剩余的秒数 + let min = parseInt((afterHour / 60) + "");//计算整数分 + let m = "" + min; + + if (min < 10) m = "0" + min; + let afterMin = total - hour * 60 * 60 - min * 60;//取得算出分后剩余的秒数 + let miao = afterMin + ""; + + if (afterMin < 10) miao = "0" + afterMin; + // 将小时部分格式化为两位数 + let h = "" + hour; + if (hour < 10) h = "0" + hour; + + let result = m + miao; + // 拼接小时、分、秒 + if (hour > 0) + result = h + m + miao; + for (let i = 0; i < result.length; i++) { + const digit = parseInt(result[i], 10); + timeArr.push(digit); + } + + const digitNodes: cc.Node[] = []; + + if (targetNode.children.length > 0) { + for (let i = 0; i < targetNode.children.length; i++) { + const node = targetNode.children[i]; + const sprite = node.getComponent(cc.Sprite); + sprite.spriteFrame = this.font._spriteFrames[name + timeArr[i] + ""]; + digitNodes.push(node); + } + } + else { + for (let i = 0; i < timeArr.length; i++) { + const node = new cc.Node(); + const sprite = node.addComponent(cc.Sprite); + const digit = timeArr[i]; + sprite.spriteFrame = this.font._spriteFrames[name + digit + ""]; + digitNodes.push(node); + } + } + + // 计算总宽度 + const totalWidth = (timeArr.length - 1) * width + (digitNodes[0]?.width || 0); + + if (middle) { + // 计算居中的起始位置 + const startX = -totalWidth / 2; + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = startX + i * width; + if (i > 1) node.x += 20; + if (i > 3) node.x += 20; + if (targetNode) node.parent = targetNode; + } + } else { + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = i * width; + if (i > 1) node.x += 20; + if (i > 3) node.x += 20; + if (targetNode) node.parent = targetNode; + } + } + } + + // static calculateAndConvert(num1: number, num2: number, operator: '+' | '-' | '*' | '/', spriteFrames: SpriteFrame[]): Node[] { + // let result: number; + // switch (operator) { + // case '+': + // result = num1 + num2; + // break; + // case '-': + // result = num1 - num2; + // break; + // case '*': + // result = num1 * num2; + // break; + // case '/': + // result = num1 / num2; + // break; + // default: + // throw new Error('不支持的运算符'); + // } + + // // 处理结果为小数的情况,这里简单取整 + // result = Math.floor(result); + // return this.numberToImageNodes(result, spriteFrames); + // } + + // update (dt) {} +} diff --git a/assets/Script/NumberToImage.ts.meta b/assets/Script/NumberToImage.ts.meta new file mode 100644 index 0000000..f7edaa9 --- /dev/null +++ b/assets/Script/NumberToImage.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "669f44ae-4a5f-4e46-a6b0-05c6f008da46", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Pause.ts b/assets/Script/Pause.ts new file mode 100644 index 0000000..eec062a --- /dev/null +++ b/assets/Script/Pause.ts @@ -0,0 +1,144 @@ +// // Learn TypeScript: +// // - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// // Learn Attribute: +// // - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// // Learn life-cycle callbacks: +// // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + + +// const {ccclass, property} = cc._decorator; + + +// @ccclass +// export default class Pause extends cc.Component { +// static _instance: any; +// time: number = 0; + +// @property(cc.Node) +// music: cc.Node = null; + +// @property(cc.Node) +// effect: cc.Node = null; + +// @property(cc.Node) +// vibrate: cc.Node = null; + +// @property(cc.SpriteFrame) +// open: cc.SpriteFrame = null; + +// @property(cc.SpriteFrame) +// close: cc.SpriteFrame = null; + +// // mapInfo: number[][] = []; + +// musicState: boolean = true; +// effectState: boolean = true; +// vibrateState: boolean = true; + +// onLoad () { +// if(cc.fx.GameConfig.GM_INFO.musicOpen){ +// this.music.getComponent(cc.Sprite).spriteFrame = this.open; +// this.music.x = 278; +// } +// else{ +// this.music.getComponent(cc.Sprite).spriteFrame = this.close; +// this.music.x = 161; +// } +// if(cc.fx.GameConfig.GM_INFO.effectOpen){ +// this.effect.getComponent(cc.Sprite).spriteFrame = this.open; +// this.effect.x = 278; +// } +// else{ +// this.effect.getComponent(cc.Sprite).spriteFrame = this.close; +// this.effect.x = 161; +// } +// if(cc.fx.GameConfig.GM_INFO.vibrateOpen){ +// this.vibrate.getComponent(cc.Sprite).spriteFrame = this.open; +// this.vibrate.x = 278; +// } +// else{ +// this.vibrate.getComponent(cc.Sprite).spriteFrame = this.close; +// this.vibrate.x = 161; +// } +// this.musicState = cc.fx.GameConfig.GM_INFO.musicOpen; +// this.effectState = cc.fx.GameConfig.GM_INFO.effectOpen; +// this.vibrateState = cc.fx.GameConfig.GM_INFO.vibrateOpen; +// } + +// start () { +// } + +// init(time){ + +// } + +// clickMusic(){ +// if(this.musicState){ +// this.musicState = false; +// cc.fx.GameConfig.GM_INFO.musicOpen = this.musicState; +// this.setMusicConfig(); +// this.music.runAction(cc.sequence(cc.spawn(cc.moveTo(0.05, cc.v2(161,this.music.y)), cc.fadeOut(0.05)),cc.callFunc(()=>{ +// this.music.getComponent(cc.Sprite).spriteFrame = this.close; +// }),cc.fadeIn(0.1))) +// cc.fx.AudioManager._instance.stopMusic(); +// } +// else{ +// this.musicState = true; +// cc.fx.GameConfig.GM_INFO.musicOpen = this.musicState; +// this.setMusicConfig(); +// this.music.runAction(cc.sequence(cc.spawn(cc.moveTo(0.05, cc.v2(278,this.music.y)), cc.fadeOut(0.05)),cc.callFunc(()=>{ +// this.music.getComponent(cc.Sprite).spriteFrame = this.open; +// }),cc.fadeIn(0.1))) +// cc.fx.AudioManager._instance.playMusicGame(); +// } +// } + +// setMusicConfig(){ +// let audioInfo = { +// "musicOpen": cc.fx.GameConfig.GM_INFO.musicOpen, //音乐 +// "effectOpen": cc.fx.GameConfig.GM_INFO.effectOpen, //音效 +// "vibrateOpen": cc.fx.GameConfig.GM_INFO.vibrateOpen, //震动 +// } +// cc.fx.StorageMessage.setStorage("music",audioInfo); +// } + +// clickEffect(){ +// if(this.effectState){ +// this.effectState = false; +// cc.fx.GameConfig.GM_INFO.effectOpen = this.effectState; +// this.setMusicConfig(); +// this.effect.runAction(cc.sequence(cc.spawn(cc.moveTo(0.05, cc.v2(161,this.effect.y)), cc.fadeOut(0.05)),cc.callFunc(()=>{ +// this.effect.getComponent(cc.Sprite).spriteFrame = this.close; +// }),cc.fadeIn(0.1))) +// } +// else{ +// this.effectState = true; +// cc.fx.GameConfig.GM_INFO.effectOpen = this.effectState; +// this.setMusicConfig(); +// this.effect.runAction(cc.sequence(cc.spawn(cc.moveTo(0.05, cc.v2(278,this.effect.y)), cc.fadeOut(0.05)),cc.callFunc(()=>{ +// this.effect.getComponent(cc.Sprite).spriteFrame = this.open; +// }),cc.fadeIn(0.1))) +// } +// } + +// clickVibrate(){ +// if(this.vibrateState){ +// this.vibrateState = false; +// cc.fx.GameConfig.GM_INFO.vibrateOpen = this.vibrateState; +// this.setMusicConfig(); +// this.vibrate.runAction(cc.sequence(cc.spawn(cc.moveTo(0.05, cc.v2(161,this.vibrate.y)), cc.fadeOut(0.05)),cc.callFunc(()=>{ +// this.vibrate.getComponent(cc.Sprite).spriteFrame = this.close; +// }),cc.fadeIn(0.1))) +// } +// else{ +// this.vibrateState = true; +// cc.fx.GameConfig.GM_INFO.vibrateOpen = this.vibrateState; +// this.setMusicConfig(); +// this.vibrate.runAction(cc.sequence(cc.spawn(cc.moveTo(0.05, cc.v2(278,this.vibrate.y)), cc.fadeOut(0.05)),cc.callFunc(()=>{ +// this.vibrate.getComponent(cc.Sprite).spriteFrame = this.open; +// }),cc.fadeIn(0.1))) +// } +// } + +// // update (dt) {} +// } diff --git a/assets/Script/Pause.ts.meta b/assets/Script/Pause.ts.meta new file mode 100644 index 0000000..17de151 --- /dev/null +++ b/assets/Script/Pause.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "aca4abad-df73-42bc-80b4-ca0dc9998d21", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Reduce.ts b/assets/Script/Reduce.ts new file mode 100644 index 0000000..93f1765 --- /dev/null +++ b/assets/Script/Reduce.ts @@ -0,0 +1,34 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +const {ccclass, property} = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + + @property({type: [cc.SpriteFrame], tooltip:"方块颜色图片"}) + Block_Color : Array = []; + + + @property(cc.Label) + level: cc.Label = null; + + // LIFE-CYCLE CALLBACKS: + + onLoad () { + + } + start () { + + } + + + + + + // update (dt) {} +} diff --git a/assets/Script/Reduce.ts.meta b/assets/Script/Reduce.ts.meta new file mode 100644 index 0000000..9e719b6 --- /dev/null +++ b/assets/Script/Reduce.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "ca599214-e611-4461-8af3-a0de7d60ea53", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Revive.ts b/assets/Script/Revive.ts new file mode 100644 index 0000000..a572593 --- /dev/null +++ b/assets/Script/Revive.ts @@ -0,0 +1,404 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html + +import JiaZai from "./JiaZai"; +import MapConroler from "./Map"; +import Utils from "./module/Pay/Utils"; +import NumberToImage from "./NumberToImage"; +import SceneManager from "./SceneManager"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class Revive extends cc.Component { + + @property(cc.Node) + + + btn_Touch: boolean = false; + + // LIFE-CYCLE CALLBACKS: + private onShowListener: () => void; + private iosPrice: number = 0; + private iosProductId: string = ""; + private iosCount: number = 1; + public home: number = 0; + onLoad() { + this.btn_Touch = true; + // 检测微信小游戏切到后台 + } + + onShow() { + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + console.log("从后台进入前台订单号:", cc.fx.GameConfig.GM_INFO.iosReviveOrder); + if (cc.fx.GameConfig.GM_INFO.iosReviveOrder != null && cc.fx.GameConfig.GM_INFO.iosReviveOrder != "") { + console.log("有苹果订单号,开始轮训"); + const iosReviveOrder = cc.fx.GameConfig.GM_INFO.iosReviveOrder; + this.openLoad(); + this.btn_Touch = true; + Utils.getIosPayInfo(iosReviveOrder, + (data) => { + console.log("获得轮训结果:", data); + const iosID = data.data?.payment_name || this.iosProductId; + let iosAmount = data.data?.goodsPrice || this.iosPrice; + iosAmount = parseInt(iosAmount); + if (data.code == 1) { + console.log("购买成功"); + let name = "购买金币道具:" + iosID; + console.log("引力付费透传", iosAmount, iosReviveOrder, name); + MiniGameSdk.API.yinli_Pay(iosAmount, iosReviveOrder, name) + this.closeLoad(); + this.btn_Touch = true; + console.log("_________正式发货"); + MiniGameSdk.API.showToast("充值成功"); + cc.fx.GameTool.shopBuy(iosID, false); + this.revivew() + if (iosID == "reborn_Gift") { + this.buyGift(); + } + cc.fx.GameConfig.GM_INFO.iosReviveOrder = null; + //console.log("充值成功获得金币"); + if (this.node.parent.parent.parent.parent.parent.getComponent("SceneManager")) { + this.node.parent.parent.parent.parent.parent.getComponent("SceneManager").updateCoin(); + } + } + else if (data.code == 0) { + console.log("用户自己取消充值"); + MiniGameSdk.API.showToast("充值失败"); + this.closeLoad(); + this.btn_Touch = true; + const dataFail = { + outTradeNo: iosReviveOrder, + pay_amount: iosAmount, + payment_name: iosID, + payment_num: this.iosCount, + type: "ios", + fail_reason: "用户取消充值", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + cc.fx.GameConfig.GM_INFO.iosReviveOrder = null; + } + else if (data.code == 2) { + this.closeLoad(); + this.btn_Touch = true; + console.log("轮训超时"); + MiniGameSdk.API.showToast("请检查网络,如充值成功,请重新登录领取", 4); + const dataFail = { + outTradeNo: iosReviveOrder, + pay_amount: iosAmount, + payment_name: iosID, + payment_num: this.iosCount, + type: "ios", + fail_reason: "用户充值后,轮训结果超时", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.openConfirmBox(); + } + this.btn_Touch = true; + }) + } + } + + } + + start() { + if (cc.fx.GameConfig.GM_INFO.revive == 1) { + this.node.active = false; + } + } + init() { + this.addListener(); + this.btn_Touch = true; + if (cc.fx.GameConfig.GM_INFO.revive == 1) { + this.node.active = false; + } + } + + addListener() { + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + // 定义监听函数 + this.onShowListener = () => { + this.onShow(); + }; + //@ts-ignore + wx.onShow(this.onShowListener); + } + } + + //购买 + buyGift() { + Utils.rebornGift(1, (data) => { + console.log("购买'✅ ", data.code); + if (data.code == 1) { + } + }) + // update (dt) {} + } + //发奖励 + revivew() { + cc.fx.GameConfig.GM_INFO.revive = 1; + MapConroler._instance.setPropNum(); + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + setTimeout(() => { + jiazaiComp.updateCoin(); + }, 300); + } else { + console.log("无法获取JiaZai组件"); + } + let shop = cc.find("Canvas/shop"); + if (shop) { + let shopComp = shop.getComponent("shop"); + if (shopComp) { + shopComp.openShop(); + } + } + setTimeout(() => { + this.node.active = false; + }, 200); + MapConroler._instance.runRewiveCopy(); + } + buyProduct(customData) { + // cc.fx.GameTool.shopBuy("revive", false); + // MapConroler._instance.setPropNum(); + if (!this.btn_Touch) { + return; + } + this.btn_Touch = false; + const productId = "reborn_Gift"; + let id = "10011"; + let price = 100; + let count = 1; + id = productId; + switch (productId) { + case "reborn_Gift": + price = 600; + break; + } + console.log("获得商品id:", id, count, price); + // 判断设备系统 + let systemType = "Android"; + try { + //@ts-ignore + const systemInfo = wx.getSystemInfoSync(); + if (systemInfo.platform === 'ios') { + systemType = "ios"; + } + } catch (e) { + console.error('获取系统信息失败', e); + } + + // Utils.GoKEFu(); + if (systemType == "ios") { + // MiniGameSdk.API.showToast("IOS系统暂不支持支付"); + // this.btn_Touch = true; + this.openLoad(); + this.btn_Touch = true; + let iosPayInfo = { + price: price, + payment_name: productId, + payment_count: 1, + } + this.iosPrice = price; + this.iosProductId = productId; + this.iosCount = 1; + Utils.GoKEFu(iosPayInfo, (res) => { + if (res == "success") { + console.log("客服回话成功"); + } + else { + console.log("客服回话失败"); + this.closeLoad(); + } + }); + } + else { + // MiniGameSdk.API.showToast("充值成功"); + // cc.fx.GameTool.shopBuy(productId, false); + // setTimeout(() => { + // if (productId == "unlimited_health_bundle_1" || + // productId == "unlimited_health_bundle_2" || + // productId == "unlimited_health_bundle_3" + // ) { + // console.log("触发————————updatePower"); + // this.updatePower(); + // } + // }, 500); + + this.openLoad(); + this.btn_Touch = true; + console.log("7.14_____________________", "调用充值接口"); + Utils.buyProp(id, count, price, systemType, productId, (res) => { + console.log("获得充值结果", res); + if (res == null) { + MiniGameSdk.API.showToast("充值失败"); + this.btn_Touch = true; + const dataFail = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "网络异常,没有拉起支付", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.closeLoad(); + return; + } + else if (res.err) { + MiniGameSdk.API.showToast("充值失败"); + //console.log(res); + this.btn_Touch = true; + let name = "支付拉起失败"; + if (res.errCode == -2) { + name = "用户取消充值"; + } + const dataFail = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: name, + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.closeLoad(); + return; + } + else { + Utils.getPayInfo((data) => { + console.log("7.14_______________充值成功,准备轮训"); + console.log("获得轮训结果:", data); + this.closeLoad(); + if (data.data.pay_state == 1) { + this.btn_Touch = true; + MiniGameSdk.API.showToast("取消充值"); + const dataFail2 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "用户取消支付", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail2); + } + else if (data.data.pay_state == 2) { + this.btn_Touch = true; + // const dataSuccess = { + // outTradeNo: Utils.outTradeNo, + // pay_amount: price, + // payment_name: productId, + // payment_num: 1, + // type: systemType, + // } + // cc.fx.GameTool.shushu_Track("payment", dataSuccess); + let name = "购买金币道具:" + productId; + console.log("引力付费透传", price, Utils.outTradeNo, name); + MiniGameSdk.API.yinli_Pay(price, Utils.outTradeNo, name) + console.log("7.14_______________充值成功,轮训成功,准备发货"); + Utils.setPayInfo( + (res) => { + console.log("设置轮训结果:", res); + if (res.code === 1) { + console.log("7.14_________正式发货"); + MiniGameSdk.API.showToast("充值成功"); + cc.fx.GameTool.shopBuy(productId, false); + this.revivew(); + if (productId == "reborn_Gift") { + this.buyGift(); + } + //console.log("充值成功获得金币"); + } + else { + MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放"); + const dataFail4 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "成功付款,但是发货时请求服务器失败,充值成功未发货", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail4); + } + + if (this.node.parent.parent.parent.parent.parent.getComponent("SceneManager")) { + this.node.parent.parent.parent.parent.parent.getComponent("SceneManager").updateCoin(); + } + }, Utils.outTradeNo) + } + else { + + const dataFail3 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "拉起支付后,付款时网络异常付款失败", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail3); + this.btn_Touch = true; + if (this.node.parent.parent.parent.parent.parent.getComponent("SceneManager")) { + this.node.parent.parent.parent.parent.parent.getComponent("SceneManager").updateCoin(); + } + } + }) + } + }); + } + } + openLoad() { + this.node.parent.parent.parent.parent.parent.getChildByName("Loading").active = true; + this.node.parent.parent.parent.parent.parent.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.parent.parent.parent.parent.parent.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + } + + closeLoad() { + this.node.parent.parent.parent.parent.parent.getChildByName("Loading").active = false; + } + + + offShow() { + if (cc.fx.GameConfig.GM_INFO.revive == 0) { + return; + } + + // 移除 wx.onShow 监听器 + if (cc.sys.platform === cc.sys.WECHAT_GAME && this.onShowListener) { + console.log("复活移除监听"); + //@ts-ignore + wx.offShow(this.onShowListener); + console.log("🔥🔥🔥🔥🔥🔥🔥🔥"); + } + + } + + openConfirmBox() { + let ConfirmBox = this.node.parent.getChildByName("ConfirmBox"); + ConfirmBox.active = true; + this.closeLoad(); + } + + closeConfirmBox() { + let ConfirmBox = this.node.parent.getChildByName("ConfirmBox"); + ConfirmBox.active = false; + } + + //再次领取奖励 + againGet() { + this.closeConfirmBox(); + this.onShow(); + } + + + onDestroy() { + } +} diff --git a/assets/Script/Revive.ts.meta b/assets/Script/Revive.ts.meta new file mode 100644 index 0000000..53a2527 --- /dev/null +++ b/assets/Script/Revive.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "cf2259fd-d55a-47c1-9f75-fef608a12261", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Reward.ts b/assets/Script/Reward.ts new file mode 100644 index 0000000..b856dc5 --- /dev/null +++ b/assets/Script/Reward.ts @@ -0,0 +1,193 @@ +import NumberToImage from "./NumberToImage"; + + +const { ccclass, property, requireComponent } = cc._decorator; + +@ccclass +export default class Reward extends cc.Component { + + + @property(cc.Prefab) + rewardNode: cc.Prefab = null; + actionOver: boolean; + speedTime: number = 50; + private originalTimeScale: number = 1; // 记录原始时间缩放比例 + callBack: Function; + + + onLoad() { + // 为节点添加点击事件监听器 + this.speedTime = 50; + } + + start() { + // ... 已有代码 ... + this.node.on(cc.Node.EventType.TOUCH_END, this.onNodeClick, this); + + } + + /** + * 节点点击事件处理函数 + */ + onNodeClick() { + // console.log('Reward 节点被点击了', this.actionOver); + // 这里可以添加点击后的具体逻辑 + if (this.actionOver == true) { + if (this.callBack != null) { + this.callBack(); + } + this.node.destroy(); + } + else { + // 游戏整体加速 + // this.speedUpGame(); + } + } + + + speedUpGame() { + this.speedTime = 0; + this.originalTimeScale = cc.director.getScheduler().getTimeScale(); // 记录原始时间缩放比例 + cc.director.getScheduler().setTimeScale(10); // 加速到 2 倍速 + // 在奖励节点创建完成后恢复正常速度 + const checkCompletion = () => { + if (this.actionOver) { + cc.director.getScheduler().setTimeScale(this.originalTimeScale); // 恢复原始时间缩放比例 + } else { + setTimeout(checkCompletion, 50); // 每隔 100 毫秒检查一次 + } + }; + checkCompletion(); + } + + /** + * 初始化 + * @param data 数据 + */ + init(data, callBack?: Function) { + this.actionOver = false; + if (callBack) this.callBack = callBack; + else this.callBack = null; + if (!data) { + this.actionOver = true; + this.node.destroy(); + return; + } + const num = Math.min(data.length, 9); // 确保 num 不超过 9 + const spacing = 10; // 间隔,默认 10 + if (this.rewardNode && num > 0) { + // 获取单个 rewardNode 的宽度和高度 + const tempNode = cc.instantiate(this.rewardNode); + const nodeWidth = tempNode.width; + const nodeHeight = tempNode.height; + tempNode.destroy(); + + // 定义每一行的节点数量 + const rowCounts: number[] = []; + if (num <= 3) { + rowCounts.push(num); + } else if (num === 4) { + rowCounts.push(2, 2); + } else if (num === 5) { + rowCounts.push(3, 2); + } else if (num === 6) { + rowCounts.push(3, 3); + } else if (num === 7) { + rowCounts.push(3, 3, 1); + } else if (num === 8) { + rowCounts.push(3, 3, 2); + } else if (num === 9) { + rowCounts.push(3, 3, 3); + } + + // 计算总高度 + const rows = rowCounts.length; + const totalHeight = (nodeHeight * rows) + (spacing * (rows - 1)); + + // 计算起始位置的 y 坐标 + const startY = totalHeight / 2 - nodeHeight / 2; + + let index = 0; + const createNodeWithDelay = (row: number, col: number) => { + setTimeout(() => { + const rewardNode = cc.instantiate(this.rewardNode); + if (this.node) rewardNode.parent = this.node; + // 计算当前行的总宽度 + // let startX = 0; + // if (row === 0) { + // const totalWidth = (nodeWidth * rowCounts[row]) + (spacing * (rowCounts[row] - 1)); + // startX = -totalWidth / 2 + nodeWidth / 2; + // } else { + // startX = -((nodeWidth * 3) + (spacing * 2)) / 2 + nodeWidth / 2; + // } + // 修复:统一使用当前行的节点数量计算起始位置 + const totalWidth = (nodeWidth * rowCounts[row]) + (spacing * (rowCounts[row] - 1)); + const startX = -totalWidth / 2 + nodeWidth / 2; + + // 计算每个节点的 x 和 y 位置 + const xPos = startX + (col * (nodeWidth + spacing)); + const yPos = startY - (row * (nodeHeight + spacing)); + rewardNode.setPosition(xPos, yPos); + // 查找 rewardNode 的子节点 icon + const iconNode = rewardNode.getChildByName('icon'); + iconNode.getChildByName(data[index].type).active = true; + let label = rewardNode.getChildByName('label') + if (data[index].type == 'coin') + NumberToImage.numberToImageNodes(data[index].count, 45, 5, "coins", label, true); + else if (data[index].type == 'infinite_health') { + NumberToImage.getTimeMargin2(data[index].count, 45, "coins", label, true); + if (data[index].count > 3600) label.x -= 10; + rewardNode.getChildByName('xnode').opacity = 1; + } + else { + NumberToImage.numberToImageNodes(data[index].count, 50, 15, "coins", label, true); + rewardNode.getChildByName('xnode').opacity = 0; + label.x += 20; + } + rewardNode.getChildByName('label').active = false; + if (iconNode) { + cc.tween(iconNode) + .to(0.2, { scale: 1.1 }) + .to(0.1, { scale: 0.9 }) + .to(0.05, { scale: 1 }) + .delay(0.1) + .call(() => { + rewardNode.getChildByName('label').active = true; + if (rewardNode.getChildByName('xnode').opacity == 1) { + rewardNode.getChildByName('xnode').opacity = 0; + let name = "icon1"; + if (rewardNode.getChildByName('label').children.length > 4) name = "icon2"; + iconNode.getChildByName('infinite_health').getChildByName(name).active = true; + } + else if (rewardNode.getChildByName('xnode').opacity != 255) { + rewardNode.getChildByName('xnode').active = true; + rewardNode.getChildByName('xnode').opacity = 255; + } + }) + .start(); + } + + index++; + if (index == data.length) { + setTimeout(() => { + this.actionOver = true; + }, 500); + + } + if (index < data.length) { + const nextCol = col + 1; + if (nextCol < rowCounts[row]) { + createNodeWithDelay(row, nextCol); + } else { + createNodeWithDelay(row + 1, 0); + } + } + }, index * this.speedTime); // 每个节点间隔 0.1 秒 + }; + createNodeWithDelay(0, 0); + } + } + + + +} diff --git a/assets/Script/Reward.ts.meta b/assets/Script/Reward.ts.meta new file mode 100644 index 0000000..85cac15 --- /dev/null +++ b/assets/Script/Reward.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "f30d38a9-33b7-4fe8-9b9b-4ed6fd2f6c99", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/SceneManager.ts b/assets/Script/SceneManager.ts new file mode 100644 index 0000000..cb4da39 --- /dev/null +++ b/assets/Script/SceneManager.ts @@ -0,0 +1,502 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "./Map"; +import NumberToImage from "./NumberToImage"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class SceneManager extends cc.Component { + + + // 缓存 shop 预制体 + private static cachedShopPrefab: cc.Prefab | null = null; + // 缓存 shop 节点 + private shopNode: cc.Node | null = null; + + // 缓存 reward 预制体 + private static cachedRewardPrefab: cc.Prefab | null = null; + // 缓存 reward 奖励窗口 节点 + private RewardNode: cc.Node | null = null; + //缓存月卡 + private static cachedMonthlyCardPrefab: cc.Prefab | null = null; + // 缓存月卡节点 + private monthlyCardNode: cc.Node | null = null; + + @property(cc.Label) + label: cc.Label = null; + + @property + text: string = 'hello'; + + @property(cc.Node) + freeze: cc.Node = null; + + @property(cc.Node) + hammer: cc.Node = null; + + @property(cc.Node) + magic_wand: cc.Node = null; + + @property(cc.Node) + pause: cc.Node = null; + + @property(cc.Node) + level: cc.Node = null; + //time 弹窗的金币数 + @property(cc.Node) + timeCoin: cc.Node = null; + + //赢了win金币数 + @property(cc.Node) + winCoin: cc.Node = null; + + @property({ type: [cc.Prefab], tooltip: "方块数组" }) + Block_Array: Array = []; + + @property({ type: [cc.Prefab], tooltip: "墙壁数组" }) + Wall_Prefab: Array = []; + + particleEffects: cc.ParticleAsset[]; + // @property({type: [cc.ParticleSystem], tooltip:"粒子数组"}) + // particleEffects : Array = []; + + load1: boolean = false; + load2: boolean = false; + load3: boolean = false; + btnName: string = ''; + callBack: any; + share_time: boolean = true; + + + // LIFE-CYCLE CALLBACKS: + + onLoad() { + cc.game.setFrameRate(63); + this.changeBg(); + // 预加载 shop 预制体 + if (!SceneManager.cachedShopPrefab) { + cc.assetManager.loadBundle('shop', (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + cc.error(err.message || err); + return; + } + bundle.load('prefab/shop', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + SceneManager.cachedShopPrefab = prefab; + }); + bundle.load('prefab/RewardWindow', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + SceneManager.cachedRewardPrefab = prefab; + }); + bundle.load('prefab/monthlyCard', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + SceneManager.cachedMonthlyCardPrefab = prefab; + }); + }); + } + setTimeout(() => { + cc.director.preloadScene("HomeScene", (err) => { + if (err) { + // console.error('预加载 HomeScene 场景失败:', err); + return; + } + // console.log('成功预加载 HomeScene 场景'); + }); + }, 1000); + + } + //更新关卡获得金币 + updateWinCoin() { + console.log("更新关卡获得金币"); + let winCoin = 40; + winCoin = winCoin * cc.fx.GameConfig.GM_INFO.doubleCoin; + if (winCoin > 0) { + NumberToImage.numberToImageNodes(winCoin, 50, 8, "time_", this.winCoin, false); + } else { + this.winCoin.active = false; + } + } + + changeBg() { + let number = Math.floor(Math.random() * 8) + 1; + const path = 'bg/bg' + number; + cc.resources.load(path, cc.SpriteFrame, (err, spriteFrame: cc.SpriteFrame) => { + if (err) { + console.error('动态加载背景图失败:', err); + return; + } + this.node.getChildByName("Game").getChildByName("bg").getComponent(cc.Sprite).spriteFrame = spriteFrame; + }) + let levelName = (cc.fx.GameConfig.GM_INFO.level + 1); + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + levelName = cc.fx.GameConfig.GM_INFO.otherLevel; + } + NumberToImage.numberToImageNodes(levelName, 43, 15, "level_", this.level, true); + //time金币数量 + NumberToImage.numberToImageNodes(1000, 25, 15, "button_", this.timeCoin, false); + } + + loadParticleEffects() { + const path = 'Particle'; + cc.resources.loadDir(path, cc.ParticleAsset, (err, assets: cc.ParticleAsset[]) => { + if (err) { + console.error('动态加载粒子特效失败:', err); + return; + } + + this.particleEffects = assets; + this.setParticleSort(); + this.load3 = true; + //console.log('粒子特效加载成功,共加载了', this.particleEffects.length, '个粒子特效'); + }); + } + + setWallPrefabSort() { + const order = ['down', 'downLeft', 'downRight', 'left', 'right', 'up', 'upLeft', 'upRight']; + this.Wall_Prefab.sort((a, b) => { + const indexA = order.indexOf(a.name); + const indexB = order.indexOf(b.name); + if (indexA === -1) return 1; + if (indexB === -1) return -1; + return indexA - indexB; + }); + + } + + setParticleSort() { + const order = ['top', 'bot', 'rig', 'lef']; + this.particleEffects.sort((a, b) => { + // console.log(a.name.substr(0,3),b.name.substr(0,3)); + const indexA = order.indexOf(a.name.substr(0, 3)); + const indexB = order.indexOf(b.name.substr(0, 3)); + if (indexA === -1) return 1; + if (indexB === -1) return -1; + return indexA - indexB; + }); + } + + setSort() { + this.Block_Array.sort((a, b) => { + // 从名称中提取数字部分 + const numberA = parseInt(a.name.match(/\d+/)?.[0] || '0', 10); + const numberB = parseInt(b.name.match(/\d+/)?.[0] || '0', 10); + return numberA - numberB; + }); + } + + start() { + this.share_time = true; + } + + startGame() { + cc.director.loadScene("HomeScene", (err) => { + if (err) { + console.error('加载 HomeScene 场景失败:', err); + } else { + // console.log('成功切换到 HomeScene 场景'); + cc.director.loadScene("HomeScene"); + } + }); + + } + + returnHome() { + if (this.node.getChildByName("Pause").getChildByName("btn").getComponent("btnControl")._touch) { + this.closePause(); + if (MapConroler._instance.gameStart == true) { + // MiniGameSdk.API.showToast("体力值减少"); + if (MapConroler._instance.count_Time) { + let overTime = Date.now(); + let count_Time = overTime - MapConroler._instance.count_Time; + let add_Time = MapConroler._instance.add_Time; + let data = { + time: count_Time, + add_Time: add_Time, + is_frenzy: MapConroler._instance.is_frenzy, + result: "give_up" + } + cc.fx.GameTool.shushu_Track("finish_stage", data); + let data2 = { + is_frenzy: MapConroler._instance.is_frenzy, + count: cc.fx.GameConfig.GM_INFO.winStreak + } + cc.fx.GameTool.shushu_Track("hammer_frenzy", data2); + + } + } + this.node.getChildByName("Pause").getChildByName("btn").getComponent("btnControl").setTouch(false); + cc.fx.AudioManager._instance.playEffect("zhuan1", null); + this.node.getChildByName("zhuanchang").active = true; + this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); + cc.director.preloadScene("HomeScene", (err, asset) => { + if (err) { + console.error('动态加载 Prefab 失败:', err); + return; + } + + }); + + setTimeout(() => { + cc.director.loadScene("HomeScene"); + }, 1200); + } + } + + + destroyNodesInFrames(nodes: cc.Node[], callback: () => void) { + const BATCH_SIZE = 10; // 每帧销毁的节点数量 + let index = 0; + + const destroyBatch = () => { + let count = 0; + while (index < nodes.length && count < BATCH_SIZE) { + const node = nodes[index]; + if (node) { + + node.active = false; + } + index++; + count++; + } + + if (index < nodes.length) { + this.scheduleOnce(destroyBatch, 6); + } else { + callback(); + } + }; + + destroyBatch(); + } + + // 改进后的切换场景方法 + switchToEmptyScene() { + const allNodes = cc.director.getScene().children; + this.destroyNodesInFrames(allNodes, () => { + cc.director.loadScene("HomeScene"); + }); + } + + openPause() { + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + if (this.pause.getComponent("btnControl")._touch) { + this.pause.getComponent("btnControl").setTouch(false); + this.node.getChildByName("Pause").active = true; + + let pauseNode = this.node.getChildByName("Pause").getChildByName("pause"); + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + + + MapConroler._instance.pause = true; + MapConroler._instance.stopBoom(); + } + } + + closeShop() { + if (this.shopNode) { + this.shopNode.active = false; + var pause = MapConroler._instance.iceTrue(); + if (pause == false) { + MapConroler._instance.pause = false; + if (MapConroler._instance.gameStart == true) MapConroler._instance.startBoom(); + } + } + } + + closePause() { + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + this.pause.getComponent("btnControl").setTouch(true); + this.node.getChildByName("Pause").active = false; + var pause = MapConroler._instance.iceTrue(); + if (pause == false) { + MapConroler._instance.pause = false; + if (MapConroler._instance.gameStart == true) MapConroler._instance.startBoom(); + } + } + + openPropBuy(name) { + MapConroler._instance.pause = true; + MapConroler._instance.stopBoom(); + + this.btnName = name; + cc.fx.AudioManager._instance.playEffect("tanchuang", null); + let propWindow = this.node.getChildByName("Game").getChildByName("propWindow"); + propWindow.active = true; + propWindow = propWindow.getChildByName("prop"); + cc.fx.AudioManager._instance.playEffect("tanchuang", null); + let pauseNode = propWindow; + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + propWindow.getChildByName("freeze").active = false; + propWindow.getChildByName("hammer").active = false; + propWindow.getChildByName("magic").active = false; + propWindow.getChildByName("buy_Btn").getComponent("btnControl").setTouch(true); + propWindow.getChildByName(name).active = true; + // if(name == "hammer"){ + // propWindow.getChildByName("buy_Btn").getChildByName("hammer").active = true; + // propWindow.getChildByName("buy_Btn").getChildByName("nomal").active = false; + // } + // else{ + // propWindow.getChildByName("buy_Btn").getChildByName("hammer").active = false; + // propWindow.getChildByName("buy_Btn").getChildByName("nomal").active = true; + // } + } + + + clickBtn() { + cc.fx.AudioManager._instance.playEffect("anniu_Big", null); + let propWindow = this.node.getChildByName("Game").getChildByName("propWindow").getChildByName("prop"); + if (propWindow.getChildByName("buy_Btn").getComponent("btnControl")._touch) { + propWindow.getChildByName("buy_Btn").getComponent("btnControl").setTouch(false); + if (this.btnName == "freeze") + MapConroler._instance.buyFreeze(); + else if (this.btnName == "hammer") + MapConroler._instance.buyHammer(); + else if (this.btnName == "magic") + MapConroler._instance.buyMagic(); + } + } + + resetBtn() { + let propWindow = this.node.getChildByName("Game").getChildByName("propWindow").getChildByName("prop"); + propWindow.getChildByName("buy_Btn").getComponent("btnControl").setTouch(true); + } + + + //打开商店 + openShop() { + console.log("进入sceneManager openShop"); + if (!SceneManager.cachedShopPrefab) { + cc.error('Shop prefab is not loaded yet.'); + return; + } + MapConroler._instance.pause = true; + MapConroler._instance.stopBoom(); + if (!this.shopNode) { + // 第一次使用,创建节点 + this.shopNode = cc.instantiate(SceneManager.cachedShopPrefab); + this.node.addChild(this.shopNode); + this.shopNode.getComponent("shop").init(); + } else { + // 非第一次使用,直接激活节点 + this.shopNode.active = true; + this.shopNode.getComponent("shop").init(); + } + // console.log("shopNode parent:", this.shopNode.parent); + } + //打开月卡 + openMonthlyCard() { + if (!SceneManager.cachedMonthlyCardPrefab) { + cc.error('MonthlyCard prefab is not loaded yet.'); + return; + } + if (!this.monthlyCardNode) { + // 第一次使用,创建节点 + this.monthlyCardNode = cc.instantiate(SceneManager.cachedMonthlyCardPrefab); + this.node.addChild(this.monthlyCardNode); + this.monthlyCardNode.getComponent("monthlyCard").init(); + this.monthlyCardNode.getComponent("monthlyCard").juwai = false; + } else { + // 非第一次使用,直接激活节点 + this.monthlyCardNode.active = true; + this.monthlyCardNode.getComponent("monthlyCard").init(); + this.monthlyCardNode.getComponent("monthlyCard").juwai = false; + } + } + + updateCoin() { + MapConroler._instance.updateCoin(); + } + + + closePropBuy(type) { + if (type == true) { + + } + else { + var pause = MapConroler._instance.iceTrue(); + if (pause == false) { + MapConroler._instance.pause = false; + if (MapConroler._instance.gameStart == true) MapConroler._instance.startBoom(); + } + } + + let freezeBtn = MapConroler._instance.node.parent.getChildByName("Bottom").getChildByName("timeBtn"); + let hammerBtn = MapConroler._instance.node.parent.getChildByName("Bottom").getChildByName("destroyBtn"); + let magicBtn = MapConroler._instance.node.parent.getChildByName("Bottom").getChildByName("magicBtn"); + if (this.btnName == "freeze") freezeBtn.getComponent("btnControl").setTouch(true); + else if (this.btnName == "hammer") hammerBtn.getComponent("btnControl").setTouch(true); + else if (this.btnName == "magic") magicBtn.getComponent("btnControl").setTouch(true); + + this.node.getChildByName("Game").getChildByName("propWindow").active = false; + } + + openRewardWindow(data, callBack) { + console.log("_____________________打开奖励弹窗", data); + if (!SceneManager.cachedRewardPrefab) { + cc.error('Reward prefab is not loaded yet.'); + return; + } + if (!this.RewardNode) { + // 第一次使用,创建节点 + this.RewardNode = cc.instantiate(SceneManager.cachedRewardPrefab); + this.node.addChild(this.RewardNode); + this.RewardNode.zIndex = 99; + this.RewardNode.getComponent("Reward").init(data, callBack); + } + else { + this.RewardNode.destroy(); + this.RewardNode = null; + this.RewardNode = cc.instantiate(SceneManager.cachedRewardPrefab); + this.node.addChild(this.RewardNode); + this.RewardNode.zIndex = 99; + this.RewardNode.getComponent("Reward").init(data, callBack); + } + this.RewardNode.zIndex = 1001; + } + + shareFriend() { + if (this.share_time) { + this.share_time = false; + console.log("设置分享链接"); + let timeStamp = Date.now(); + let otherInfo = { + timeStamp: timeStamp, + otherLevel: (cc.fx.GameConfig.GM_INFO.level + 1), + } + cc.fx.StorageMessage.setStorage("otherLevel", otherInfo); + MiniGameSdk.API.shareGame(); + setTimeout(() => { + this.share_time = true; + }, 5000); + } + + } + + update(dt) { + + } +} diff --git a/assets/Script/SceneManager.ts.meta b/assets/Script/SceneManager.ts.meta new file mode 100644 index 0000000..5a1371d --- /dev/null +++ b/assets/Script/SceneManager.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "809984f5-0183-4d45-9751-c6c56f5d1eb9", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Sdk.meta b/assets/Script/Sdk.meta new file mode 100644 index 0000000..cd4dfdc --- /dev/null +++ b/assets/Script/Sdk.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "93c9bdf3-8205-46e5-a8f1-3576b0dbc836", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Sdk/DouyinEntranceView.ts b/assets/Script/Sdk/DouyinEntranceView.ts new file mode 100644 index 0000000..0a5a334 --- /dev/null +++ b/assets/Script/Sdk/DouyinEntranceView.ts @@ -0,0 +1,29 @@ +import { MiniGameSdk } from "./MiniGameSdk"; +const { ccclass, property } = cc._decorator; + + +@ccclass +export class DouyinEntranceView extends cc.Component { + start() { + + } + + update(deltaTime: number) { + + } + + onCloseClick() { + this.node.active = false; + } + + onNavigateToDouyinClick() { + + MiniGameSdk.BytedanceSidebar.navigateToSidebar((success: boolean) => { // 跳转到抖音侧边栏 + if (success) { + console.log('跳转成功'); + } else { + console.log('跳转失败'); + } + }); + } +} diff --git a/assets/Script/Sdk/DouyinEntranceView.ts.meta b/assets/Script/Sdk/DouyinEntranceView.ts.meta new file mode 100644 index 0000000..43bb3f1 --- /dev/null +++ b/assets/Script/Sdk/DouyinEntranceView.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "8a024faa-e4af-4cae-9c5c-693bee7120c1", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Sdk/MiniGameManager.ts b/assets/Script/Sdk/MiniGameManager.ts new file mode 100644 index 0000000..0d2f987 --- /dev/null +++ b/assets/Script/Sdk/MiniGameManager.ts @@ -0,0 +1,338 @@ + +import { MiniGameSdk } from "./MiniGameSdk"; +const { ccclass, property } = cc._decorator; +enum EWechatAD { + CUMSTOM_01 = 'adunit-f7c2417eb2c2e473' +} + +@ccclass +export class MiniGameManager extends cc.Component { + + @property(cc.Node) + entranceView: cc.Node = null; + /** + * 开始游戏前的初始化操作。 + * 主要负责检查并处理游戏入口按钮的激活状态,以及在特定环境下设置侧边栏的监听器。 + * + * @remarks + * 此方法首先将游戏入口视图设为非激活状态,以准备进行后续的检查和设置。 + * 如果当前环境是抖音小游戏,会检查是否存在侧边栏,并根据检查结果激活或禁用游戏入口按钮。 + * 对于非抖音小游戏环境,直接激活游戏入口按钮。 + * 此外,无论环境如何,都会设置一个监听器,以处理来自侧边栏的事件,如成功触发时显示奖励提示。 + */ + private _id: any; + private _userData: any; + + private static _instance: MiniGameManager; + static get instance(): MiniGameManager { + if (!MiniGameManager._instance) { + MiniGameManager._instance = new MiniGameManager(); + } + return MiniGameManager._instance; + } + + start() { + // 禁用游戏入口视图 + // this.entranceView.active = false; + this.onGetLoginCode(); + // 尝试获取游戏入口按钮,如果存在则直接返回,不进行后续操作 + // let buttonEntrance = this.node.getChildByName('Btns')?.getChildByName('Button_EntranceView'); + // if (buttonEntrance) { + // return; + // } + + // 如果是字节跳动小游戏环境,检查侧边栏是否存在 + + if (MiniGameSdk.isBytedance()) { + //抖音环境,检测侧边栏存在 + MiniGameSdk.BytedanceSidebar.checkSideBar((success: boolean) => { + // 根据侧边栏存在性激活或禁用游戏入口按钮 + // buttonEntrance.active = success; + }); + } else { + // 非抖音小游戏环境,直接激活游戏入口按钮 + // 非抖音环境,正常显示按钮 + // buttonEntrance.active = true; + } + + // 设置监听器,以处理来自侧边栏的交互事件 + MiniGameSdk.BytedanceSidebar.listenFromSidebar((success: boolean) => { + // 如果交互成功,显示奖励提示 + if (success) { + MiniGameSdk.API.showToast('侧边栏奖励', 5); + } + }); + } + + update(deltaTime: number) { + + } + + /** + * 弹出广告横幅。 + * 此方法用于加载并显示广告横幅。它首先加载指定广告位的横幅广告,然后显示广告。 + * 加载广告和显示广告是通过MiniGameSdk.AdvertManager的实例方法来实现的。 + * + * @remarks + * 此方法提供了两种显示横幅广告的方式: + * 1. 默认方式:调用showBanner方法显示广告,系统会自动选择显示位置。 + * 2. 指定位置方式:可以通过传入额外的参数来指定广告显示在屏幕的顶部或底部,或者通过坐标指定显示位置。 + * + * 示例代码中注释掉了两种显示广告的具体方法,可以根据实际需求选择使用。 + */ + onShowBanner() { + // 加载指定广告位的横幅广告。 + MiniGameSdk.AdvertManager.instance.loadBanner('adunit-4e7ef467e3eaab51'); + + // 默认方式显示横幅广告。 + // 方法1:默认调用 + MiniGameSdk.AdvertManager.instance.showBanner(); + + // 示例:指定屏幕底部正中显示横幅广告。 + // 方法2:指定屏幕顶部或底部正中 + // MiniGameSdk.AdvertManager.instance.showBanner('adunit-4e7ef467e3eaab51', MiniGameSdk.EAdBannerLocation.BOTTOM); + + // 示例:通过坐标指定位置显示横幅广告。 + // 方法2:指定坐标 + // MiniGameSdk.AdvertManager.instance.showBanner('adunit-4e7ef467e3eaab51', { top: 10, left: 10 }); + } + + /** + * 隐藏广告横幅的函数。 + * + * 该函数调用MiniGameSdk.AdvertManager实例的方法,用于隐藏广告横幅。 + * 当需要暂时停止展示广告或用户主动请求隐藏广告时,可以调用此函数。 + * + * @remarks + * 此函数不接受任何参数,也不返回任何值。 + * 它单纯地触发广告横幅的隐藏操作,具体实现依赖于AdvertManager的实现。 + */ + onHideBanner() { + MiniGameSdk.AdvertManager.instance.hideBanner(); + } + + /** + * 显示插屏广告的函数。 + * + * 此函数调用MiniGameSdk.AdvertManager实例的方法,以显示一个指定的插屏广告。 + * 它使用了硬编码的广告单元标识符,这意味着它专为特定的广告位设计。 + * 在实际应用中,可能需要根据应用的配置或用户的特定条件来动态选择广告单元标识符。 + */ + onShowInterstitial() { + MiniGameSdk.AdvertManager.instance.showInterstitial('adunit-eadd67851d3050ad'); + } + + /** + * 调用广告管理器加载并展示自定义广告。 + * 此方法首先通过广告管理器的实例加载指定的自定义广告单元,然后展示这个自定义广告。 + * 加载和展示广告是广告管理系统中的常见操作,这里通过两步分别完成加载和展示的过程, + * 以确保广告在展示前正确且充分地被加载。 + */ + onShowCustom() { + // 加载指定的自定义广告单元。 + MiniGameSdk.AdvertManager.instance.loadCustom(EWechatAD.CUMSTOM_01); + // 展示已加载的自定义广告。 + MiniGameSdk.AdvertManager.instance.showCustom(EWechatAD.CUMSTOM_01); + } + + /** + * 隐藏自定义广告。 + * + * 本函数调用MiniGameSdk.AdvertManager.instance.hideCustom()来隐藏自定义广告。 + * 这是对接广告管理系统的一部分,用于控制广告的显示与隐藏。 + * 在需要隐藏自定义广告的场景下,调用此函数即可实现相应功能。 + */ + onHideCustom() { + MiniGameSdk.AdvertManager.instance.hideCustom(EWechatAD.CUMSTOM_01); + } + + /** + * 触发显示视频广告的函数。 + * 通过调用MiniGameSdk.AdvertManager.instance.showVideo方法,显示一个视频广告,并根据用户观看广告的情况执行相应的逻辑。 + * + * @remarks + * 此函数首先传入一个广告单元ID,用于标识要显示的视频广告。然后传入一个回调函数,该回调函数在用户观看广告后被调用,无论用户是完成了观看、拒绝了观看还是观看过程中发生了错误。 + * 回调函数接收两个参数:一个是用户观看广告的结果,另一个是用户观看的广告数量。根据观看结果的不同,显示不同的提示信息。 + */ + onShowVideo() { + // 广告单元ID,用于标识要显示的视频广告 + // 广告单元ID的样例 + //抖音形如: 1re3nfqkmy81m4m8ge + //微信形如: adunit-a7718f6e195e42fe + MiniGameSdk.AdvertManager.instance.showVideo('1re3nfqkmy81m4m8ge', (res: MiniGameSdk.EAdVideoResult, count: number) => { + // 输出用户观看的广告数量 + console.log('用户看的视频广告个数是:', count); + + // 根据用户观看广告的结果,执行不同的逻辑 + switch (res) { + case MiniGameSdk.EAdVideoResult.ACCEPT: + // 用户完成了广告观看,显示奖励提示 + MiniGameSdk.API.showToast('用户看完广告,可以奖励'); + break; + case MiniGameSdk.EAdVideoResult.REJECT: + // 用户拒绝了广告观看,显示不奖励提示 + MiniGameSdk.API.showToast('用户拒绝掉广告,不奖励'); + break; + case MiniGameSdk.EAdVideoResult.ERROR: + // 广告播放发生错误,显示错误提示 + MiniGameSdk.API.showToast('播放广告发生错误,不奖励'); + break; + default: + // 其他情况,不作处理 + break; + } + }); + } + + /** + * 引导用户分享应用给朋友。 + * + * 通过调用MiniGameSdk的API分享功能,向用户的朋友圈发送邀请,邀请他们一起玩游戏。 + * 这是一个重要的推广手段,可以增加应用的曝光度和用户量。 + * + * @remarks + * 此方法中调用的API依赖于特定的小游戏平台,因此在不同的平台上可能需要不同的实现。 + */ + onShare() { + MiniGameSdk.API.shareAppToFriends('来玩游戏吧'); + } + + /** + * 显示一个toast提示。 + * + * 通过调用MiniGameSdk的API方法来显示一个简短的提示信息。toast是一种轻量级的提示方式,用于在界面上短暂地展示一些信息,不影响用户操作。 + * 这里使用了固定的提示文本 '这是一个toast',在实际应用中,可以根据需要动态设置提示文本。 + */ + onShowToast() { + MiniGameSdk.API.showToast('这是一个toast'); + } + + /** + * 触发设备振动功能。 + * + * 该方法用于调用MiniGameSdk提供的API,以实现设备的振动功能。当需要提醒用户或提供触觉反馈时,可以调用此方法。 + * 例如,在游戏或应用中,当用户完成特定操作或发生特定事件时,可以通过振动给予用户反馈。 + * + * @remarks + * 此方法无参数,也不返回任何值。 + */ + onVirbrate() { + MiniGameSdk.API.vibrate(); + } + + /** + * 重新启动游戏实例。 + * + * 此函数调用MiniGameSdk中的API重新启动游戏。重新启动操作可能是为了初始化游戏环境、重置游戏状态或处理其他需要重启的场景。 + * 调用此函数后,游戏将会重新开始,当前的游戏状态将会被清除。 + * + * @remarks + * 此函数不接受任何参数。 + * + * @returns 无返回值。 + */ + onReboot() { + MiniGameSdk.API.reboot(); + } + + /** + * 当前函数用于在迷你游戏中实现退出功能。 + * 它调用了MiniGameSdk提供的API方法来触发退出操作。 + * 该方法通常在需要结束当前迷你游戏或返回到上一级菜单时被调用。 + */ + onExit() { + MiniGameSdk.API.exit(); + } + + /** + * 显示分享菜单。 + * + * 通过调用MiniGameSdk的API方法,触发显示分享菜单的操作。此函数旨在提供一个统一的入口, + * 以便在需要时轻松调用分享功能,而无需直接与具体的SDK接口交互。 + * + * @remarks + * 此方法不接受任何参数,也不返回任何值。 + */ + onShowShareMenu() { + MiniGameSdk.API.showShareMenu(); + } + + /** + * 导航到指定的小游戏。 + * + * 本函数用于触发导航到一个特定的小游戏。这需要提供目标小游戏的ID, + * 以便系统能够正确地将用户重定向到目标小游戏。 + * + * 注意:这里的'xxx'是占位符,实际使用时需要替换为具体的小游戏ID。 + */ + onNavigate() { + MiniGameSdk.API.navigateTo('xxx'); // xxx替换为你的小游戏id + } + + /** + * 激活字节跳动入口视图。 + * + * 此方法用于将字节跳动入口视图设置为活跃状态。当需要在用户界面中显示字节跳动的入口时, + * 可以调用此方法来激活相应的视图元素,使其对用户可见。 + */ + onBytedanceEntranceView() { + // this.entranceView.active = true; + } + + /** + * 请求登录代码 + * + * 本函数用于触发小程序的登录流程,获取微信或头条等第三方平台的登录代码。 + * 这些代码可以用于后续的用户身份验证和数据同步流程。 + */ + onGetLoginCode() { + // 调用MiniGameSdk的API登录方法,传入一个回调函数处理登录结果 + MiniGameSdk.API.login((code: string, anonymousCode: string) => { + // 打印微信或头条的登录代码 + console.log('Wechat Or Bytedance Code:', code); + // 打印头条的匿名登录代码 + // console.log('Bytedance Anonymous Code:', anonymousCode); + if (code) { + // cc.fx.GameTool.getUserId(code, data => this.setUserId(data)); + } + }); + } + + // setUserId(data){ + // cc.fx.GameConfig.GM_INFO.userId = data.data.userId; + // MiniGameSdk.API.getUserInfo(this.setUserInfo); + // } + + // setUserInfo(data){ + // console.log("获取到的用户信息",data.userInfo); + // var useData = { + // "gameId": cc.fx.GameConfig.GM_INFO.gameId, + // "userId": cc.fx.GameConfig.GM_INFO.userId, + // "nickName":data.userInfo.nickName, + // "pic": data.userInfo.avatarUrl + + // } + // console.log("即将上传的用户信息:",cc.fx.GameConfig.GM_INFO.userId,data.userInfo.nickName,data.userInfo.avatarUrl); + // console.log("Post数据:",useData); + // cc.fx.GameTool.setUserInfo(useData,(res)=>{ + // console.log("上传成功:",res); + // }); + // } + + /** + * 创建并显示游戏圈按钮 + * + * 本函数通过调用MiniGameSdk的GameClub实例方法,实现游戏俱乐部的创建和显示。 + * 它首先配置俱乐部的图标类型和位置大小,然后创建俱乐部,最后显示俱乐部。 + * 这样做是为了在小游戏内创建并展示一个游戏俱乐部的图标,供玩家加入或互动。 + */ + onCreateClub() { + // 配置俱乐部图标为绿色,设置图标的位置为顶部200像素,左侧0像素 + MiniGameSdk.GameClub.instance.create( + MiniGameSdk.EGameClubIcon.GREEN, + { top: 200, left: 0 }, + { width: 50, height: 50 }); + // 显示游戏俱乐部图标 + MiniGameSdk.GameClub.instance.show(); + } +} diff --git a/assets/Script/Sdk/MiniGameManager.ts.meta b/assets/Script/Sdk/MiniGameManager.ts.meta new file mode 100644 index 0000000..84df67f --- /dev/null +++ b/assets/Script/Sdk/MiniGameManager.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "0d272a57-5428-450e-a8b9-1574c3d89951", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Sdk/MiniGameSdk.ts b/assets/Script/Sdk/MiniGameSdk.ts new file mode 100644 index 0000000..41f7d20 --- /dev/null +++ b/assets/Script/Sdk/MiniGameSdk.ts @@ -0,0 +1,1539 @@ +/** + * 小游戏平台SDK工具封装,目前只支持微信和抖音平台 + */ +export namespace MiniGameSdk { + + interface ISize { + width: number; + height: number; + } + + export interface IPosition { + top: number; + left: number; + } + + export function isWechat(): boolean { + //@ts-ignore + return window.wx !== null && window.wx !== undefined; + } + + export function isBytedance(): boolean { + //@ts-ignore + return window.tt !== null && window.tt !== undefined; + } + + + function getSysWinSize(): ISize { + let sys: any; + if (isWechat()) { + // @ts-ignore + sys = wx.getSystemInfoSync(); + } else if (isBytedance()) { + // @ts-ignore + sys = tt.getSystemInfoSync(); + } + + let size: ISize = { width: 0, height: 0 }; + if (sys) { + size.width = sys.windowWidth; + size.height = sys.windowHeight; + } + + return size; + } + + /** + * 插屏广告。微信抖音都支持! + */ + class ADInterstitial { + private _adUid: string; + private _interstitial: any; + + get aduid() { + return this._adUid; + } + + constructor(adUid: string) { + this._adUid = adUid; + } + + show() { + // @ts-ignore + if (isWechat() && !wx.createInterstitialAd) { + console.warn('wechat unsupport interstitial AD!'); + this._interstitial = null; + return; + } + + // @ts-ignore + if (isBytedance() && !tt.createInterstitialAd) { + console.warn('bytedance unsupport interstitial AD!'); + this._interstitial = null; + return; + } + + + if (this._interstitial) { + this._interstitial.load(); + } else { + if (isWechat()) { + // @ts-ignore + this._interstitial = wx.createInterstitialAd({ adUnitId: this._adUid }); + } else if (isBytedance()) { + // @ts-ignore + this._interstitial = tt.createInterstitialAd({ adUnitId: this._adUid }); + } else { + this._interstitial = null; + } + + this._interstitial?.onLoad(() => { + console.log('load interstitial ad success'); + this._interstitial.show().catch((err: any) => { + console.log('catch interstitial ad error:', err); + }); + }); + + this._interstitial?.onError((err: any) => { + console.log('interstitial ad on error:', err); + }); + } + } + destory() { + this._interstitial?.destroy(); + } + } + + class ADBanner { + private _adUid: string; + private _banner: any; + + get aduid() { + return this._adUid; + } + + /** + * 抖音和微信都支持 + * 横幅广告。预估宽度默认为300,预估高度为140。如果你不确定就按默认值来。 + * @param adUid 广告UID,后端配置 + * @param isTop 是否在屏幕顶部展示。内部会自动居中计算位置。 + * @param bannerWidth 横幅广告的预估宽度。默认300 + * @param autoShow 广告加载完成后是否立刻显示,默认为不显示 + */ + constructor(adUid: string, param: boolean | IPosition, bannerWidth: number = 300, autoShow: boolean = false) { + this._adUid = adUid; + this.create(autoShow, bannerWidth, param); // 默认300比较合适 + } + + private create(autoShow: boolean, bannerWidth: number, param: boolean | IPosition) { + if (!isWechat() && !isBytedance()) { + this._banner = null; + return; + } + + this.destroy(); + + let winSize = getSysWinSize(); + + let height = bannerWidth * 0.4; + let top = 0, left = 0; + + if (typeof param === "boolean") { + left = (winSize.width - bannerWidth) / 2 + top = param ? 5 : (winSize.height - height); + } else { + left = param.left; + top = param.top; + } + + let params = { + adUnitId: this._adUid, + adIntervals: 30,// 自动刷新频率不能小于30秒 + style: { left: left, top: top, width: bannerWidth } + } + + if (isWechat()) { + // @ts-ignore + this._banner = wx.createBannerAd(params); + } else if (isBytedance()) { + // @ts-ignore + this._banner = tt.createBannerAd(params); + } else { + this._banner = null; + } + + this._banner?.onError((err: any) => { + console.log('ad banner error:', err); + }); + + this._banner?.onLoad(() => { + autoShow && this._banner.show(); + }); + } + + show() { + this._banner?.show(); + } + + hide() { + this._banner?.hide(); + } + + destroy() { + this._banner?.destroy(); + } + } + + class ADCustom { + private _adUid: string; + private _adCustom: any; + + get aduid() { + return this._adUid; + } + /** + * 由于原生模板广告在微信服务后端可以定制宽度大小,个数,缩放比例等,所以位置调整要根据设置的宽度来定。抖音不支持! + * @param adUid 广告UID,后端配置 + * @param top 从左上角开始,距离屏幕顶部的距离。注意:这个数据为设备屏幕宽度width。如果需要获取屏幕的像素,需要乘以设备像素比Pixel-Ratio,例如iPhone 13 Pro的Pixel-Ratio为3,像素为Width*3。 + * @param left 从左上角开始,距离屏幕最左边的距离。注意:这个数据为设备屏幕宽度width。如果需要获取屏幕的像素,需要乘以设备像素比Pixel-Ratio,例如iPhone 13 Pro的Pixel-Ratio为3,像素为Width*3。 + * @param scale 原生模板广告的尺寸,默认为1,即100%。此值在微信服务后端广告中获得,默认为100%,目前有100%,90%,80%三种,一般情况不用修改。若有修改,记得传入值,例如90%就传入0.9。 + */ + constructor(adUid: string, top: number = 0, left: number = 0, scale: number = 1.0) { + this._adUid = adUid; + this.createCustomAd(top, left, scale); + } + + private createCustomAd(top: number, left: number, scale: number) { + if (!isWechat()) { // only wechat support custom ad + this._adCustom = null; + console.log('Only wechat support Custom Ad'); + return; + } + + this.destroy(); + // 原生模板5个应用宽度为375,若设置了缩放比例,则宽度也需要设置 + // let width = 375 * this._scale; + // let newLeft = (sys.windowWidth - width) / 2; + // let newTop = sys.windowHeight / 2; // 120是预估高度 + + // @ts-ignore + this._adCustom = wx.createCustomAd({ + adUnitId: this._adUid, + //@ts-ignore + style: { left: left, top: top, fixed: true } + }); + + this._adCustom?.onError((err: any) => { + console.log('ad custom error:', err); + }); + } + show() { + this._adCustom?.show(); + } + + hide() { + this._adCustom?.hide(); + } + + destroy() { + this._adCustom?.destroy(); + } + } + + + /** + * 视频广告用户点击行为结果 + */ + export enum EAdVideoResult { + /** + * 用户看完了广告,游戏可发放奖励。 + */ + ACCEPT, + + /** + * 用户中途关闭了广告,即未看完状态。不可发放奖励。 + */ + REJECT, + + /** + * 广告组件内部发生了错误。不可发放奖励。 + */ + ERROR, + } + + class ADVideo { + private _adUid: string; + private _adVideo: any = null; + + get aduid() { + return this._adUid; + } + + constructor(adUid: string) { + this._adUid = adUid; + } + + /** + * 由于微信和抖音视频广告机制不同,微信可以看的视频广告个数只有0和1个,抖音平台则可以看0~maxVideoCount + * @param onResult 两个参数:第一个res是EAdVideoResult定义,第二count是用户看了多少个视频广告。 + * @param target onResult的拥有者 + * @param maxVideoCount 可以连续看最大视频个数,可最大化商业效率。默认为3个。 + * @returns + */ + show(onResult: (res: EAdVideoResult, count: number) => void, target?: any, maxVideoCount: number = 3): void { + let callback = (state: EAdVideoResult, count: number) => { + onResult?.call(target, state, count); + } + + if (!isWechat() && !isBytedance()) { + callback(EAdVideoResult.ACCEPT, 1); + this._adVideo = null; + return; + } + + let onAdVideoClosed = (res: any) => { + this._adVideo?.offClose(onAdVideoClosed); + if (isWechat()) { + if (res && res.isEnded || res === undefined) { + callback(EAdVideoResult.ACCEPT, 1); + } else { + callback(EAdVideoResult.REJECT, 0); + } + } else if (isBytedance()) { + let resConverted = res as { isEnded: boolean, count: number }; + if (resConverted && resConverted.count > 0) { + callback(EAdVideoResult.ACCEPT, resConverted.count); + } else { + callback(EAdVideoResult.REJECT, 0); + } + } + } + + this._adVideo?.offClose(onAdVideoClosed); + + if (isWechat()) { + // @ts-ignore + this._adVideo = wx.createRewardedVideoAd({ + adUnitId: this._adUid + }); + } else if (isBytedance()) { + // @ts-ignore + this._adVideo = tt.createRewardedVideoAd({ + adUnitId: this._adUid, + multiton: true, + multitonRewardMsg: ['多1次奖励', '再多一次奖励', '再多一次奖励'], + multitonRewardTimes: maxVideoCount, + }); + } else { + this._adVideo = null; + } + + + this._adVideo?.onLoad(() => { + console.log('Ad load success'); + }); + + this._adVideo?.onError((err: { errMsg: string, errCode: number }) => { + console.log('Ad video error:', err); + callback(EAdVideoResult.ERROR, 0); + }); + + this._adVideo?.onClose(onAdVideoClosed); + + this._adVideo?.show().catch(() => { + this._adVideo?.load().then(() => + this._adVideo?.show()).catch((err: { errMsg: string, errCode: number }) => { + console.log('Catch video ad error:', err); + callback(EAdVideoResult.ERROR, 0); + }); + }); + } + + destory() { + this._adVideo?.destory(); + } + } + + export enum EAdBannerLocation { + /** + * 屏幕顶部 + */ + TOP, + + /** + * 屏幕底部 + */ + BOTTOM, + } + + export class AdvertManager { + + private static _instance: AdvertManager; + + static get instance(): AdvertManager { + if (!AdvertManager._instance) { + AdvertManager._instance = new AdvertManager(); + } + return AdvertManager._instance; + } + + private _video: ADVideo; + private _interstitial: ADInterstitial; + private _banner: ADBanner; + private _customs: Record = {}; + + private constructor() { + + } + + /** + * 预加载横幅广告,不会显示。只有你在调用showBanner时才会显示。 + * 可重复调用,但是会销毁上一次的实例。一般情况,全局有一个就行了,太多占用内存,而且没必要。 + * @param adUid 广告UID + * @param location 位置有两种情况:1、可以传入枚举值,默认上方; 2、可以自定义位置传入IPosition,注意IPosition中的top和left跟平台的top,left是一致(没有乘以设备像素比ratio),需要开发者自己调试位置 + * @param scale 默认为跟屏幕一样的宽度,可以通过设置缩放比例来调整大小。当然,平台有规定最大或最小宽度,函数内部会自动计算。 + */ + public loadBanner(adUid: string, location: EAdBannerLocation | IPosition = EAdBannerLocation.TOP, scale: number = 1.0) { + this._banner?.destroy(); + let size: ISize = getSysWinSize(); + // 当 style.width 小于 300 时,会取作 300。 当 style.width 大于屏幕宽度时,会取作屏幕宽度。 + let width = size.width * scale; + width = width < 300 ? 300 : width; // 最小值矫正 + width = width > size.width ? size.width : width; //最大值矫正 + this._banner = typeof location === 'number' ? new ADBanner(adUid, location === EAdBannerLocation.TOP, width, false) : new ADBanner(adUid, location, width, false); + } + + /** + * 显示横幅广告 + */ + public showBanner() { + if (this._banner) { + this._banner.show(); + } else { + console.warn('MiniGameSDK: banner is null, you must call loadBanner(...) first!'); + } + } + + /** + * 隐藏横幅广告 + */ + public hideBanner() { + this._banner?.hide(); + } + + /** + * 弹出插屏广告 + * @param adUid 广告单元id + */ + public showInterstitial(adUid: string) { + if (this._interstitial && this._interstitial.aduid === adUid) { + this._interstitial.show(); + } else { + this._interstitial?.destory(); + this._interstitial = new ADInterstitial(adUid); + this._interstitial.show(); + } + } + + /** + * 加载原生模板广告,不会显示。只有你在调用showCustom时才会显示。 + * 由于原生模板广告在微信服务后端可以定制宽度大小,个数,缩放比例等,所以位置调整要根据设置的宽度来定。抖音不支持本函数,会调用无效! + * @param adUid 广告ID + * @param location 位置有两种情况:1、可以传入枚举值,默认上方; 2、可以自定义位置传入IPosition,注意IPosition中的top和left跟平台的top,left是一致(没有乘以设备像素比ratio),需要开发者自己调试位置 + * @param scale 缩放比例,默认是1,即不缩放。这个缩放并不是自己填,而是根据微信MP后台你配置的原生模板广告的缩放比例填,目前有100%,90%,80%三种,一般情况不用修改。若有后台修改,记得传入值,例如90%就传入0.9。 + */ + public loadCustom(adUid: string, location: IPosition = { top: 0, left: 0 }, scale: number = 1) { + // this._custom?.destroy(); + // this._custom = new ADCustom(adUid, location.top, location.left, scale); + if (this._customs[adUid]) { + console.log(`${adUid} has been loaded.`); + return; + } + + this._customs[adUid] = new ADCustom(adUid, location.top, location.left, scale); + } + + /** + * 显示自定义广告。 + * @param adUid 广告的唯一标识符。使用此标识符来查找和显示特定的自定义广告。 + * + * 此方法尝试根据提供的adUid显示一个自定义广告。如果给定的adUid对应的自定义广告已加载, + * 则调用该广告的显示方法。如果广告未加载,则在控制台输出警告信息。 + */ + public showCustom(adUid: string) { + if (this._customs[adUid]) { + this._customs[adUid].show(); + } else { + console.warn(`You have not load ${adUid} of Custom AD, can not show!`); + } + } + + /** + * 隐藏指定的自定义广告单元 + * + * 此方法用于隐藏通过广告单元标识符(adUid)指定的自定义广告。如果指定的广告单元已加载并显示, + * 则将其隐藏;如果广告单元未加载,则在控制台输出警告信息。 + * + * @param adUid 广告单元标识符,用于唯一标识一个自定义广告单元。 + */ + public hideCustom(adUid: string) { + if (this._customs[adUid]) { + this._customs[adUid].hide(); + } else { + console.warn(`You have not load ${adUid} of Custom AD, can not hide!`); + } + } + + /** + * 由于微信和抖音视频广告机制不同,微信可以看的视频广告个数只有0和1个,抖音平台则可以看0~maxVideoCount + * @param adUid 广告ID。如果与上一次UID不同,则内部会重新创建实例。开发者完全不用关心这个细节。 + * @param onVideoResult 两个参数:第一个res是EAdVideoResult定义,第二count是用户看了多少个视频广告。 + * @param target onVideoResult的拥有者 + * @param maxVideoCount 最大视频个数。默认是3,仅对抖音平台生效。微信平台看完视频count的结果永远是1或0 + */ + public showVideo(adUid: string, onVideoResult: (res: EAdVideoResult, count: number) => void, target?: any, maxVideoCount: number = 3) { + if (this._video && this._video.aduid === adUid) { + this._video.show(onVideoResult, target, maxVideoCount); + } else { + this._video?.destory(); + this._video = new ADVideo(adUid); + this._video.show(onVideoResult, target, maxVideoCount); + } + } + + /** + * 销毁内部所有实例,清空内存 + */ + public destroyAll() { + this._banner?.destroy(); + this._banner = null; + + this._interstitial?.destory(); + this._interstitial = null; + + this._video?.destory(); + this._video = null; + + if (this._customs) { + for (let val in this._customs) { + this._customs[val]?.destroy(); + } + this._customs = {}; + } + } + } + + export enum EGameClubIcon { + /** 绿色图标 */ + GREEN = 'green', + + /** 红色图标 */ + WHITE = 'white', + + /** 有黑色圆角背景的白色图标 */ + DARK = 'dark', + + /** 有白色圆角背景的绿色图标 */ + LIGHT = 'light' + } + + export class GameClub { + private static _instance: GameClub; + + static get instance(): GameClub { + if (!this._instance) { + this._instance = new GameClub(); + } + return this._instance; + } + + private _club: any; + + private constructor() { + + } + + /** + * 创建游戏圈按钮 + * @param icon + * @param position + * @param size + * @param openLink + */ + create(icon: EGameClubIcon = EGameClubIcon.GREEN, position: IPosition = { top: 0, left: 0 }, size: ISize = { width: 40, height: 40 }, openLink?: string) { + if (isWechat()) { + // @ts-ignore + this._club = wx.createGameClubButton({ + icon: icon, + style: { + left: position.left, + top: position.top, + width: size.width, + height: size.height + }, + openlink: openLink + }); + } + } + + show() { + this._club?.show(); + } + + hide() { + this._club?.hide(); + } + + destory() { + this._club?.destroy(); + } + } + + + /** + * 振动类型 + */ + export enum EVirbrateType { + /** + * 短振动 + */ + SHORT, + + /** + * 长振动 + */ + LONG + } + + + + /** + * 抖音侧边栏专属接口 + */ + export class BytedanceSidebar { + /** + * 本游戏在抖音环境下启动监控,需要放在全局环境中,保证能第一时间启动。因为可能监听抖音失败(抖音小游戏官方的说明)! + * @param onResult 包含一个boolean参数的函数 + * @param target 上述函数的拥有者,如果是类的成员函数,需要传入this。普通或匿名函数忽略即可。 + */ + static listenFromSidebar(onResult: (success: boolean) => void, target?: any) { + if (!isBytedance()) { + onResult?.call(target, false); + return; + } + // @ts-ignore + tt.onShow((res: any) => { + console.log('onShow launch res:', res); + if (res.scene === '021036') { + onResult?.call(target, true); + console.log('launch from sidebar'); + } else { + onResult?.call(target, false); + console.log('NOT launch from douyin sidebar!'); + } + }); + + // @ts-ignore + let options = tt.getLaunchOptionsSync(); + if (options && options.scene === '021036') { + onResult?.call(target, true); + } + } + + /** + * 检测抖音侧边栏是否存在 + * @param onResult 包含一个boolean参数的函数 + * @param target 上述函数的拥有者,如果是类的成员函数,需要传入this。普通或匿名函数忽略即可。 + * @returns + */ + static checkSideBar(onResult: (success: boolean) => void, target?: any) { + if (!isBytedance()) { + onResult?.call(target, false); + return; + } + + //@ts-ignore + tt.checkScene({ + scene: "sidebar", + success: (res: any) => { + console.log("check scene success: ", res.isExist); + onResult?.call(target, res.isExist); + + }, + fail: (res: any) => { + console.log("check scene fail:", res); + onResult?.call(target, false); + } + }); + } + + /** + * 跳转到抖音侧边栏 + * @param onResult 包含一个boolean参数的函数 + * @param target 上述函数的拥有者,如果是类的成员函数,需要传入this。普通或匿名函数忽略即可。 + * @returns + */ + static navigateToSidebar(onResult: (success: boolean) => void, target?: any) { + if (!isBytedance()) { + console.log("not douyin platform!"); + onResult?.call(target, false); + return; + } + + // @ts-ignore + tt.navigateToScene({ + scene: "sidebar", + success: () => { + console.log("navigate success"); + onResult?.call(target, true); + }, + fail: (res: any) => { + console.log("navigate failed reason:", res); + onResult?.call(target, false); + }, + }); + } + } + + /** + * 平台常用API合集 + */ + export class API { + private static _loginCode: string = null; + private static _loginAnonymousCode: string = null; + private static _hasInitWechatCloudFunction: boolean = false; + private static _userInfo: any = null; + private static _ta: any = null; + private static _ge: any = null; + /** + * 分享app给朋友,微信小游戏分享是没有onSuccess回调的。 + * @param title 标题 + * @param description 细节描述信息 + * @param imageUrl 图片地址 + * @param query 查询信息 + * @param onSuccess 抖音会回调,微信不会回调 + */ + static shareAppToFriends() { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { // 判断是否在微信环境 + wx.setPreferredFramesPerSecond(60); + // // 设置转发按钮点击后的回调 + + let iphoneArr = [ + "https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/0", + "https://mmocgame.qpic.cn/wechatgame/TWKuFxnCn7ksT3KXfhCC4yOfZeD4b0hrptDSJ2DFmwz02Yc8SppcwyPAOoS1MsMr/0", + "https://mmocgame.qpic.cn/wechatgame/dibaH2x79o1wSwBDymhyzXwfcyicaDb6R5icrFIO7251T4NgxIzXRXErHvAvn50vXFA/0", + "https://mmocgame.qpic.cn/wechatgame/Pgxad80d8ws3o69OicV3DTuTkcP81upQeJ0JBNS1xib3pzYLTF1ZqGY3niciaI7ICKlL/0", + "https://mmocgame.qpic.cn/wechatgame/SfB1vrRBIHKn9ffKFt5sib62yPLE31m2rCvk6DKlEicJNVZSoryEObD6ItwsQn4xibR/0", + "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0", + "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0" + ] + let randomIphone = iphoneArr[Math.floor(Math.random() * iphoneArr.length)]; + let img = randomIphone; + // const title = + // 构建分享参数 + const shareParams = { + title: '快来一起玩这个超有趣的小游戏吧!', // 修改为默认分享标题 + imageUrl: img // 修改为默认分享图片 + }; + // 仅设置分享内容,不主动触发分享 + wx.onShareAppMessage(() => shareParams); + + + // 监听分享到朋友圈事件 + //@ts-ignore + wx.onShareTimeline(() => { + return { + title: '你想玩上怎样的游戏?' + }; + }); + + wx.showShareMenu(() => { + return { + title: '你想玩上怎样的游戏?', + imageUrl: img, + query: '' + }; + }); + + setTimeout(() => { + wx.showShareMenu({ + menus: ['shareAppMessage', 'shareTimeline'] + }) + }, 2000); + + setTimeout(() => { + wx.showShareMenu({ + menus: ['shareAppMessage', 'shareTimeline'] + }) + }, 4000); + + // 设置分享到朋友圈 + //@ts-ignore + // wx.updateShareMenu({ + // withShareTicket: true, + // success: (data) => { + // console.log('更新分享菜单成功', data); + // }, + // fail: (data) => { + // console.log('更新分享菜单失败', data); + // }, + // complete: (data) => { + // console.log('更新分享菜单完成', data); + // } + // }); + //@ts-ignore + } + } + + /** + * 显示提示信息 + * @param title 标题 + * @param duration 时长(单位:秒) + * @returns + */ + static showToast(title: string, duration: number = 2) { + if (isWechat()) { + // @ts-ignore + wx.showToast({ + title: title, + icon: 'none', + duration: duration * 500 + }); + } + + } + + /** + * 设备震动效果,默认为短震动。注意:可能一些机型不会生效,具体看平台方的说明 + * @param type MiniGameSdk.API.EVirbrateType + */ + static vibrate(type: EVirbrateType = EVirbrateType.SHORT) { + if (isWechat()) { + switch (type) { + case EVirbrateType.SHORT: + //@ts-ignore + wx.vibrateShort({ + success(res: any) { + console.log('vibrate success:', res); + }, + fail(res: any) { + console.log('vibrateShort failed', res); + }, + }); + break; + case EVirbrateType.LONG: + //@ts-ignore + wx.vibrateLong({ + success(res: any) { + console.log('vibrate success', res); + }, + fail(res: any) { + console.log(`vibrateLong failed`, res); + }, + }); + break; + default: + break; + } + } + + if (isBytedance()) { + switch (type) { + case EVirbrateType.SHORT: + //@ts-ignore + tt.vibrateShort({ + success(res: any) { + console.log('vibrate success:', res); + }, + fail(res: any) { + console.log('vibrateShort failed', res); + }, + }); + break; + case EVirbrateType.LONG: + //@ts-ignore + tt.vibrateLong({ + success(res: any) { + console.log('vibrate success', res); + }, + fail(res: any) { + console.log(`vibrateLong failed`, res); + }, + }); + break; + default: + break; + } + } + } + + /** + * 重启小游戏 + */ + static reboot() { + if (isWechat()) { + //@ts-ignore + wx.restartMiniProgram({ + success: () => { + console.log('restart success'); + }, + + fail: () => { + console.log('restart failed'); + } + }) + } + + if (isBytedance()) { + try { + // @ts-ignore + tt.restartMiniProgramSync(); + } catch (error) { + console.log(`restartMiniProgramSync`, error); + } + } + } + + /** + * 退出小游戏 + */ + static exit() { + if (isWechat()) { + //@ts-ignore + wx.exitMiniProgram({ + success: () => { + console.log('exit success'); + }, + fail: () => { + console.log('exit failed'); + } + }); + } + + if (isBytedance()) { + // @ts-ignore + tt.exitMiniProgram({ + success(res: any) { + console.log("exit success:", res?.data); + }, + fail(res: any) { + console.log("exit fail:", res?.errMsg); + }, + }); + } + } + + /** + * 显示转发按钮。通常在刚进入游戏的时候调用。 + * 主要是打开平台“...”这个按钮里面的分享菜单,一般默认是关闭的,需要调用这个函数打开。可以让用户分享你的游戏入口。 + */ + static showShareMenu() { + if (isWechat()) { + //@ts-ignore + wx.showShareMenu({ + withShareTicket: true, + menus: ['shareAppMessage', 'shareTimeline'], + success: () => { }, + fail: () => { }, + complete: () => { } + }); + } + + } + + /** + * 微信小游戏:跳转到另外一款小游戏 + * 抖音小游戏:跳转到指定的视频界面 + * @param targetId 微信小游戏appid或者视频界面 + */ + static navigateTo(targetId: string, onSuccess?: () => void) { + if (isWechat()) { + // @ts-ignore + wx.navigateToMiniProgram({ + appId: targetId, + extraData: { + foo: 'bar' + }, + envVersion: 'develop', + success(res: any) { + onSuccess?.(); + } + }); + } + + if (isBytedance()) { + // @ts-ignore + tt.navigateToVideoView({ + videoId: targetId, + success: (res: any) => { + onSuccess?.(); + }, + fail: (err: any) => { + console.log("bytedance navigateToVideoView fail", err); + }, + }); + } + } + + + /** + * 小游戏平台登录功能。微信返回code,抖音返回code和anonymousCode。用于登录的凭证,需要把这个code传回你的服务器程序中去调用code2Session + * @param callback (code, anonymousCode) 第一个参数为code,微信和抖音都支持;第二个参数为匿名设备ID,仅抖音支持,失败都返回null + */ + static login(callback: (code: string, anonymousCode: string) => void) { + let loginPlatform = () => { + if (isWechat()) { + //@ts-ignore + wx.login({ + success: (res: { code: any; errMsg: any; }) => { + if (res.code) { + API._loginCode = res.code; + API._loginAnonymousCode = null; + callback?.(API._loginCode, API._loginAnonymousCode); + } else { + console.log('login error:', res.errMsg) + } + }, + + fail: () => { + API._loginCode = null; + API._loginAnonymousCode = null; + callback?.(API._loginCode, API._loginAnonymousCode); + console.log('login fail') + } + }); + } else if (isBytedance()) { + //@ts-ignore + tt.login({ + force: true, + success(res: any) { + console.log(`login ${res.code} ${res.anonymousCode}`); + if (res.code) { + API._loginCode = res.code?.toString(); + API._loginAnonymousCode = res.anonymousCode?.toString(); + callback?.(API._loginCode, API._loginAnonymousCode); + } else { + console.log('login error:', res.errMsg) + } + }, + fail(res: any) { + API._loginCode = null; + API._loginAnonymousCode = null; + callback?.(API._loginCode, API._loginAnonymousCode); + console.log(`login fail`, res); + }, + }); + } else { + API._loginCode = null; + API._loginAnonymousCode = null; + callback?.(API._loginCode, API._loginAnonymousCode); + console.log('not mini game platform, login codes are all null'); + } + } + + + + if (!API._loginCode) { + loginPlatform(); + } else { + if (isWechat()) { + //@ts-ignore + wx.checkSession({ + success() { + console.log(`session is valid, use current code:`, API._loginCode); + callback?.(API._loginCode, API._loginAnonymousCode); + }, + fail() { + console.log(`session expired`); + loginPlatform(); + } + }); + } else if (isBytedance()) { + //@ts-ignore + tt.checkSession({ + success() { + console.log(`session is valid, user current code: ${API._loginCode}, ${API._loginAnonymousCode}`); + callback?.(API._loginCode, API._loginAnonymousCode); + }, + fail() { + console.log(`session expired`); + loginPlatform(); + }, + }); + + } else { + console.log('not mini game platform, login null'); + callback?.(null, null); + } + } + } + + /** + * 小游戏平台登录功能。微信返回code,抖音返回code和anonymousCode。用于登录的凭证,需要把这个code传回你的服务器程序中去调用code2Session + * @param callback (code, anonymousCode) 第一个参数为code,微信和抖音都支持;第二个参数为匿名设备ID,仅抖音支持,失败都返回null + */ + static getUserInfo(callback: (userInfo: any) => void) { + //@ts-ignore + tt.getUserInfo({ + withCredentials: true, + success: (res: any) => { + API._userInfo = res; + callback(API._userInfo); + }, + fail: (err: any) => { + callback(err); + } + }); + } + + /** + * 存储用户信息,数据量不能大。可以考虑用于分数排行榜。用户之间可共享排行数据。 + * @param key + * @param value + */ + static setUserCloudStorage(key: string, value: string) { + if (isWechat()) { + // @ts-ignore + wx.setUserCloudStorage({ + KVDataList: [{ key: key, value: value }], + success: () => console.log(`set cloud storage success:${key}, value:${value}`), + fail: (err: any) => console.log('set cloud storage error:', err) + }); + } + + if (isBytedance()) { + // @ts-ignore + tt.setUserCloudStorage({ + KVDataList: [{ key: key, value: value, }], + success: () => console.log(`set cloud storage success:${key}, value:${value}`), + fail: (err: any) => console.log('set cloud storage error:', err) + }); + } + } + + /** 获取用户授权信息 */ + static getWechatUserInfo(callBack) { + if (isWechat()) { + //@ts-ignore + wx.getSetting({ + success: (res: { authSetting: { [key: string]: boolean } }) => { + if (res.authSetting['scope.WxFriendInteraction']) { + console.log('已经获得好友信息授权'); + cc.fx.GameConfig.GM_INFO.wxFriend = true; + } else { + console.log('没授权好友信息', res); + cc.fx.GameConfig.GM_INFO.wxFriend = false; + } + if (res.authSetting['scope.userInfo']) { + console.log('用户已授权头像昵称'); + cc.fx.GameConfig.GM_INFO.wxUserInfo = true; + } else { + console.log("用户未授权头像昵称"); + cc.fx.GameConfig.GM_INFO.wxUserInfo = false; + } + if (callBack) { + callBack(true); + } + }, + fail: (err: any) => { + if (callBack) { + callBack(false); + } + // console.error('获取用户授权状态失败', err); + } + }); + } + } + + /** 获取用户好友信息授权 */ + static getWechatFriend(callBack) { + if (isWechat()) { + //@ts-ignore + wx.authorize({ + scope: 'scope.WxFriendInteraction', + success: () => { + console.log('好友信息授权成功'); + cc.fx.GameConfig.GM_INFO.wxFriend = true; + if (callBack) { + callBack(true); + } + }, + fail: () => { + console.log('11111好友信息授权失败,引导用户手动开启'); + //@ts-ignore + wx.openSetting({ + success: (res) => { + // 用户在设置中开启权限后,重新显示排行榜 + if (res.authSetting['scope.WxFriendInteraction']) { + cc.fx.GameConfig.GM_INFO.wxFriend = true; + if (callBack) { + callBack(true); + } + } + }, + fail: (err: any) => { + if (callBack) { + callBack(false); + } + console.error('打开设置界面失败', err); + } + }); + } + }); + } + } + + + /** 获取用户头像昵称授权 */ + static getWechatUserInfoAuth(callBack: Function) { + if (isWechat()) { + //@ts-ignore + // 用户未授权,引导用户授权 + wx.getUserProfile({ + desc: '用于完善会员资料', // 声明获取用户个人信息后的用途 + success: (res) => { + console.log("拿到用户头像昵称"); + cc.fx.GameConfig.GM_INFO.wxUserInfo = true; + const userInfo = res.userInfo; + cc.fx.GameConfig.GM_INFO.useravatar = userInfo.avatarUrl; // 用户头像 URL + cc.fx.GameConfig.GM_INFO.username = userInfo.nickName; // 用户昵称 + const user_Info = { + username: cc.fx.GameConfig.GM_INFO.username, + useravatar: cc.fx.GameConfig.GM_INFO.useravatar, + } + // console.log('用户头像:', cc.fx.GameConfig.GM_INFO.useravatar); + // console.log('用户昵称:', cc.fx.GameConfig.GM_INFO.username); + // console.log('用户授权拿到', res.userInfo); + cc.fx.StorageMessage.setStorage('user_Info', user_Info); + cc.fx.GameTool.setUserInfo(false, (data) => { + console.log("设置用户信息成功__________", data); + }); + setTimeout(() => { + if (callBack) callBack(true); + }, 200); + }, + fail: (err) => { + if (callBack) callBack(false); + MiniGameSdk.API.showToast('请先授权获取头像昵称,用于排行榜展示'); + } + }); + } + } + + //#region 数数平台 + /* + * 数数平台初始化以及登录 + */ + + static shushu_Init() { + if (typeof wx !== 'undefined' && wx !== null) { + // console.log("开始接入数数平台"); + //getWechatGameVersion + let appId = "121591378fc1423893deb12041413eb3"; + let test = cc.fx.GameTool.getWechatGameVersion(); + if (test == "正式版") { + appId = "87d18958cea145f29d3265470ecd3486"; + } + const isProduction = test === '正式版'; // 假设使用 NODE_ENV 区分环境 + var config = { + appId: appId, + serverUrl: "https://data.nika4fun.com/sync_data", // 上报地址 + autoTrack: { + appShow: true, // 自动采集 ta_mg_show + appHide: true // 自动采集 ta_mg_hide + }, + // 根据环境变量设置 debug 模式 + debug: !isProduction, + enableLog: false + }; + // 创建 TA 实例 + API._ta = new ThinkingAnalyticsAPI(config); + // 初始化 + API._ta.init(); + + const distinctId = MiniGameSdk.API.getShushuDistinctId(); + if (distinctId) { + cc.fx.GameConfig.GM_INFO.shushu_DistinctId = distinctId; + console.log('用户的 distinct_id 是:', distinctId); + } else { + console.log('未获取到用户的 distinct_id'); + } + + const accountId = MiniGameSdk.API.getShushuAccountId(); + if (accountId) { + cc.fx.GameConfig.GM_INFO.shushu_AccountId = accountId; + // console.log('用户的 account_id 是:', accountId); + } else { + // console.log('未获取到用户的 account_id'); + } + } + } + + static shushu_Login() { + if (typeof wx !== 'undefined' && wx !== null) { + // console.log("数数登录时,获取到的openId:", cc.fx.GameConfig.GM_INFO.openid); + API._ta.login(cc.fx.GameConfig.GM_INFO.openid); + cc.fx.GameConfig.GM_INFO.shushu_AccountId = cc.fx.GameConfig.GM_INFO.openid; + const result = "success"; + API.shushu_Track("login", result); + API.shushu_SetSuperProperties(null, null); + } + } + + static shushu_userSet(time) { + if (typeof wx !== 'undefined' && wx !== null) { + // console.log("设置用户注册属性"); + API._ta.userSet({ register_time: time }); + API._ta.userSet({ uid: cc.fx.GameConfig.GM_INFO.uid.toString() }); + } + } + + static updateCoinAndLevel() { + if (typeof wx !== 'undefined' && wx !== null) { + // console.log("上传金币和关卡信息给数数") + API._ta.userSet({ current_level: (cc.fx.GameConfig.GM_INFO.level + 1) }); + API._ta.userSet({ current_coin: cc.fx.GameConfig.GM_INFO.coin }); + API._ta.userSet({ uid: cc.fx.GameConfig.GM_INFO.uid.toString() }); + } + } + + /* + * 数数平台设置动态公共属性 + */ + + static shushu_SetSuperProperties(register_time, pay_user) { + if (typeof wx !== 'undefined' && wx !== null && API._ta) { + var superProperties = {}; + superProperties = { + current_level: (cc.fx.GameConfig.GM_INFO.level + 1), //当前关卡等级 number + current_health: cc.fx.GameConfig.GM_INFO.hp, //当前体力值 + tmp_coin: cc.fx.GameConfig.GM_INFO.coin,//当前金币 + version: cc.fx.GameConfig.GM_INFO.version.toString(),//当前版本号 + user_id: cc.fx.GameConfig.GM_INFO.uid.toString() //用户id + }; + if (register_time != null) { + // console.log("设置用户公共属性注册:————————————", register_time); + superProperties = { + current_level: (cc.fx.GameConfig.GM_INFO.level + 1), //当前关卡等级 number + current_health: cc.fx.GameConfig.GM_INFO.hp, //当前体力值 + tmp_coin: cc.fx.GameConfig.GM_INFO.coin,//当前金币 + version: cc.fx.GameConfig.GM_INFO.version.toString(), + register_time: register_time, + user_id: cc.fx.GameConfig.GM_INFO.uid.toString(), //用户id + pay_user: pay_user + }; + } + if (pay_user != null && pay_user != false) { + // console.log("设置用户公共属性支付:————————————", pay_user); + superProperties = { + current_level: (cc.fx.GameConfig.GM_INFO.level + 1), //当前关卡等级 number + current_health: cc.fx.GameConfig.GM_INFO.hp, //当前体力值 + tmp_coin: cc.fx.GameConfig.GM_INFO.coin,//当前金币 + version: cc.fx.GameConfig.GM_INFO.version.toString(), + user_id: cc.fx.GameConfig.GM_INFO.uid.toString(), //用户id + pay_user: pay_user + } + } + // @ts-ignore + // console.log("设置公共属性时:————————————", superProperties.uid); + API._ta.setSuperProperties(superProperties);//设置公共事件属性 + API.updateCoinAndLevel(); + } + } + + static getWechatGameVersion(): string | null { + if (typeof wx !== 'undefined' && wx !== null) { + // @ts-ignore + const accountInfo = wx.getAccountInfoSync(); + return accountInfo.miniProgram.version; + } + } + + /* + * 数数平台具体埋点 + */ + + static shushu_Track(name, data, callback?: (success: boolean, error?: any) => void) { + if (typeof wx !== 'undefined' && wx !== null) { + if (API._ta) { + // 假设 track 方法返回一个 Promise + API._ta.track( + name, // 事件名称 + data // 事件属性 + ) + } + } + } + + /** + * 获取数数平台用户的 distinct_id + * @returns distinct_id 或 null + */ + static getShushuDistinctId(): string | null { + if (typeof wx !== 'undefined' && wx !== null && API._ta) { + // 假设 SDK 提供 getDistinctId 方法 + if (API._ta.getDistinctId) { + return API._ta.getDistinctId(); + } + } + return null; + } + + /** + * 获取数数平台用户的 account_id + * @returns account_id 或 null + */ + static getShushuAccountId(): string | null { + if (typeof wx !== 'undefined' && wx !== null && API._ta) { + // 假设 SDK 提供 getAccountId 方法 + if (API._ta.getAccountId) { + return API._ta.getAccountId(); + } + } + return null; + } + + //#region 引力平台- + static yinli_Init() { + if (typeof wx !== 'undefined' && wx !== null) { + const configYinli = { + accessToken: "aGws0nluotbm6Jjiv9WMuzOAbXLydxwe", // 项目通行证,在:网站后台-->设置-->应用列表中找到Access Token列 复制(首次使用可能需要先新增应用) + clientId: cc.fx.GameConfig.GM_INFO.openid, // 用户唯一标识,如产品为小游戏,则必须填用户openid(注意,不是小游戏的APPID!!!) + name: "ge", // 全局变量名称 + debugMode: "none", // 是否开启测试模式,开启测试模式后,可以在 网站后台--设置--元数据--事件流中查看实时数据上报结果。(测试时使用,上线之后一定要关掉,改成none或者删除) + sendTimeout: 3000, // 网络请求超时时间,单位毫秒,默认值 3000 ms + maxRetries: 3, // 网络请求失败时的重试次数,1 表示不重试。默认值是 3 + enablePersistence: true, // 是否使用本地缓存,主实例默认为 true,子实例默认为 false + asyncPersistence: false, // 是否使用异步存储,默认为 false + enable_sync_attribution: true, // 是否开启渠道归因,默认为 false + autoTrack: { + appLaunch: true, // 自动采集 $MPLaunch + appShow: false, // 自动采集 $MPShow + appHide: false, // 自动采集 $MPHide + }, + }; + API._ge = new GravityAnalyticsAPI(configYinli); + API._ge.setupAndStart(); + + API._ge.initialize({ + name: cc.fx.GameConfig.GM_INFO.openid, + version: cc.fx.GameConfig.GM_INFO.version, + openid: cc.fx.GameConfig.GM_INFO.openid, + enable_sync_attribution: false,//渠道归因 + }) + .then((res) => { + // console.log("引力引擎初始化成功", res) + }) + .catch((err) => { + // console.log("引力引擎初始化失败 " + err); + }); + + if (cc.fx.GameConfig.GM_INFO.shushu_AccountId == "") cc.fx.GameConfig.GM_INFO.shushu_AccountId = + cc.fx.GameConfig.GM_INFO.openid; + + const CURRENT_USER_TA_ACCOUNT_ID = cc.fx.GameConfig.GM_INFO.shushu_AccountId; // 用户唯一标识,如产品为小游戏,则必须填用户openid(注意,不是小游戏的APPID!!!) + const CURRENT_USER_TA_DISTINCT_ID = cc.fx.GameConfig.GM_INFO.shushu_DistinctId; // 用户唯一标识,如产品为小游戏,则必须填用户openid(注意,不是小游戏的APPID!!!) + API._ge.bindTAThirdPlatform(CURRENT_USER_TA_ACCOUNT_ID, CURRENT_USER_TA_DISTINCT_ID); + + } + } + + static yinli_Register() { + if (typeof wx !== 'undefined' && wx !== null) { + API._ge.registerEvent(); + } + } + + /** + * 上报付费事件 + * @param payAmount 付费金额 单位为分 + * @param payType 货币类型 按照国际标准组织ISO 4217中规范的3位字母,例如CNY人民币、USD美金等 + * @param orderId 订单号 + * @param payReason 付费原因 例如:购买钻石、办理月卡 + * @param payMethod 付费方式 例如:支付宝、微信、银联等 + */ + static yinli_Pay(payAmount, orderId, payReason) { + if (typeof wx !== 'undefined' && wx !== null) { + let version = cc.fx.GameTool.getWechatGameVersion(); + if (version == "开发版" || version == "体验版") { + } + else { + API._ge.payEvent(payAmount, "CNY", orderId, payReason, "微信"); + } + console.log("版本:", version); + + } + } + + static yinli_Login() { + if (typeof wx !== 'undefined' && wx !== null) { + API._ge.loginEvent(); + } + } + + //分享 + static shareGame() { + if (typeof wx !== 'undefined' && wx !== null) { + let helpLevel = cc.fx.GameConfig.GM_INFO.level + 1; + if (helpLevel > 373) { + helpLevel = 373; + } + // 获取关卡信息和 UID + const level = helpLevel; + const uid = cc.fx.GameConfig.GM_INFO.uid; + let iphoneArr = [ + "https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/0", + "https://mmocgame.qpic.cn/wechatgame/TWKuFxnCn7ksT3KXfhCC4yOfZeD4b0hrptDSJ2DFmwz02Yc8SppcwyPAOoS1MsMr/0", + "https://mmocgame.qpic.cn/wechatgame/dibaH2x79o1wSwBDymhyzXwfcyicaDb6R5icrFIO7251T4NgxIzXRXErHvAvn50vXFA/0", + "https://mmocgame.qpic.cn/wechatgame/Pgxad80d8ws3o69OicV3DTuTkcP81upQeJ0JBNS1xib3pzYLTF1ZqGY3niciaI7ICKlL/0", + "https://mmocgame.qpic.cn/wechatgame/SfB1vrRBIHKn9ffKFt5sib62yPLE31m2rCvk6DKlEicJNVZSoryEObD6ItwsQn4xibR/0", + "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0", + "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0" + ] + let randomIphone = iphoneArr[Math.floor(Math.random() * iphoneArr.length)]; + let img = randomIphone; + // const title = + // 构建分享参数 + const shareParams = { + title: '如果你突然打了个喷嚏,那一定是我在等你帮忙过关!', // 分享标题 + path: `/pages/index/index?level=${level}&uid=${uid}`, // 分享路径,带上关卡信息和 UID + imageUrl: img // 分享图片链接 + }; + + // 调用微信分享 API + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + //@ts-ignore + wx.shareAppMessage(shareParams); + let eventData = { + identity: "helped", //发起者为helped 帮助者为helper + helpedId: cc.fx.GameConfig.GM_INFO.uid, //被帮助者uid + level: level //被帮助关卡等级 + } + console.log("分享给好友", eventData); + cc.fx.GameTool.shushu_Track("stage_help", eventData); //帮助通关 + } + } + } + + //上传好友排行数据 + static setNewCloudlevel() { + if (typeof wx !== 'undefined' && wx !== null) { + console.log("往子域上传分数"); + let newKVData = { key: 'level', value: String(cc.fx.GameConfig.GM_INFO.level) } + // 设置新云托管分数(第一次游戏时,也调用该方法设置云托管分数) + //@ts-ignore + wx.setUserCloudStorage({ + KVDataList: [newKVData], + success: (res) => { + console.log('更新玩家分数成功!'); + }, + fail: (res) => { + console.log(res); + } + }); + } + } + } + +} \ No newline at end of file diff --git a/assets/Script/Sdk/MiniGameSdk.ts.meta b/assets/Script/Sdk/MiniGameSdk.ts.meta new file mode 100644 index 0000000..42a905b --- /dev/null +++ b/assets/Script/Sdk/MiniGameSdk.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "c1af99dd-ee03-40f7-9609-d3887d0dd357", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Sdk/gravityengine.mg.cocoscreator.min.js b/assets/Script/Sdk/gravityengine.mg.cocoscreator.min.js new file mode 100644 index 0000000..f162169 --- /dev/null +++ b/assets/Script/Sdk/gravityengine.mg.cocoscreator.min.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).gravityengine=t()}(this,function(){"use strict";function j(t,e){var n,i=Object.keys(t);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(t),e&&(n=n.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),i.push.apply(i,n)),i}function L(t){for(var e=1;ee.length)&&(t=e.length);for(var n=0,i=new Array(t);n=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:t};throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function H(e){e=function(e,t){if("object"!=typeof e||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0===n)return("string"===t?String:Number)(e);if("object"!=typeof(n=n.call(e,t||"default")))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}(e,"string");return"symbol"==typeof e?e:String(e)}var W="5.0.4",B="MG",K="cocoscreator",Q="https://api.gravity-engine.com/event_center/api/v1",z=function(){function e(){f(this,e),this.config={persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_web"}}return d(e,[{key:"getConfig",value:function(){return this.config}},{key:"getStorage",value:function(e,t,n){e=localStorage.getItem(e);if(!t)return I.isJSONString(e)?JSON.parse(e):{};I.isJSONString(e)?n(JSON.parse(e)):n({})}},{key:"setStorage",value:function(e,t){localStorage.setItem(e,t)}},{key:"removeStorage",value:function(e){localStorage.removeItem(e)}},{key:"_setSystemProxy",value:function(e){this._sysCallback=e}},{key:"getSystemInfo",value:function(e){var t=this._getOs(),t={mp_platform:"web",system:t,platform:t,screenWidth:window.screen.width,screenHeight:window.screen.height,systemLanguage:navigator.language};this._sysCallback&&(t=I.extend(t,this._sysCallback(e))),e.success(t),e.complete()}},{key:"_getOs",value:function(){var e=navigator.userAgent;return/Windows/i.test(e)?/Phone/.test(e)||/WPDesktop/.test(e)?"Windows Phone":"Windows":/(iPhone|iPad|iPod)/.test(e)?"iOS":/Android/.test(e)?"Android":/(BlackBerry|PlayBook|BB10)/i.test(e)?"BlackBerry":/Mac/i.test(e)?"MacOS":/Linux/.test(e)?"Linux":/CrOS/.test(e)?"ChromeOS":""}},{key:"getNetworkType",value:function(e){e.complete()}},{key:"onNetworkStatusChange",value:function(){}},{key:"request",value:function(e){var t={},n=new XMLHttpRequest;if(n.open(e.method,e.url),e.header)for(var i in e.header)n.setRequestHeader(i,e.header[i]);return n.onreadystatechange=function(){4===n.readyState&&200===n.status?(t.statusCode=200,I.isJSONString(n.responseText)&&(t.data=JSON.parse(n.responseText)),e.success(t)):200!==n.status&&(t.errMsg="network error",e.fail(t))},n.ontimeout=function(){t.errMsg="timeout",e.fail(t)},n.send(e.data),n}},{key:"initAutoTrackInstance",value:function(e,t){this.instance=e,this.autoTrack=t.autoTrack;var n=this;"onpagehide"in window?window.onpagehide=function(){n.onPageHide(!0)}:window.onbeforeunload=function(){n.onPageHide(!0)},n.onPageShow(),n.autoTrack.appHide&&n.instance.timeEvent("ta_page_hide"),"onvisibilitychange"in document&&(document.onvisibilitychange=function(){document.hidden?n.onPageHide(!1):(n.onPageShow(),n.autoTrack.appHide&&n.instance.timeEvent("ta_page_hide"))})}},{key:"setGlobal",value:function(e,t){window[t]=e}},{key:"getAppOptions",value:function(){}},{key:"showToast",value:function(){}},{key:"onPageShow",value:function(){var e;this.autoTrack.appShow&&(I.extend(e={},this.autoTrack.properties),I.isFunction(this.autoTrack.callback)&&I.extend(e,this.autoTrack.callback("appShow")),this.instance._internalTrack("$WebPageView",e))}},{key:"onPageHide",value:function(e){var t;this.autoTrack.appHide&&(I.extend(t={},this.autoTrack.properties),I.isFunction(this.autoTrack.callback)&&I.extend(t,this.autoTrack.callback("appHide")),this.instance._internalTrack("$WebPageHide",t,new Date,null,e))}}],[{key:"createInstance",value:function(){return new e}}]),e}(),Y=function(){function n(e,t){f(this,n),this.taInstance=e,this.config=t||{},this.referrer="Directly open",this.config.isPlugin?(e.App=function(){App.apply(this,arguments)},inension(e.Page)):(t=App,App=this._initAppExtention(t),e=Page,Page=this._initPageExtension(e))}return d(n,[{key:"_initPageExtension",value:function(r){var o=this;return function(e){var t=e.onLoad,n=e.onShow,i=(e.onShareAppMessage,{});return e.onLoad=function(e){i=e||{},"function"==typeof t&&t.call(this,e)},e.onShow=function(e){o.onPageShow(i),"function"==typeof n&&n.call(this,e)},r(e)}}},{key:"_initAppExtention",value:function(r){var o=this;return function(e){var t=e.onLaunch,n=e.onShow,i=e.onHide;return e.onLaunch=function(e){o.onAppLaunch(e,this),"function"==typeof t&&t.call(this,e)},e.onShow=function(e){o.onAppShow(e),"function"==typeof n&&n.call(this,e)},e.onHide=function(){o.onAppHide(),"function"==typeof i&&i.call(this)},r(e)}}},{key:"onAppLaunch",value:function(e,t){this._setAutoTrackProperties(e),I.isUndefined(t)||(t[this.taInstance.name]=this.taInstance),this.config.appLaunch&&(t={},e&&e.path&&(t.$url_query=I.setQuery(e.query),t.$scene=String(e.scene||e.from)),this.taInstance._internalTrack("$MPLaunch",t))}},{key:"onAppShow",value:function(e){var t;this.config.appHide&&this.taInstance.timeEvent("$MPHide"),this._setAutoTrackProperties(e),this.config.appShow&&(t={},e&&e.path&&(t.$url_path=this._getPath(e.path),t.$url_query=I.setQuery(e.query),t.$scene=String(e.scene||e.from)),I.extend(t,this.config.properties),I.isFunction(this.config.callback)&&I.extend(t,this.config.callback("appShow")),this.taInstance._internalTrack("$MPShow",t))}},{key:"onAppHide",value:function(){var e;this.config.appHide&&(I.extend(e={},this.config.properties),I.isFunction(this.config.callback)&&I.extend(e,this.config.callback("appHide")),this.taInstance._internalTrack("$MPHide",e))}},{key:"_getCurrentPath",value:function(){var e="Not to get";try{var t=getCurrentPages(),e=t[t.length-1].route}catch(e){h.info(e)}return e}},{key:"_setAutoTrackProperties",value:function(e){this.taInstance._setAutoTrackProperties({})}},{key:"_getPath",value:function(e){return"string"==typeof e?e.replace(/^\//,""):"Abnormal values"}},{key:"onPageShare",value:function(e){if(this.config.pageShare){var t=1;try{t=getCurrentPages().length}catch(e){t=1}this.taInstance._internalTrack("$MPShare",{$share_method:"转发消息卡片",$share_depth:t,$url_path:this._getCurrentPath()})}return I.isObject(e)?e:{}}},{key:"onPageShow",value:function(e){var t;this.config.pageShow&&(t=this._getCurrentPath(),I.setQuery(e),this.referrer=t)}}]),n}(),X=function(){function r(t,e,n){var i=this,t=(f(this,r),this.taInstance=t,this.config=e||{},{});try{t=n.getLaunchOptionsSync()}catch(e){t={}}this._onShow(t),this.startTracked=!0,n.onShow(function(e){i._onShow(e)}),n.onHide(function(){var e;i.startTracked=!1,i.config.appHide&&(I.extend(e={},i.config.properties),I.isFunction(i.config.callback)&&I.extend(e,i.config.callback("appHide")),i.taInstance._internalTrack("$MPHide",e))})}return d(r,[{key:"_onShow",value:function(e){var t;I.isObject(e)||(e={}),this.startTracked||(this.config.appHide&&this.taInstance.timeEvent("$MPHide"),this.config.appShow&&(I.extend(t={},this.config.properties),I.isFunction(this.config.callback)&&I.extend(t,this.config.callback("appShow")),this.taInstance._internalTrack("$MPShow",L(L({},t),{},{$scene:String((null==(t=e)?void 0:t.scene)||(null==(t=e)?void 0:t.from)),$url_query:I.setQuery((null==(e=S.getAppOptions())?void 0:e.query)||{})}))))}}]),r}();var Z=function(){function i(e,t,n){f(this,i),this.api=e,this.config=t,this._config=n}return d(i,[{key:"getConfig",value:function(){return this.config}},{key:"getStorage",value:function(e,t,n){if(t)this.api.getStorage({key:e,success:function(e){e=I.isJSONString(e.data)?JSON.parse(e.data):{};n(e)},fail:function(){n({})}});else try{var i,r;return["dd_mp","ali_mp","ali_mg"].includes(this._config.platform)?(i=this.api.getStorageSync({key:e}),I.isJSONString(i.data)?JSON.parse(i.data):{}):(r=this.api.getStorageSync(e),I.isJSONString(r)?JSON.parse(r):I.isObject(r)?r:{})}catch(e){return{}}}},{key:"setStorage",value:function(e,t){try{["ali_mp","tb_mp","dd_mp","ali_mg"].includes(this._config.platform)?this.api.setStorageSync({key:e,data:t}):this.api.setStorageSync(e,t)}catch(e){}}},{key:"removeStorage",value:function(e){try{I.isFunction(this.api.removeStorage)?this.api.removeStorage({key:e}):I.isFunction(this.api.deleteStorage)&&this.api.deleteStorage({key:e})}catch(e){}}},{key:"_getPlatform",value:function(){return""}},{key:"getSystemInfo",value:function(t){var n=this._config.mpPlatform;this.api.getSystemInfo({success:function(e){I.isFunction(n)?e.mp_platform=n(e):e.mp_platform=n,t.success(e),"wechat"===n&&t.complete()},complete:function(){t.complete()}})}},{key:"getNetworkType",value:function(t){I.isFunction(this.api.getNetworkType)?this.api.getNetworkType({success:function(e){t.success(e)},complete:function(){t.complete()}}):(t.success({}),t.complete())}},{key:"onNetworkStatusChange",value:function(e){I.isFunction(this.api.onNetworkStatusChange)?this.api.onNetworkStatusChange(e):e({})}},{key:"request",value:function(t){var e;if("ali_mp"===this._config.platform||"dd_mp"===this._config.platform)return(e=I.extend({},t)).headers=t.header,e.success=function(e){e.statusCode=e.status,t.success(e)},e.fail=function(e){e.errMsg=e.errorMessage,t.fail(e)},"dd_mp"===this._config.platform?this.api.httpRequest(e):this.api.request(e);try{if("taobao_mg"!==this._config.platform)return this.api.request(t);var n=t,i={},r=new XMLHttpRequest;if(r.open(n.method,n.url),n.header)for(var o in n.header)r.setRequestHeader(o,n.header[o]);return r.onreadystatechange=function(){4===r.readyState&&200===r.status?(i.statusCode=200,I.isJSONString(r.responseText)&&(i.data=JSON.parse(r.responseText)),n.success(i)):200!==r.status&&(i.errMsg="network error",n.fail(i))},r.ontimeout=function(){i.errMsg="timeout",n.fail(i)},r.send(JSON.parse(n.data)),r}catch(e){}}},{key:"initAutoTrackInstance",value:function(e,t){return I.isObject(t.autoTrack)&&(t.autoTrack.isPlugin=t.is_plugin),new(this._config.mp?Y:X)(e,t.autoTrack,this.api)}},{key:"setGlobal",value:function(e,t){if(this._config.mp)h.warn("GravityAnalytics: we do not set global name for GE instance when you do not enable auto track.");else if("ali_mg"!==this._config.platform)try{GameGlobal[t]=e}catch(e){}}},{key:"getAppOptions",value:function(e){var t={};try{t=this.api.getLaunchOptionsSync()}catch(e){t={}}if(I.isFunction(e))try{this._config.mp?this.api.onAppShow(e):this.api.onShow(e)}catch(e){h.warn("Cannot register onShow callback.")}return t}},{key:"showToast",value:function(e){var t;I.isFunction(this.api.showToast)&&(t={title:e},"dd_mp"!==this._config.platform&&"ali_mp"!==this._config.platform||(t.content=e),this.api.showToast(t))}}],[{key:"createInstance",value:function(){return this._createInstance("R_CURRENT_PLATFORM")}},{key:"_createInstance",value:function(e){switch(e){case"wechat_mp":return new i(wx,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_wechat"},{mpPlatform:"wechat",mp:!0,platform:e});case"wechat_mg":return new i(wx,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_wechat_game"},{mpPlatform:"wechat",platform:e});case"qq_mp":return new i(qq,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_qq"},{mpPlatform:"qq",mp:!0,platform:e});case"qq_mg":return new i(qq,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_qq_game"},{mpPlatform:"qq",platform:e});case"baidu_mp":return new i(swan,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_swan"},{mpPlatform:function(e){return e.host},mp:!0,platform:e});case"baidu_mg":return new i(swan,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_swan_game"},{mpPlatform:function(e){return e.host},platform:e});case"taobao_mg":return new i(my,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_taobao_game"},{mpPlatform:"taobao",platform:e});case"tt_mg":return new i(tt,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_tt_game"},{mpPlatform:function(e){return e.appName},platform:e});case"tt_mp":return new i(tt,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_tt"},{mpPlatform:function(e){return e.appName},mp:!0,platform:e});case"ali_mp":return new i(my,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_ali"},{mpPlatform:function(e){return e.app},mp:!0,platform:e});case"ali_mg":return new i(my,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_ali_game"},{mpPlatform:function(e){return e.app},platform:e});case"dd_mp":return new i(dd,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_dd"},{mpPlatform:"dingding",mp:!0,platform:e});case"bl_mg":return new i(bl,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_bl_game"},{mpPlatform:"bilibili",platform:e});case"kuaishou_mp":return new i(ks,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_kuaishou_program"},{mpPlatform:"kuaishou",mp:!0,platform:e});case"kuaishou_mg":return new i(ks,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_kuaishou_game"},{mpPlatform:"kuaishou_game",platform:e});case"qh360_mg":return new i(qh,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_qh360"},{mpPlatform:"qh360",platform:e});case"tb_mp":return new i(my,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_tb"},{mpPlatform:"tb",mp:!0,platform:e});case"jd_mp":return new i(jd,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_jd"},{mpPlatform:"jd",mp:!0,platform:e});case"qh360_mp":return new i(qh,{persistenceName:"GravityEngine",persistenceNameOld:"GravityEngine_qh360"},{mpPlatform:"qh360",mp:!0,platform:e});case"WEB":return new z.createInstance}}}]),i}(),ee=d(function e(t,n){var i=this;f(this,e),this.taInstance=t,this.config=n||{},this.config.appShow&&this.taInstance._internalTrack("$MPShow"),this.config.appHide&&this.taInstance.timeEvent("$MPHide"),qg.onShow(function(){var e;i.config.appHide&&i.taInstance.timeEvent("$MPHide"),i.config.appShow&&(I.extend(e={},i.config.properties),I.isFunction(i.config.callback)&&I.extend(e,i.config.callback("appShow")),i.taInstance._internalTrack("$MPShow"))}),qg.onHide(function(){var e;i.config.appHide&&(I.extend(e={},i.config.properties),I.isFunction(i.config.callback)&&I.extend(e,i.config.callback("appHide")),i.taInstance._internalTrack("$MPHide"))})}),te=function(){function e(){f(this,e),this.config={persistenceName:"gravityengine",persistenceNameOld:"gravityengine_qg_vivo_game",asyncPersistence:!0}}return d(e,[{key:"getConfig",value:function(){return this.config||{}}},{key:"getStorage",value:function(e,t,n){if(!t)return t=qg.getStorageSync({key:e}),I.isJSONString(t)?JSON.parse(t):{};qg.getStorage({key:e,success:function(e){e=I.isJSONString(e)?JSON.parse(e):{};n(e)},fail:function(){n({})}})}},{key:"setStorage",value:function(e,t){qg.setStorage({key:e,value:t})}},{key:"removeStorage",value:function(e){qg.deleteStorage({key:e})}},{key:"getSystemInfo",value:function(i){qg.getSystemInfo({success:function(e){var t=e,n=[e.osType,e.osVersionName].join(" ");t.brand=e.manufacturer,t.system=n,t.mp_platform="vivo_qg",i.success(t)},complete:function(){i.complete()}})}},{key:"getQuickDevice",value:function(n){var i={os_name:"android",android_id:"",imei:"",oaid:"",mac:"",android_version:"",api_version:0,rom:{gravityengine_qg_huawei_game:"EMUI",gravityengine_qg:"MIUI",gravityengine_qg_oppo_game:"ColorOS",gravityengine_qg_vivo_game:"FuntouchOS",gravityengine_qg_mz_game:"Flyme"}[n.platform],rom_version:"",phone_brand:"",phone_model:""};qg.getSystemInfo({success:function(e){var t;i.android_version=e.system,i.api_version=e.platformVersionCode,i.rom_version=e.COREVersion,i.phone_brand=e.brand,i.phone_model=e.model,qg.getOAID&&(e=null!=(t=null==(t=(e=qg).getOAID)?void 0:t.call(e).oaid)?t:"",i.android_id=e,i.imei=e,i.oaid=e),n.success(i)}})}},{key:"getNetworkType",value:function(n){qg.getNetworkType({success:function(e){var t=e;t.networkType=e.type,n.success(t)},complete:function(){n.complete()}})}},{key:"onNetworkStatusChange",value:function(n){qg.subscribeNetworkStatus({callback:function(e){var t=e;t.networkType=e.type,n(t)}})}},{key:"request",value:function(t){return qg.request({url:t.url,data:t.data,method:t.method,header:t.header,success:function(e){t.success(e)},fail:function(e){t.fail(e)}})}},{key:"initAutoTrackInstance",value:function(e,t){return new ee(e,t.autoTrack)}},{key:"setGlobal",value:function(e,t){globalThis[t]=e}},{key:"getAppOptions",value:function(){try{if(!qg.getLaunchOptionsSync)return{};var e=qg.getLaunchOptionsSync(),t=e.referrerInfo.extraData,n=e.query.internal,i=n&&n.channel?n.channel:"";if(t)return{query:t,scene:""};if("deeplink"!==i)return{};var r,o=n.custom_params,a=JSON.parse(o).cus_origin_uri,s=new URLSearchParams(a.split("?")[1]),c={},u=V(s);try{for(u.s();!(r=u.n()).done;){var l=F(r.value,2),p=l[0],f=l[1];c[p]=f}}catch(e){u.e(e)}finally{u.f()}return{query:c,scene:""}}catch(e){return{}}}},{key:"showToast",value:function(e){qg.showToast({message:e,duration:0})}}],[{key:"createInstance",value:function(){return new e}}]),e}(),ne=d(function e(t,n,i){var r=this;f(this,e),this.taInstance=t,this.config=n||{},this.config.appShow&&(I.extend(t={},this.config.properties),I.isFunction(this.config.callback)&&I.extend(t,this.config.callback("appShow")),this.taInstance._internalTrack("$MPShow",t)),this.config.appHide&&this.taInstance.timeEvent("$MPHide"),i.onShow(function(){var e;r.config.appHide&&r.taInstance.timeEvent("$MPHide"),r.config.appShow&&(I.extend(e={},r.config.properties),I.isFunction(r.config.callback)&&I.extend(e,r.config.callback("appShow")),r.taInstance._internalTrack("$MPShow",e))}),i.onHide(function(){var e;r.config.appHide&&(I.extend(e={},r.config.properties),I.isFunction(r.config.callback)&&I.extend(e,r.config.callback("appHide")),r.taInstance._internalTrack("$MPHide",e))})}),ie=function(){function i(e,t,n){f(this,i),this.api=e,this.config=t,this._config=n}return d(i,[{key:"getConfig",value:function(){return this.config||{}}},{key:"getStorage",value:function(e,t,n){e=localStorage.getItem(e);if(!t)return I.isJSONString(e)?JSON.parse(e):{};I.isJSONString(e)?n(JSON.parse(e)):n({})}},{key:"setStorage",value:function(e,t){localStorage.setItem(e,t)}},{key:"removeStorage",value:function(e){localStorage.removeItem(e)}},{key:"getSystemInfo",value:function(t){var n=this._config.mpPlatform;this.api.getSystemInfo({success:function(e){e.mp_platform=n,t.success(e)},complete:function(){t.complete()}})}},{key:"getQuickDevice",value:function(n){var i={os_name:"android",android_id:"",imei:"",oaid:"",mac:"",android_version:"",api_version:0,rom:{gravityengine_qg_huawei_game:"EMUI",gravityengine_qg:"MIUI",gravityengine_qg_oppo_game:"ColorOS",gravityengine_qg_vivo_game:"FuntouchOS",gravityengine_qg_mz_game:"Flyme"}[n.platform],rom_version:"",phone_brand:"",phone_model:""},r=this;this.api.getSystemInfo({success:function(e){function t(){n.success(i)}i.android_version=e.system,i.api_version=e.platformVersionCode,i.rom_version=e.COREVersion,i.phone_brand=e.brand,i.phone_model=e.model,r.api.getDeviceId?r.api.getDeviceId({success:function(e){i.android_id=e.deviceId,i.imei=e.deviceId,i.oaid=e.deviceId,t()}}):r.api.getOAID?r.api.getOAID({success:function(e){i.android_id=e.oaid,i.imei=e.oaid,i.oaid=e.oaid,t()}}):t()}})}},{key:"getNetworkType",value:function(t){this.api.getNetworkType({success:function(e){t.success(e)},complete:function(){t.complete()}})}},{key:"onNetworkStatusChange",value:function(t){this.api.onNetworkStatusChange({callback:function(e){t(e)}})}},{key:"request",value:function(e){var t={},n=new XMLHttpRequest;if(n.open(e.method,e.url),e.header)for(var i in e.header)n.setRequestHeader(i,e.header[i]);return n.onreadystatechange=function(){4===n.readyState&&200===n.status?(t.statusCode=200,I.isJSONString(n.responseText)&&(t.data=JSON.parse(n.responseText)),e.success(t)):200!==n.status&&(t.errMsg="network error",e.fail(t))},n.ontimeout=function(){t.errMsg="timeout",e.fail(t)},n.send(e.data),n}},{key:"initAutoTrackInstance",value:function(e,t){return new ne(e,t.autoTrack,this.api)}},{key:"setGlobal",value:function(e,t){globalThis[t]=e}},{key:"getAppOptions",value:function(){var e=this._config.mpPlatform;if("oppo_qg"===e)return this.api.getEnterOptionsSync();var t=this.api.getLaunchOptionsSync();if("huawei_qg"!==e)return t;if(I.isObject(t))return t;if(I.isString(t))try{return JSON.parse(t)}catch(e){}return{}}},{key:"showToast",value:function(e){this.api.showToast({title:e,icon:"none",duration:2e3})}}],[{key:"createInstance",value:function(){return this._createInstance("R_CURRENT_PLATFORM")}},{key:"_createInstance",value:function(e){switch(e){case"oppo":return new i(qg,{persistenceName:"gravityengine",persistenceNameOld:"gravityengine_qg_oppo_game"},{mpPlatform:"oppo_qg"});case"honor":return new i(qg,{persistenceName:"gravityengine",persistenceNameOld:"gravityengine_qg_honor_game"},{mpPlatform:"honor_qg"});case"huawei":return new i(hbs,{persistenceName:"gravityengine",persistenceNameOld:"gravityengine_qg_huawei_game"},{mpPlatform:"huawei_qg"});case"mz":return new i(qg,{persistenceName:"gravityengine",persistenceNameOld:"gravityengine_qg_mz_game"},{mpPlatform:"mz"});case"xiaomi":return new i(qg,{persistenceName:"gravityengine",persistenceNameOld:"gravityengine_qg_xiaomi_game"},{mpPlatform:"xiaomi"})}}}]),i}(),re=function(){function e(){f(this,e)}return d(e,null,[{key:"createInstance",value:function(){var n,e=Object.freeze({WECHAT_GAME:104,QQ_PLAY:105,BAIDU_GAME:107,VIVO_GAME:108,OPPO_GAME:109,HUAWEI_GAME:110,XIAOMI_GAME:111,BYTEDANCE_GAME:117,QTT_GAME:116,LINKSURE:119,ALIPAY_GAME:113,HONOR_MINIGAME:123,TAOBAO_MINIGAME:121,TAOBAO_MINI_GAME:"TAOBAO_MINI_GAME",WECHAT_MINI_GAME:"WECHAT_GAME",HONOR_MINI_GAME:"HONOR_MINI_GAME",BAIDU_MINI_GAME:"BAIDU_MINI_GAME",XIAOMI_QUICK_GAME:"XIAOMI_QUICK_GAME",OPPO_MINI_GAME:"OPPO_MINI_GAME",VIVO_MINI_GAME:"VIVO_MINI_GAME",HUAWEI_QUICK_GAME:"HUAWEI_QUICK_GAME",BYTEDANCE_MINI_GAME:"BYTEDANCE_MINI_GAME",QTT_MINI_GAME:"QTT_MINI_GAME",LINKSURE_MINI_GAME:"LINKSURE_MINI_GAME",ALIPAY_MINI_GAME:"ALIPAY_MINI_GAME"});return cc.sys.platform===e.WECHAT_GAME||cc.sys.platform===e.WECHAT_MINI_GAME?Z._createInstance("wechat_mg"):cc.sys.platform===e.BAIDU_GAME||cc.sys.platform===e.BAIDU_MIN_GAME?Z._createInstance("baidu_mg"):cc.sys.platform===e.TAOBAO_MINI_GAME||cc.sys.platform===e.TAOBAO_MINIGAME?Z._createInstance("taobao_mg"):cc.sys.platform===e.VIVO_GAME||cc.sys.platform===e.VIVO_MINI_GAME?te.createInstance():cc.sys.platform===e.QQ_PLAY?Z._createInstance("qq_mg"):cc.sys.platform===e.OPPO_GAME||cc.sys.platform===e.OPPO_MINI_GAME?ie._createInstance("oppo"):cc.sys.platform===e.HUAWEI_GAME||cc.sys.platform===e.HUAWEI_QUICK_GAME?ie._createInstance("huawei"):cc.sys.platform===e.HONOR_MINIGAME||cc.sys.platform===e.HONOR_MINI_GAME?ie._createInstance("honor"):cc.sys.platform===e.XIAOMI_GAME||cc.sys.platform===e.XIAOMI_QUICK_GAME?ie._createInstance("xiaomi"):cc.sys.platform===e.ALIPAY_GAME||cc.sys.platform===e.ALIPAY_MINI_GAME?Z._createInstance("ali_mg"):cc.sys.platform===e.BYTEDANCE_GAME||cc.sys.platform===e.BYTEDANCE_MINI_GAME?Z._createInstance("tt_mg"):((n=z.createInstance())._sysCallback=function(){return{system:cc.sys.os.replace(" ","")+" "+cc.sys.osVersion}},n.getNetworkType=function(e){var t={};switch(cc.sys.getNetworkType()){case cc.sys.NetworkType.LAN:t.networkType="WIFI";break;case cc.sys.NetworkType.WWAN:t.networkType="WWAN";break;default:t.networkType="NONE"}e.success(t),e.complete()},n.getSystemInfo=function(e){var t={mp_platform:cc.sys.platform.toString(),system:n._getOs(),screenWidth:window.screen.width,screenHeight:window.screen.height};n._sysCallback&&(t=I.extend(t,n._sysCallback(e))),e.success(t),e.complete()},n)}}]),e}(),S=function(){function e(){f(this,e)}return d(e,null,[{key:"_getCurrentPlatform",value:function(){return this.currentPlatform||(this.currentPlatform=re.createInstance())}},{key:"getConfig",value:function(){return this._getCurrentPlatform().getConfig()}},{key:"getStorage",value:function(e,t,n){return this._getCurrentPlatform().getStorage(e,t,n)}},{key:"setStorage",value:function(e,t){return this._getCurrentPlatform().setStorage(e,t)}},{key:"removeStorage",value:function(e){return this._getCurrentPlatform().removeStorage(e)}},{key:"getSystemInfo",value:function(e){return this._getCurrentPlatform().getSystemInfo(e)}},{key:"getNetworkType",value:function(e){return this._getCurrentPlatform().getNetworkType(e)}},{key:"getQuickDevice",value:function(e){return this._getCurrentPlatform().getQuickDevice(e)}},{key:"onNetworkStatusChange",value:function(e){this._getCurrentPlatform().onNetworkStatusChange(e)}},{key:"request",value:function(e){return this._getCurrentPlatform().request(e)}},{key:"initAutoTrackInstance",value:function(e,t){return this._getCurrentPlatform().initAutoTrackInstance(e,t)}},{key:"setGlobal",value:function(e,t){e&&t&&this._getCurrentPlatform().setGlobal(e,t)}},{key:"getAppOptions",value:function(e){return this._getCurrentPlatform().getAppOptions(e)}},{key:"showDebugToast",value:function(e){this._getCurrentPlatform().showToast(e)}}]),e}(),I={},e=Array.prototype,t=Object.prototype,oe=e.slice,ae=t.toString,se=Object.prototype.hasOwnProperty,ce=e.forEach,t=Array.isArray,ue={};function le(){return new RegExp(/(.*?)\.?([^.]*?)\.(com|net|org|biz|ws|in|me|co\.uk|co|org\.uk|ltd\.uk|plc\.uk|me\.uk|edu|mil|br\.com|cn\.com|eu\.com|hu\.com|no\.com|qc\.com|sa\.com|se\.com|se\.net|us\.com|uy\.com|ac|co\.ac|gv\.ac|or\.ac|ac\.ac|af|am|as|at|ac\.at|co\.at|gv\.at|or\.at|asn\.au|com\.au|edu\.au|org\.au|net\.au|id\.au|be|ac\.be|adm\.br|adv\.br|am\.br|arq\.br|art\.br|bio\.br|cng\.br|cnt\.br|com\.br|ecn\.br|eng\.br|esp\.br|etc\.br|eti\.br|fm\.br|fot\.br|fst\.br|g12\.br|gov\.br|ind\.br|inf\.br|jor\.br|lel\.br|med\.br|mil\.br|net\.br|nom\.br|ntr\.br|odo\.br|org\.br|ppg\.br|pro\.br|psc\.br|psi\.br|rec\.br|slg\.br|tmp\.br|tur\.br|tv\.br|vet\.br|zlg\.br|br|ab\.ca|bc\.ca|mb\.ca|nb\.ca|nf\.ca|ns\.ca|nt\.ca|on\.ca|pe\.ca|qc\.ca|sk\.ca|yk\.ca|ca|cc|ac\.cn|net\.cn|com\.cn|edu\.cn|gov\.cn|org\.cn|bj\.cn|sh\.cn|tj\.cn|cq\.cn|he\.cn|nm\.cn|ln\.cn|jl\.cn|hl\.cn|js\.cn|zj\.cn|ah\.cn|gd\.cn|gx\.cn|hi\.cn|sc\.cn|gz\.cn|yn\.cn|xz\.cn|sn\.cn|gs\.cn|qh\.cn|nx\.cn|xj\.cn|tw\.cn|hk\.cn|mo\.cn|cn|cx|cz|de|dk|fo|com\.ec|tm\.fr|com\.fr|asso\.fr|presse\.fr|fr|gf|gs|co\.il|net\.il|ac\.il|k12\.il|gov\.il|muni\.il|ac\.in|co\.in|org\.in|ernet\.in|gov\.in|net\.in|res\.in|is|it|ac\.jp|co\.jp|go\.jp|or\.jp|ne\.jp|ac\.kr|co\.kr|go\.kr|ne\.kr|nm\.kr|or\.kr|li|lt|lu|asso\.mc|tm\.mc|com\.mm|org\.mm|net\.mm|edu\.mm|gov\.mm|ms|nl|no|nu|pl|ro|org\.ro|store\.ro|tm\.ro|firm\.ro|www\.ro|arts\.ro|rec\.ro|info\.ro|nom\.ro|nt\.ro|se|si|com\.sg|org\.sg|net\.sg|gov\.sg|sk|st|tf|ac\.th|co\.th|go\.th|mi\.th|net\.th|or\.th|tm|to|com\.tr|edu\.tr|gov\.tr|k12\.tr|net\.tr|org\.tr|com\.tw|org\.tw|net\.tw|ac\.uk|uk\.com|uk\.net|gb\.com|gb\.net|vg|sh|kz|ch|info|ua|gov|name|pro|ie|hk|com\.hk|org\.hk|net\.hk|edu\.hk|us|tk|cd|by|ad|lv|eu\.lv|bz|es|jp|cl|ag|mobi|eu|co\.nz|org\.nz|net\.nz|maori\.nz|iwi\.nz|io|la|md|sc|sg|vc|tw|travel|my|se|tv|pt|com\.pt|edu\.pt|asia|fi|com\.ve|net\.ve|fi|org\.ve|web\.ve|info\.ve|co\.ve|tel|im|gr|ru|net\.ru|org\.ru|hr|com\.hr|ly|xyz)$/)}function pe(e,t){var n=e.charAt(0),t=t.split(n);return n===e?t:t[(e=parseInt(e.substring(1),10))<0?t.length+e:e-1]}function fe(e,t){for(var n,i=e.charAt(0),r=t.split("&"),o=[],a={},s=e.substring(1),c=0,u=r.length;c>6|192,63&a|128):String.fromCharCode(a>>12|224,a>>6&63|128,63&a|128),null!==s&&(i>12&63,n=r>>6&63,i=63&r,u[s++]=o.charAt(r>>18&63)+o.charAt(t)+o.charAt(n)+o.charAt(i),ae.length)&&(t=e.length);for(var n=0,i=new Array(t);nc[u])return 1;if(c[u]>s[u])return-1}else if(e||t)return e?-1:1;return 0}var ut=/^v?(?:\d+)(\.(?:[x*]|\d+)(\.(?:[x*]|\d+)(\.(?:[x*]|\d+))?(?:-[\da-z\-]+(?:\.[\da-z\-]+)*)?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i,lt=function(e){if("string"!=typeof e)throw new TypeError("Invalid argument expected string");if(!ut.test(e))throw new Error("Invalid argument not valid semver ('".concat(e,"' received)"))},pt=function(e){return isNaN(Number(e))?e:Number(e)},ft=function(e){var e=e.replace(/^v/,"").replace(/\+.*$/,""),t=-1===(t=e).indexOf("-")?t.length:t.indexOf("-"),n=e.substring(0,t).split(".");return n.push(e.substring(t+1)),n};function dt(e,t){return Object.prototype.hasOwnProperty.call(e,t)}n(ht,null,[{key:"error",value:function(e){for(var t,n=arguments.length,i=new Array(1=this.maxLength?(t="队列长度超过最大限制".concat(this.maxLength,"条,SDK将按照行为优先级排序,丢弃优先级最低的行为事件"),m.warn(t),Qe({user_action_set_id:this.userActionSetId,log_type:y.JS_QUEUE_LOG,message:t}),t=this.sortQueue(e,n),m.debug&&m.info("超过".concat(this.maxLength,"条按优先级排序的队列:"),t.concat([])),n=t.pop(),this.updateAllStack(t),this.updateLostAction((null==n?void 0:n.session_id)||"")):this.addItem(e),this.updateToStorage()}},{key:"removeActions",value:function(e){this.removeItems(e),this.updateToStorage()}},{key:"updateActionsForReportFail",value:function(e){this.updateForReportFail(e),this.updateToStorage()}},{key:"updateActionsForReporting",value:function(e){this.updateForReporting(e),this.updateToStorage()}},{key:"getReportableActionsLength",value:function(){var e=this.getItems().filter(function(e){return(null==e?void 0:e.inner_status)!==(null==i?void 0:i.reporting)});return null==e?void 0:e.length}},{key:"sortQueue",value:function(e,t){function n(e){return r[e.action_id]||(r[e.action_id]=i.caculateWeight(o,e)),r[e.action_id]}var i=this,r={},o=null==e?void 0:e.action_time,t=t.concat([e]);return t.sort(function(e,t){return n(t)-n(e)})}},{key:"caculateWeight",value:function(e,t){var n=0,i=this.formatWeight(e,null==t?void 0:t.action_time),r=i.ogWeight,o=i.sdkWeight,i=i.userWeight,a=(null!=(a=this.ogEvents)&&a.includes(null==t?void 0:t.action_type)&&(n+=r),null!=t&&t.is_sdk_auto_track?n+=o:n+=i,e-(null==t?void 0:t.action_time)+1);return 0>16)+(t>>16)+(n>>16)<<16|65535&n}function rn(e,t,n,i,r,o){return nn((t=nn(nn(t,e),nn(i,o)))<>>32-r,n)}function N(e,t,n,i,r,o,a){return rn(t&n|~t&i,e,t,r,o,a)}function P(e,t,n,i,r,o,a){return rn(t&i|n&~i,e,t,r,o,a)}function T(e,t,n,i,r,o,a){return rn(t^n^i,e,t,r,o,a)}function C(e,t,n,i,r,o,a){return rn(n^(t|~i),e,t,r,o,a)}function on(e,t){e[t>>5]|=128<>>9<<4)]=t;for(var n,i,r,o,a=1732584193,s=-271733879,c=-1732584194,u=271733878,l=0;l>5]>>>i%32&255);return t}function sn(e){var t=[];for(t[(e.length>>2)-1]=void 0,i=0;i>5]|=(255&e.charCodeAt(i/8))<>>4&15)+n.charAt(15&t);return i}function un(e){return unescape(encodeURIComponent(e))}function ln(e){return an(on(sn(e=un(e)),8*e.length))}function pn(e,t){var n,e=un(e),t=un(t),i=sn(e),r=[],o=[];for(r[15]=o[15]=void 0,16>>6)+R(128|63&t):R(224|t>>>12&15)+R(128|t>>>6&63)+R(128|63&t):(t=65536+1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320),R(240|t>>>18&7)+R(128|t>>>12&63)+R(128|t>>>6&63)+R(128|63&t))}function gn(e,t,n,i){for(var r,o=1>18&63]+yn[t>>12&63]+yn[t>>6&63]+yn[63&t]}return o?r.slice(0,o-3)+"===".substring(o):r}),_n=e?function(e){return Buffer.from(e).toString("base64")}:function(e){for(var t=[],n=0,i=e.length;n=this.reportThreshold||(t=(null==(e=this.configManager)?void 0:e.getRealTimeActionList())||v.realTimeActionList,n.some(function(e){return-1=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o};throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(i);try{for(o.s();!(r=o.n()).done;){var a=r.value;if(function(e,t){try{if(0===e.length)return t.length;if(0===t.length)return e.length;for(var n=[],i=0;i<=t.length;i++)n[i]=[i];for(var r=0;r<=e.length;r++)n[0][r]=r;for(var o=1;o<=t.length;o++)for(var a=1;a<=e.length;a++)t.charAt(o-1)===e.charAt(a-1)?n[o][a]=n[o-1][a-1]:n[o][a]=Math.min(n[o-1][a-1]+1,n[o][a-1]+1,n[o-1][a]+1);return n[t.length][e.length]}catch(n){m.error(n)}}(a,n)<=parseInt((.3*a.length).toString())){m.warn("通过SDK上报的".concat(n,"行为名称可能有误,请检查该行为类型是否为腾讯广告提供的标准行为!").concat(Nn));break}}}catch(n){o.e(n)}finally{o.f()}}}catch(i){m.error(i)}if("minigame"===t){var s,c,u,l=e,p=t;try{["PURCHASE","ADD_TO_CART"].includes(l.action_type)&&l.action_param&&dt(l.action_param,"value")&&("number"!=typeof(null==(s=l.action_param)?void 0:s.value)?m.warn("通过SDK上报的".concat(l.action_type,"行为携带的金额参数需要为数字!")):(null==(c=l.action_param)?void 0:c.value)<=0?m.warn("通过SDK上报的".concat(l.action_type,"行为携带的金额参数需要大于0!")):"minigame"===p&&(null==(u=l.action_param)?void 0:u.value)<100&&m.warn("通过SDK上报的".concat(l.action_type,"行为携带的金额参数可能有误,金额的单位为‘分’,请检查金额是否正确!").concat(Nn)))}catch(l){m.error(l)}}else if("miniprogram"===t){var f=e;try{var d=null==f?void 0:f.action_type,h=(null==f?void 0:f.action_param)||{};"PURCHASE"===d&&dt(h,"value")&&("number"!=typeof(null==h?void 0:h.value)?m.warn("通过SDK上报的".concat(d,"行为携带的金额参数需要为数字!")):(null==h?void 0:h.value)<=0&&m.warn("通过SDK上报的".concat(d,"行为携带的金额参数需要大于0!")))}catch(d){m.error(d)}}}}catch(e){m.error(e)}}function xn(e){try{e&&!/^[a-zA-Z0-9_\-]+$/.test(e)&&m.warn("通过SDK上报的openid:".concat(e,"可能有误,请检查openid是否正确!").concat(Nn))}catch(e){m.error(e)}}function Mn(e,t,n,i){for(var r,o=1n?m.error("监测到超过".concat(n,"的上报日志:").concat(e," ").concat(t)):(i=!(null==t||!t[Gn]),n=this.createAction(e,t||{},i),"release"!==(null==(e=Ke())?void 0:e.envVersion)&&Dn(n,"minigame"),null!=(t=this.queueManage)&&t.addAction(n),null!=(i=this.actionReporter)&&i.batchSend()))}},{key:"flush",value:function(){var e;null!=(e=this.actionReporter)&&e.flushSend()}},{key:"setOpenId",value:function(e){var t;e&&"string"==typeof e?(this.openid=e,this.gameInfo.ad_trace_id&&!a.getSync(Ge)&&k.publish("START_APP"),this.flush(),this.saveValidOpenidToStorage(),"release"!==(null==(t=Ke())?void 0:t.envVersion)&&xn(e)):m.error("openid 格式错误")}},{key:"setUnionId",value:function(e){e&&"string"==typeof e?(this.unionid=e,this.flush()):m.error("unionid 格式错误")}},{key:"setUserUniqueId",value:function(e){e&&"string"==typeof e?this.user_unique_id=e:m.error("user_unique_id 格式错误")}},{key:"doReportOnEnterBackground",value:function(){var t=this;wx.onHide(function(){var e;null!=(e=t.actionReporter)&&e.flushSend(),null!=(e=t.queueManage)&&e.reportLostNum()})}},{key:"getTrackBaseInfo",value:function(){var t,n,e=Ke();return Object.assign({},this.deviceInfo,(t=this.config,n={},["user_action_set_id","appid","openid","secret_key","user_unique_id","unionid"].forEach(function(e){dt(t,e)&&(n[e]=t[e])}),n),{local_id:He(),sdk_name:this.sdk_name,sdk_version:this.sdk_version,openid:this.openid||Be(),unionid:this.unionid,user_unique_id:this.user_unique_id,inner_param:{app_env_version:e.envVersion,app_version:e.version}})}},{key:"createAction",value:function(e,t){var n=2=r.maxSdkInstance?m.error("初始化超过上限"):(i=function(e){{if(ot(e)){var t,n=["user_action_set_id","secret_key","appid","openid","unionid","user_unique_id","auto_track","auto_attr"];for(t in e)n.includes(t)||m.warn("Invalid property '".concat(t,"' found in config"));return"number"!=typeof e.user_action_set_id?"user_action_set_id 参数需为 number 类型":e.user_action_set_id<=0?"user_action_set_id 参数需大于 0":"string"!=typeof e.secret_key?"secret_key 参数需为 string 类型":""===e.secret_key.trim()?"缺少 secret_key 参数":32!==e.secret_key.length?"secret_key 参数需为 32 位字符串":"string"!=typeof e.appid?"appid 参数需为 string 类型":""!==e.appid.trim()||"缺少 appid"}return"初始化参数需为 object 类型"}}(e),n=Ke(),!0!==i?m.error(i):(i=null==n?void 0:n.appId)&&i!==e.appid?m.error("初始化失败,传入的appid与当前小游戏appid不一致"):(dt(t.config=e,"auto_track")||(t.config.auto_track=v.autoTrack),t.openid=e.openid,t.unionid=e.unionid,t.user_unique_id=e.user_unique_id,t.saveValidOpenidToStorage(),i=e.user_action_set_id,$n[qn].includes(i)?m.error("请勿重复初始化SDK"):(t.reportLog=t.reportLog.bind(Se(t)),t.getTrackBaseInfo=t.getTrackBaseInfo.bind(Se(t)),t.deviceInfo=Ve(),t.gameInfo=vt(),t.session_id=st(),t.queueManage=new _({userActionSetId:i,maxLength:r.maxQueueLength,ogEvents:Et}),t.actionReporter=new An({getBaseInfo:t.getTrackBaseInfo,reportLog:t.reportLog,queueManager:t.queueManage,configManager:Mt}),t.inited=!0,$n[qn].push(i),t.useAutoTrack(),t.doReportOnEnterBackground(),"release"===(null==n?void 0:n.envVersion)?m.info("初始化成功"):(r={conf_name:"mini_game_sdk_common",conf_key:"version",sdk_version:t.sdk_version,default_download_url:"https://sr-home-1257214331.cos.ap-guangzhou.myqcloud.com/sdk/dn-sdk-minigame/dn-sdk-minigame.zip",fail_handler:function(){t.inited=!1}},o=r.sdk_version,a=r.default_download_url,s=r.fail_handler,Xe({conf_name:r.conf_name,conf_key:r.conf_key}).then(function(e){var t,n,i,r;if(ot(e))return t=null==e?void 0:e.blackVersions,n=null==e?void 0:e.minVersion,i=null==e?void 0:e.bestVersion,e=null==e?void 0:e.downloadUrl,r=a,e&&/^https/.test(e)&&(r=e),u(t)&&-1<(null==t?void 0:t.indexOf(o))?(null!=s&&s(),void m.error("初始化失败!当前SDK版本存在兼容问题,请尽快升级至最新版!下载地址:".concat(r))):n&&ct(o,n)<0?(null!=s&&s(),void m.error("初始化失败!当前SDK版本过低,请尽快升级至最新版!下载地址:".concat(r))):(i&&ct(o,i)<0&&m.warn("新版本SDK已上线,强烈建议您升级至最新版,尽早享受新特性!下载地址:".concat(r)),void m.info("初始化成功"));m.info("初始化成功")}).catch(function(){m.info("初始化成功")}),Pn.requestActionList(),xn(e.openid)))))):m.error("SDK只可以用在微信小游戏中使用"),be(t)}x[qn]=[],Mn([o,yt],x.prototype,"track",1),Mn([o,yt],x.prototype,"flush",1),Mn([o],x.prototype,"setOpenId",1),Mn([o],x.prototype,"setUnionId",1),Mn([o],x.prototype,"setUserUniqueId",1),Mn([o],x.prototype,"doReportOnEnterBackground",1),Mn([o],x.prototype,"getTrackBaseInfo",1),Mn([o],x.prototype,"useAutoTrack",1);var Jn=function(){function s(e,t,n,i,r,o,a){f(this,s),this.data=e,this.serverUrl=t,this.callback=a,this.debugMode=r,this.platFormName=o,this.tryCount=I.isNumber(n)?n:1,this.permissionTryCount=6,this.timeout=I.isNumber(i)?i:3e3,this.taClassName="HttpTask"}return d(s,[{key:"run",value:function(){var e,n=this,t=I.createExtraHeaders(),i=(t["content-type"]="application/json","debug"===this.debugMode&&(t["Turbo-Debug-Mode"]=1),"GravityEngine_ali_game"===this.platFormName?"headers":"header"),r=S.request((U(e={url:this.serverUrl,method:"POST",data:this.data},i,t),U(e,"success",function(e){var t;0===(null==e||null==(t=e.data)?void 0:t.code)?n.onSuccess(e):n.onFailed(e)}),U(e,"fail",function(e){n.onFailed(e)}),e));setTimeout(function(){if((I.isObject(r)||I.isPromise(r))&&I.isFunction(r.abort))try{r.abort()}catch(e){}},this.timeout)}},{key:"onSuccess",value:function(e){var t,n;200===e.statusCode?(n="Data Verified",null!=e&&null!=(t=e.data)&&null!=(t=t.extra)&&null!=(t=t.errors)&&t.length&&(n=e.data.extra.errors),this.callback({code:null==e||null==(t=e.data)?void 0:t.code,msg:n})):this.callback({code:(null==e?void 0:e.statusCode)||-3,msg:e.statusCode})}},{key:"onFailed",value:function(e){var t,n=this;0<--this.tryCount?setTimeout(function(){n.run()},1e3):this.callback({code:-3,msg:"".concat(null==e||null==(t=e.data)?void 0:t.msg,":").concat(null==e||null==(t=e.data)||null==(e=t.extra)?void 0:e.error)})}}]),s}(),Vn=new(function(){function e(){f(this,e),this.items=[],this.isRunning=!1,this.showDebug=!1}return d(e,[{key:"enqueue",value:function(e,t,n){var i=!(3 0) { + this.uid_Number.string = cc.fx.GameConfig.GM_INFO.userId + ""; + } + } + + start() { + // ... 已有代码 ... + + + } + +} diff --git a/assets/Script/Uid.ts.meta b/assets/Script/Uid.ts.meta new file mode 100644 index 0000000..6f465bc --- /dev/null +++ b/assets/Script/Uid.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "7ec7c31d-8d85-4008-9668-9a349e3fac1a", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Wall.ts b/assets/Script/Wall.ts new file mode 100644 index 0000000..b960633 --- /dev/null +++ b/assets/Script/Wall.ts @@ -0,0 +1,380 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "./Map"; +import NumberToImage from "./NumberToImage"; + +const { ccclass, property } = cc._decorator; + +export enum WallSpecial { + /*普通门*/ + "普通门" = 0, + /*星星门*/ + "星星门" = 1, + /*开关门*/ + "开关门" = 2, + /*冻结门 */ + "冻结门" = 3, + /*冻结门 */ + "旋转门顺时针" = 4, + /*旋转门逆时针*/ + "旋转门逆时针" = 5, +} + +export enum WallType { + + /*普通地块 */ + "门横向下" = 0, + /*起点地块 */ + "门横向上" = 1, + /*湿地 */ + "门竖向右" = 2, + /*山峰 */ + "门竖向左" = 3, + /*终点地块 */ + "墙横向下" = 4, + /*息壤 */ + "墙横向上" = 5, + /*加固 */ + "墙竖向右" = 6, + /*加固 */ + "墙竖向左" = 7, +} + +export enum WallColor { + /*普通地块 */ + "紫色" = 0, + /*湿地 */ + "黄色" = 1, + /*山峰 */ + "绿色" = 2, + /*终点地块 */ + "蓝色" = 3, + /*息壤 */ + "粉色" = 4, + /*加固 */ + "橘黄色" = 5, + /*加固 */ + "青色" = 6, + /*加固 */ + "白色" = 7, + /*普通地块 */ + "红色" = 8, + /*普通地块 */ + "灰色" = 9, +} + +@ccclass +export default class Wall extends cc.Component { + + @property(cc.Label) + number: cc.Label = null; + + @property({ + tooltip: '墙或者门的方向', + type: cc.Enum(WallType), + }) + type: WallType = WallType.墙横向下; + + @property({ + tooltip: '墙或者门的方向', + type: cc.Enum(WallSpecial), + }) + special: WallSpecial = WallSpecial.普通门; + + @property({ + tooltip: '门的颜色', + type: cc.Enum(WallColor), + }) + color: WallColor = WallColor.紫色; + + @property(cc.SpriteAtlas) + wall_SpriteFrames: cc.SpriteAtlas = null; + + @property(cc.SpriteAtlas) + down_SpriteFrames: cc.SpriteAtlas = null; + + @property(cc.Prefab) + freezeSpine: cc.Prefab = null; + + + posX: number; + posY: number; + direction: any; + wall_Info: any; + openNode: cc.Node; + revolvingNode: cc.Node; + freezeNode: cc.Node; + open: boolean; + freezeNumber: number; + num: number; + + + // LIFE-CYCLE CALLBACKS: + + // onLoad () {} + + start() { + // console.log(this.type); + } + + jsonDeepClone(obj: T): T { + return JSON.parse(JSON.stringify(obj)); + } + + init(wall_Info, posX: number, posY: number, direction: any) { + + this.wall_Info = this.jsonDeepClone(wall_Info); + // this.open = true; + if (wall_Info == null) { + this.posX = posX; + this.posY = posY; + + if (direction) this.direction = direction; + // console.log("门方向赋值",direction); + if (direction == "up") { + this.node.parent.zIndex = 100 + this.posX - this.posY * 3; + } + else if (direction == "down" || direction == "right") { + this.node.parent.zIndex = 20 + this.posX - this.posY * 3; + } + else if (direction == "downleft" || direction == "downright" || direction == "rightup" + || direction == "rightdown") { + this.node.parent.zIndex = 20 + this.posX - this.posY * 3; + } + else if (direction == "left" || direction == "leftup" || direction == "upleft") { + this.node.parent.zIndex = 70 + this.posX - this.posY * 3; + } + else if (direction == "leftdown" || direction == "upright") { + this.node.parent.zIndex = 100 + this.posX - this.posY * 3; + } + else this.node.parent.zIndex = 70 + this.posX - this.posY * 3; + + MapConroler._instance.mapBlocksWall[this.posX][this.posY].getComponent("MapBlock").block_Id = "Wall"; + //console.log(this.posX,this.posY,MapConroler._instance.mapBlocksWall[this.posX][this.posY].getComponent("MapBlock").block_Id); + // console.log(this.posX,this.posY,this.node.zIndex); + //this.node.getChildByName("num").getComponent(cc.Label).string = direction; + //this.node.getChildByName("num").getComponent(cc.Label).string = ":" + this.node.parent.zIndex; + } + if (wall_Info != null) { + this.color = this.wall_Info.color; + this.special = this.wall_Info.special; + this.num = this.wall_Info.num; + let name2 = "rotate" + this.wall_Info.length; + this.revolvingNode = this.node.parent.getChildByName("revolving").getChildByName(name2); + if (this.revolvingNode) { + this.revolvingNode.parent.zIndex = 999; + this.revolvingNode.active = false; + } + this.initType(); + if (this.wall_Info.length > 0) { + this.initColor(this.wall_Info.length); + MapConroler._instance.wall_Pass.push(this); + } + else this.node.removeComponent("cc.Sprite"); + if (this.posX != null) { + MapConroler._instance.mapBlocksWall[this.posX][this.posY].getComponent("MapBlock").block_Id = "Wall"; + //console.log(this.posX,this.posY,MapConroler._instance.mapBlocksWall[this.posX][this.posY].getComponent("MapBlock").block_Id); + } + } + // setTimeout(() => { + // this.node.getChildByName("num").getComponent(cc.Label).string = ":" + this.node.parent.zIndex; + // }, 1000); + + } + + //创建门的颜色 + initColor(length: number) { + let direction = this.node.parent.name; + let double = 0; + if (direction == "left" || direction == "right") { + double = 3; + } + + // debugger; + if (this.wall_SpriteFrames) { + let name = this.color + "color" + (length + double); + var spriteFrame = this.wall_SpriteFrames._spriteFrames[name]; + if (this.node.getComponent(cc.Sprite)) this.node.getComponent(cc.Sprite).spriteFrame = spriteFrame; + if (this.node.getChildByName("icon")) this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + } + if (this.down_SpriteFrames) { + let name2 = this.color + "down" + (length + double); + var downFrame = this.down_SpriteFrames._spriteFrames[name2]; + this.node.parent.getChildByName("down").getComponent(cc.Sprite).spriteFrame = downFrame; + } + } + + //创建特殊类型门 + initType() { + switch (this.special) { + case WallSpecial.星星门: + let star = cc.instantiate(MapConroler._instance.Block_Prop[this.special]); + star.parent = this.node.parent; + // console.log("门的方向",this.direction,"长度",this.wall_Info.length); + // star.scaleX = star.scaleY = 0.5; + if (this.wall_Info.length > 0) { + if (this.direction == "right" || this.direction == "left") { + star.children[this.wall_Info.length + 2].active = true; + } + else if (this.direction == "up" || this.direction == "down") { + star.children[this.wall_Info.length - 1].active = true; + } + } + star.setPosition(this.node.width / 2 + this.node.x, this.node.height / 2 + this.node.y); + break; + case WallSpecial.开关门: + let name = "open" + this.wall_Info.length; + this.openNode = this.node.parent.getChildByName("open").getChildByName(name); + this.openNode.active = true; + if (this.wall_Info.lock == false) { + this.open = true; + this.openNode.children[0].scaleX *= 0.01; + this.openNode.children[1].scaleX *= 0.01; + } + else { + this.open = false; + } + break; + case WallSpecial.冻结门: + let freeze = "freeze" + this.wall_Info.length; + this.freezeNode = this.node.parent.getChildByName("freeze").getChildByName(freeze); + this.freezeNode.active = true; + + if (this.wall_Info.freeze) { + this.freezeNumber = this.wall_Info.freeze; + NumberToImage.numberToImageNodes(this.freezeNumber, 20, 8, "lock_", this.freezeNode.getChildByName("num"), false); + } + break; + case WallSpecial.旋转门顺时针: case WallSpecial.旋转门逆时针: + if (this.wall_Info.length > 0) { + // let name2 = "rotate" + this.wall_Info.length; + // this.revolvingNode = this.node.parent.getChildByName("revolving").getChildByName(name2); + this.revolvingNode.active = true; + // if (this.special == WallSpecial.旋转门逆时针) { + // this.revolvingNode.children[0].scaleX = -this.revolvingNode.children[0].scaleX; + // } + } + + break; + } + } + + //播放星星门通过 + playStarDoor() { + if (this.node.parent.getChildByName("star")) { + let star = this.node.parent.getChildByName("star"); + for (let i = 0; i < star.children.length; i++) { + if (star.children[i].active == true) { + let starChild = star.children[i]; + for (let j = 0; j < starChild.children.length; j++) { + starChild.children[j].active = true + starChild.children[j].getComponent(sp.Skeleton).setAnimation(1, "taopao1", false); + } + } + } + } + } + + + //改变开关门状态 + changeLock() { + this.open = !this.open; + console.log("开关门状态改变", this.open); + if (!this.openNode.active) { + this.openNode.active = true; + } + + + let fill = this.openNode.children[0].scaleX == 1 ? 0.01 : 1; + if (this.openNode.children[0].scaleX < 0) fill = -fill; + // console.log("目标",fill); + + cc.tween(this.openNode.children[0]) + .to(0.3, { scaleX: this.openNode.children[0].scaleX < 0 ? -fill : fill }) + .call(() => { + // console.log("左边完成"); + }) + .start(); + + cc.tween(this.openNode.children[1]) + .to(0.3, { scaleX: this.openNode.children[1].scaleX < 0 ? -fill : fill }) + .call(() => { + // console.log("右边完成"); + }) + .start(); + } + + changeFreeze() { + this.freezeNumber -= 1; + if (this.freezeNumber == 0) { + console.log(this.node.uuid); + // this.freezeNode.parent.active = false; + this.resetFreeze(); + } + else { + NumberToImage.numberToImageNodes(this.freezeNumber, 20, 8, "lock_", this.freezeNode.getChildByName("num"), false); + } + } + + downDoor() { + if (this.openNode) { + if (this.openNode.children[0].scaleX == 1) + return; + } + if (this.freezeNode) { + if (this.freezeNode.active == true) + return; + } + if (this.special == 4 || this.special == 5) { + return; + } + + this.node.opacity = 0; + if (this.special == WallSpecial.星星门) { + this.node.parent.getChildByName("star").y -= 10; + } + this.node.parent.getChildByName("down").active = true; + } + + upDoor() { + if (this.special == WallSpecial.星星门) { + this.node.parent.getChildByName("star").y += 10; + } + this.node.parent.getChildByName("down").active = false; + this.node.opacity = 250; + } + + resetFreeze() { + this.special = 0; + if (this.freezeNode) { + this.freezeNode.active = false; + } + // if (this.wall_Info.length != 0) { + // let spine = cc.instantiate(this.freezeSpine); + // spine.parent = this.node.parent; + // spine.setPosition(this.node.width / 2 + this.node.x + 60 / 2 * (this.wall_Info.length - 1), this.node.height / 2 + this.node.y); + // spine.getComponent(sp.Skeleton).setAnimation(1, "bingkuai", false); + // console.log("添加一个动画", spine.getPosition()); + // } + } + + changeRevolvingWall() { + if (this.revolvingNode) { + // console.log("自身编号", this.wall_Info.num, this.special); + if (this.special == WallSpecial.旋转门顺时针 || this.special == WallSpecial.旋转门逆时针) { + this.revolvingNode.active = true; + } + else { + this.revolvingNode.active = false; + } + } + + } + + // update (dt) {} +} diff --git a/assets/Script/Wall.ts.meta b/assets/Script/Wall.ts.meta new file mode 100644 index 0000000..e2c1b60 --- /dev/null +++ b/assets/Script/Wall.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "87a449b9-7ffa-4f00-a22b-b3202b4abfd5", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/Window.ts b/assets/Script/Window.ts new file mode 100644 index 0000000..76acba8 --- /dev/null +++ b/assets/Script/Window.ts @@ -0,0 +1,86 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +const {ccclass, property} = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + can_Touch: boolean; + + // LIFE-CYCLE CALLBACKS: + + onLoad () { + this.can_Touch = false; + } + + start () { + + } + + init(data){ + this.can_Touch = false; + this.node.getChildByName("win").active = false; + this.node.getChildByName("lose").active = false; + this.node.getChildByName("finishi").active = false; + this.node.getChildByName(data.result).active = true; + if(data.result == "lose"){ + this.setErrLabel(data.code); + } + var target = this.node.getChildByName(data.result); + target.getChildByName("btn").active = false; + target.opacity = 0; target.scale = 2;target.getChildByName("tip").opacity = 0; + if(data.result == "win"){ + var lianXi = false; + if(cc.fx.GameConfig.GM_INFO.level == 2) lianXi = true; + target.getChildByName("yes").active = !lianXi; + target.getChildByName("start").active = lianXi; + } + cc.tween(target) + .delay(0.1) + .to(0.25,{opacity:255,scale:1}) + .delay(0.3) + .call(()=>{ + if(target.name == "lose"){ + cc.tween(target.getChildByName("tip")) + .to(0.5,{opacity:255}) + .delay(0.5) + .call(() =>{ + this.can_Touch = true; + target.getChildByName("btn").active = true; + }) + .start(); + } + else{ + this.can_Touch = true; + target.getChildByName("btn").active = true; + } + + }) + .start(); + } + + setErrLabel(code){ + var tip = this.node.getChildByName("lose").getChildByName("tip").getComponent(cc.Label); + tip.string = cc.fx.GameConfig.TIP_ERR[code]; + } + + click_Next(){ + if(!this.can_Touch){ + return; + } + this.can_Touch = false; + cc.tween(this.node) + .to(0.3,{opacity:0}) + .call(() =>{ + this.node.active = false; + cc.director.loadScene("GameScene"); + }) + .start(); + } + + // update (dt) {} +} diff --git a/assets/Script/Window.ts.meta b/assets/Script/Window.ts.meta new file mode 100644 index 0000000..fa68e00 --- /dev/null +++ b/assets/Script/Window.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "3bad2bb2-3b0e-4ccc-bab7-6f983d6879f6", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/btnControl.ts b/assets/Script/btnControl.ts new file mode 100644 index 0000000..e5a6105 --- /dev/null +++ b/assets/Script/btnControl.ts @@ -0,0 +1,26 @@ + + + +const {ccclass, property} = cc._decorator; + + +@ccclass +export default class btnControl extends cc.Component { + static _instance: any; + _touch: boolean; + + + onLoad () { + this._touch = true; + } + + start () { + } + + setTouch(type){ + this._touch = type; + } + + update (dt) { + } +} diff --git a/assets/Script/btnControl.ts.meta b/assets/Script/btnControl.ts.meta new file mode 100644 index 0000000..1057771 --- /dev/null +++ b/assets/Script/btnControl.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "6ee6ccc9-e1e5-4d6f-815e-8aaa6ce5221a", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/gameOverUi.ts b/assets/Script/gameOverUi.ts new file mode 100644 index 0000000..2516652 --- /dev/null +++ b/assets/Script/gameOverUi.ts @@ -0,0 +1,71 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import JiaZai from "./JiaZai"; +import MapConroler from "./Map"; +import SceneManager from "./SceneManager"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + + +const { ccclass, property } = cc._decorator; + + +@ccclass +export default class gameOverUi extends cc.Component { + static _instance: any; + time: number = 0; + + @property(cc.Node) + music: cc.Node = null; + + @property(cc.Node) + effect: cc.Node = null; + + @property(cc.Node) + vibrate: cc.Node = null; + + @property(cc.Node) + exit: cc.Node = null; + + @property(cc.Node) + win: cc.Node = null; + + musicState: boolean = true; + effectState: boolean = true; + vibrateState: boolean = true; + onLoad() { + this.node.on(cc.Node.EventType.TOUCH_START, this.touchStart, this); + this.node.on(cc.Node.EventType.TOUCH_MOVE, this.touchMove, this); + this.node.on(cc.Node.EventType.TOUCH_CANCEL, this.touchEnd, this); + this.node.on(cc.Node.EventType.TOUCH_END, this.touchEnd, this); + } + + start() { + } + + touchStart(event: cc.Event.EventTouch) { + this.node.parent.opacity = 0; + } + + touchMove(event: cc.Event.EventTouch) { + this.node.parent.opacity = 0; + } + + touchEnd(event: cc.Event.EventTouch) { + this.node.parent.opacity = 255; + } + + + //关闭ui + closeUi() { + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + this.node.active = false; + } + + // update (dt) {} +} diff --git a/assets/Script/gameOverUi.ts.meta b/assets/Script/gameOverUi.ts.meta new file mode 100644 index 0000000..6eeac75 --- /dev/null +++ b/assets/Script/gameOverUi.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "2a16acf0-1785-40ea-83c0-e027582e4ea4", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/heathnum.ts b/assets/Script/heathnum.ts new file mode 100644 index 0000000..ceca27c --- /dev/null +++ b/assets/Script/heathnum.ts @@ -0,0 +1,146 @@ +import NumberToImage from "./NumberToImage"; +import JiaZai from "./JiaZai"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + //商店界面 + @property(cc.Node) + heath: cc.Node = null; + //体力数量 + @property(cc.Node) + heatht: cc.Node = null; + //切换的节点 + @property([cc.Node]) + switchNode: cc.Node[] = []; + //倒计时健康回复 + @property(cc.Node) + timeNode: cc.Node = null; + //切换的按钮数组 + @property([cc.Node]) + switchButtons: cc.Node[] = []; + //金币花费数 + @property(cc.Node) + coin: cc.Node = null; + + btn_Touch: boolean = true; + + onLoad() { + this.btn_Touch = true; + } + start() { + this.btn_Touch = true; + this.openPop(); + } + //打开商店界面 + openPop() { + // console.log("打开heath弹窗", cc.fx.GameConfig.GM_INFO.hp); + + //NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 30, 15, "time_", this.coin, true); + } + startGame() { + // 获取场景中的 JiaZai 组件 + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + if (jiazaiNode) { + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + jiazaiComp.startGame(); + } else { + console.warn("JiaZai 组件未找到"); + } + } else { + console.warn("JiaZai 节点未找到"); + } + this.closePop(); + } + + //购买体力 + buyHeath() { + if (!this.btn_Touch) { + return; + } + this.btn_Touch = false; + //获取当前体力 + let curHeath = cc.fx.GameConfig.GM_INFO.hp; + //获取当前金币 + let curCoin = cc.fx.GameConfig.GM_INFO.coin; + if (curCoin >= 1000) { + this.switchButtons[1].active = false; + cc.fx.GameTool.changeCoin(-1000); + const data = { + change_reason: "首页购买体力", + id: (1001 + ""), + num: -1000 + } + cc.fx.GameTool.shushu_Track("resource_cost", data); + cc.fx.GameConfig.GM_INFO.hp = cc.fx.GameConfig.GM_INFO.hp_Max; + cc.fx.GameConfig.GM_INFO.min_Time = 0; + const parentNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + if (parentNode) { + const jiazaiComp = parentNode.getComponent(JiaZai); + if (jiazaiComp) { + jiazaiComp.setHealthInfo(false); + jiazaiComp.updateCoin(); + } + } + this.switchButtons[0].active = true; + cc.fx.GameTool.setUserHealth(0, (data) => { + cc.fx.GameTool.getHealth(null); + }) + const buyData = { + item_id: "refill_health", + item_num: 3, + item_price: 1000, + cost_type: "gold" + } + // console.log("____________即将上传Shop_buy", buyData); + cc.fx.GameTool.shushu_Track("shop_buy", buyData); + + } + else { + MiniGameSdk.API.showToast("金币不足,无法购买体力"); + setTimeout(() => { + this.btn_Touch = true; + this.openShop(); + }, 500); + } + } + + //金币不够购买金币 + openShop() { + //获取场景中的 JiaZai 组件 + const parentNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + if (parentNode) { + const jiazaiComp = parentNode.getComponent(JiaZai); + if (jiazaiComp) { + jiazaiComp.openShop(); + } + } + } + + //关闭弹窗 + closePop() { + this.btn_Touch = true; + //销毁预制体 + // console.log("关闭heath弹窗"); + //关闭计时器 + // 获取场景中的 JiaZai 组件 + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + if (jiazaiNode) { + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + jiazaiComp.stopHeathTimeCutDown(); + } else { + console.warn("JiaZai 组件未找到"); + } + } else { + console.warn("JiaZai 节点未找到"); + } + this.heath.destroy(); + } + + // update (dt) {} +} diff --git a/assets/Script/heathnum.ts.meta b/assets/Script/heathnum.ts.meta new file mode 100644 index 0000000..53b62db --- /dev/null +++ b/assets/Script/heathnum.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "6624f85c-b85e-4317-aee0-cd25625a1455", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base.meta b/assets/Script/lq_base.meta new file mode 100644 index 0000000..9856abc --- /dev/null +++ b/assets/Script/lq_base.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "b6fd3869-f3bc-4fcb-9660-e4cbe0824ad3", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/data.meta b/assets/Script/lq_base/data.meta new file mode 100644 index 0000000..4231bcf --- /dev/null +++ b/assets/Script/lq_base/data.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "6413d7ad-bfc3-4b8c-bc1c-c1d819e9d892", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/data/lq_const.ts b/assets/Script/lq_base/data/lq_const.ts new file mode 100644 index 0000000..4639cf9 --- /dev/null +++ b/assets/Script/lq_base/data/lq_const.ts @@ -0,0 +1,71 @@ +import Vec2 = cc.Vec2; + +export enum LQRecordStatus { + Idle, Start, Pause +} + +export enum LQBulletEmitterStatus { + Idle, Start, End +} + +export enum LQCollideShape { + Rect = 1, Circle, Polygon +} + +export enum LQFollowTargetMode { + Always, Once, Pass +} + +export enum LQCollideStatus { + Idle, Live +} + +export enum LQEasing { + BackIn = 'backIn', BackOut = 'backOut', quadIn = 'quadIn', + quadOut = 'quadOut', quadInOut = 'quadInOut', cubicIn = 'cubicIn', expoOut = 'expoOut' +} + +export enum LQHttpRequestType { + Get = 'get', Post = 'post' +} + +export enum LQHttpDataType { + Text, Binary +} + +export enum LQPlatformType { + unknown = '未知平台', all = '全平台', wx = '微信', tt = '字节跳动', oppo = 'oppo', vivo = 'vivo', qq = 'qq', baidu = '百度', kwaigame = '快手', android = '安卓', ios = '苹果', browser = '浏览器' +} + +export enum LQByteDanceType { + tt = '头条', tt_lite = '头条极速版', douyin = '抖音', douyin_lite = '抖音极速版', ppx = '皮皮虾', devtools = '字节开发工具' +} + +export enum LQAnalysisTag { + VideoComplete = 'video_complete', VideoBegin = 'video_begin', VideoInterrupt = 'video_interrupt', InterstitialShow = 'interstitial_show', BannerShow = 'banner_show', ExportShow = 'export_show', NativeShow = 'native_show', NativeClick = 'native_show' +} + +export enum LQCallBase { + InitSdk, KeepScreenOn, Vibrate, GetVersionCode, GetVersionName, OpenUrl, DeleteDir, DeleteFile +} + +export enum LQCallAd { + ShowBanner, HideBanner, ShowVideo, ShowInterstitial, ShowNative, CacheAd +} + +export enum LQAdErrStr { + Unsupported = '不支持', NoParameters = '没有配置参数', NoAD = '暂无广告', VersionOld = '版本过低', VideoInterrupt = '中断播放', InstanceErr = '实例为空', AlreadyExist = '已经存在', IntervalTooShort = '间隔太短' +} + +export enum LQLevelStatus { + Begin, Failed, Complete +} + +export enum LQOperateType { + ClickNode, ClickScreen, Move, Null +} + +export class LQConst { + public static VEC_ZERO = Vec2.ZERO; +} + diff --git a/assets/Script/lq_base/data/lq_const.ts.meta b/assets/Script/lq_base/data/lq_const.ts.meta new file mode 100644 index 0000000..78298f4 --- /dev/null +++ b/assets/Script/lq_base/data/lq_const.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "9830980f-5d4c-4417-acc1-7bd7bbe4a9db", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/data/lq_data.ts b/assets/Script/lq_base/data/lq_data.ts new file mode 100644 index 0000000..5250740 --- /dev/null +++ b/assets/Script/lq_base/data/lq_data.ts @@ -0,0 +1,118 @@ +import {IPos, IRect} from "./lq_interface"; +import Vec2 = cc.Vec2; +import Rect = cc.Rect; +import Sprite = cc.Sprite; +import Label = cc.Label; +import Node = cc.Node; + +export class LQRect implements IRect { + public x: number; + public y: number; + public width: number; + public height: number; + public half_width: number; + public half_height: number; + + constructor(x: number, y: number, width: number, height: number) { + this.x = x; + this.y = y; + this.width = width; + this.height = height; + this.half_width = width * 0.5; + this.half_height = height * 0.5; + } + + public top_left(): Vec2 { + return new Vec2(this.x - this.half_width, this.y + this.half_height); + } + + public top_right(): Vec2 { + return new Vec2(this.x + this.half_width, this.y + this.half_height); + } + + public bottom_left(): Vec2 { + return new Vec2(this.x - this.half_width, this.y - this.half_height); + } + + public bottom_right(): Vec2 { + return new Vec2(this.x + this.half_width, this.y - this.half_height); + } + + public pos(): cc.Vec2 { + return new Vec2(this.x, this.y); + } + + public sub(pos: IPos): Vec2 { + return new Vec2(pos.x - this.x, pos.y - this.y); + } + + public add(pos: IPos): Vec2 { + return new Vec2(pos.x + this.x, pos.y + this.y); + } + + public to_cocos_rect() { + return new Rect(this.x - this.half_width, this.y - this.half_height, this.width, this.height); + } +} + +export class LQNativeComponent { + public node_btn_arr: Node[] = []; + public sprite_logo!: Sprite; + public sprite_img!: Sprite; + public sprite_ad_tip!: Sprite; + public label_title!: Label; + public label_desc!: Label; +} + +export class LQShareData { + public title!: string; + public remote_url!: string; + public url_id!: string; + public query!: string; + public content!: string; + public extra!: any; + public type!: string; + + constructor(obj?: { title?: string, remote_url?: string, url_id?: string, query?: string, content?: string, extra?: any, type?: string }) { + if (obj.title) { + this.title = obj.title; + } + if (obj.remote_url) { + this.remote_url = obj.remote_url; + } + if (obj.url_id) { + this.url_id = obj.url_id; + } + if (obj.query) { + this.query = obj.query; + } + if (obj.content) { + this.content = obj.content; + } + if (obj.extra) { + this.extra = obj.extra; + } + if (obj.type) { + this.type = obj.type; + } + } +} + +export class LQPlatformData { + public app_id!: string; + public print_log!: boolean; + public show_share_menu!: boolean; + public keep_screen_on!: boolean; + public banner_id!: string; + public banner_width!: number; + public interstitial_id!: string; + public native_id!: string; + public video_id!: string; + public is_video_free!: boolean; + public is_cache_video!: boolean; + public ad_type!: string; + public ad_id!: string; + public ad_key!: string; + public switch_ad!: boolean; + public share_data_arr!: LQShareData[]; +} \ No newline at end of file diff --git a/assets/Script/lq_base/data/lq_data.ts.meta b/assets/Script/lq_base/data/lq_data.ts.meta new file mode 100644 index 0000000..bfec6ec --- /dev/null +++ b/assets/Script/lq_base/data/lq_data.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "a5470d94-355f-4d03-ba58-81077a780e7f", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/data/lq_interface.ts b/assets/Script/lq_base/data/lq_interface.ts new file mode 100644 index 0000000..4a802a3 --- /dev/null +++ b/assets/Script/lq_base/data/lq_interface.ts @@ -0,0 +1,23 @@ +import Vec2 = cc.Vec2; + +export interface IPos { + x: number; + y: number; + + sub(pos: IPos): Vec2; + + add(pos: IPos): Vec2; +} + +export interface IRect { + x: number; + y: number; + width: number; + height: number; + half_width: number; + half_height: number; + + sub(pos: IPos): Vec2; + + add(pos: IPos): Vec2; +} \ No newline at end of file diff --git a/assets/Script/lq_base/data/lq_interface.ts.meta b/assets/Script/lq_base/data/lq_interface.ts.meta new file mode 100644 index 0000000..a69a0c0 --- /dev/null +++ b/assets/Script/lq_base/data/lq_interface.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "41e4557a-fef0-4dcf-97ed-8070a81667a2", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/util.meta b/assets/Script/lq_base/util.meta new file mode 100644 index 0000000..60eb7b4 --- /dev/null +++ b/assets/Script/lq_base/util.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "0432403f-8c23-4a3e-813a-1a9a1d88aeed", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_base_util.ts b/assets/Script/lq_base/util/lq_base_util.ts new file mode 100644 index 0000000..ebfeed3 --- /dev/null +++ b/assets/Script/lq_base/util/lq_base_util.ts @@ -0,0 +1,162 @@ +import {LQPlatformUtil} from "./lq_platform_util"; +import {LQPlatformType} from "../data/lq_const"; +import view = cc.view; +import Vec2 = cc.Vec2; + +export class LQBaseUtil { + // public static readonly unit_arr = ['K', 'M', 'B', 'T']; + + public static has_value(arr: T[], v: T): boolean { + let has = false; + for (let i = 0; i < arr.length; i++) { + if (arr[i] === v) { + has = true; + break; + } + } + return has; + } + + public static get_value_by_duration(percent: number, timeline: Vec2[]): number { + if (timeline.length === 0) { + return 1; + } + let end_index = -1; + for (let i = 1; i < timeline.length; i++) { + if (timeline[i].x > percent) { + end_index = i; + break; + } + } + if (end_index === -1) { + return timeline[timeline.length - 1].y; + } + const start_index = end_index - 1; + return timeline[start_index].y + (timeline[end_index].y - timeline[start_index].y) * ((percent - timeline[start_index].x) / (timeline[end_index].x - timeline[start_index].x)); + } + + public static number_to_counting(num: number): string { + if (num < 1000) { + return num + ''; + } else if (num < 1000000) { + return Math.floor(num / 1000) + 'K'; + } else if (num < 1000000000) { + return Math.floor(num / 1000000) + 'M'; + } else if (num < 1000000000000) { + return Math.floor(num / 1000000000) + 'B'; + } else if (num < 1000000000000000) { + return Math.floor(num / 1000000000000) + 'T'; + } + return Math.floor(num / 1000000000000) + 'T'; + } + + public static number_to_time(time: number): [string, string, string] { + const t = Math.floor(time / (60 * 60)); + time = time - t * 60 * 60; + let hour = t.toString(); + let min = Math.floor(time / 60).toString(); + let sec = (time % 60).toString(); + + if (hour.length === 1) { + hour = '0' + hour; + } + if (min.length === 1) { + min = '0' + min; + } + if (sec.length === 1) { + sec = '0' + sec; + } + return [hour, min, sec]; + } + + public static set_normal_angle(angle: number) { + while (angle > 360) { + angle -= 360; + } + while (angle < 0) { + angle += 360; + } + return angle; + } + + public static compare_version(v1: string, v2: string): number { + let v1_arr = v1.split('.'); + let v2_arr = v2.split('.'); + const len = Math.max(v1_arr.length, v2_arr.length); + + while (v1_arr.length < len) { + v1_arr.push('0'); + } + while (v2_arr.length < len) { + v2_arr.push('0'); + } + for (let i = 0; i < len; i++) { + const num1 = parseInt(v1_arr[i]); + const num2 = parseInt(v2_arr[i]); + + if (num1 > num2) { + return 1; + } else if (num1 < num2) { + return -1; + } + } + return 0; + } + + public static is_today(date: string): boolean { + const d1 = new Date(); + let d2; + if (date && date !== '') { + d2 = new Date(date); + } else { + d2 = new Date(); + d2.setDate(d2.getDate() - 1); + } + return d1.getFullYear() === d2.getFullYear() && d1.getMonth() === d2.getMonth() && d1.getDate() === d2.getDate(); + } + + public static is_safe_area(): boolean { + const cb = (width: number, height: number) => { + return (width === 2280 && height === 1080) || (width === 1792 && height === 828) || (width === 2436 && height === 1125) || (width === 2688 && height === 1242); + }; + switch (LQPlatformUtil.get_platform()) { + case LQPlatformType.baidu: + const sys_info_swan = swan.getSystemInfoSync(); + return cb(sys_info_swan.pixelRatio * sys_info_swan.screenWidth, sys_info_swan.pixelRatio * sys_info_swan.screenHeight); + case LQPlatformType.qq: + const sys_info_qq = qq.getSystemInfoSync(); + return cb(sys_info_qq.pixelRatio * sys_info_qq.screenWidth, sys_info_qq.pixelRatio * sys_info_qq.screenHeight); + case LQPlatformType.tt: + const sys_info_tt = tt.getSystemInfoSync(); + return cb(sys_info_tt.pixelRatio * sys_info_tt.screenWidth, sys_info_tt.pixelRatio * sys_info_tt.screenHeight); + case LQPlatformType.oppo: + case LQPlatformType.vivo: + const sys_info_vivo = qg.getSystemInfoSync(); + return cb(sys_info_vivo.pixelRatio * sys_info_vivo.screenWidth, sys_info_vivo.pixelRatio * sys_info_vivo.screenHeight); + case LQPlatformType.wx: + const sys_info_wx = wx.getSystemInfoSync(); + return cb(sys_info_wx.pixelRatio * sys_info_wx.screenWidth, sys_info_wx.pixelRatio * sys_info_wx.screenHeight); + case LQPlatformType.android: + break; + case LQPlatformType.ios: + let size = view.getFrameSize(); + return cb(size.width, size.height); + } + return false; + } + + public static deep_clone(obj: any) { + if (typeof obj !== 'object') { + return obj; + } + let new_obj = (obj instanceof Array ? [] : {}) as any; + for (let key in obj) { + if (typeof obj[key] === 'object') { + new_obj[key] = this.deep_clone(obj[key]); + } else { + new_obj[key] = obj[key]; + } + } + return new_obj; + } +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_base_util.ts.meta b/assets/Script/lq_base/util/lq_base_util.ts.meta new file mode 100644 index 0000000..a48a52d --- /dev/null +++ b/assets/Script/lq_base/util/lq_base_util.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "cd21fb93-658e-4b3a-8897-b4deba47bc31", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_game_util.ts b/assets/Script/lq_base/util/lq_game_util.ts new file mode 100644 index 0000000..2e8dc34 --- /dev/null +++ b/assets/Script/lq_base/util/lq_game_util.ts @@ -0,0 +1,147 @@ +import SpriteFrame = cc.SpriteFrame; +import director = cc.director; +import tween = cc.tween; +import Texture2D = cc.Texture2D; +import Canvas = cc.Canvas; +import visibleRect = cc.visibleRect; +import find = cc.find; +import Node = cc.Node; + +export class LQGameUtil { + private static image_cache: { [key: string]: SpriteFrame } = {}; + + public static get_image(url: string, callback: (success: boolean, sf: SpriteFrame | undefined) => void, cache = true) { + if (!url || url === '') { + callback(false, undefined); + return; + } + if (this.image_cache[url]) { + callback(true, this.image_cache[url]); + return; + } + // cc.loader.load( + // {url: url, type: 'png'}, + // (err: string, texture: Texture2D | undefined) => { + // if (err) { + // // console.error('err:' + err); + // callback(false, undefined); + // return; + // } + // const frame = new SpriteFrame(texture); + // callback(true, frame); + // if (cache) { + // this.image_cache[url] = frame; + // } + // }); + } + + public static canvas_policy(c: Canvas, width: number, height: number): boolean { + // @ts-ignore + const ratio = visibleRect.height / visibleRect.width; + if (ratio > height / width) { + c.fitHeight = false; + c.fitWidth = true; + } else { + c.fitHeight = true; + c.fitWidth = false; + } + return c.fitHeight; + } + + public static recursion_node_property(node: Node, p: { key: string, value: number }) { + if (node.parent) { + // @ts-ignore + p.value *= node.parent[p.key]; + this.recursion_node_property(node.parent, p); + } + } + + /** + * + * @param path + * eg.'Canvas>node_main>btn_start' + */ + public static find_node(path: string): Node | undefined { + if (!path || path.length <= 0) { + console.warn('路径不正确'); + return undefined; + } + const arr = path.split('/'); + const root = find(arr[0]); + if (!root) { + console.warn('没找到节点:' + arr[0]); + return undefined; + } + let node = root; + for (let i = 1; i < arr.length; i++) { + const temp = node.getChildByName(arr[i]); + if (!temp) { + console.warn('没找到节点:' + arr[i]); + return undefined; + } + node = temp; + } + return node; + } + + public static wait(time: number) { + return new Promise((resolve) => { + tween(director.getScene()).delay(time).call(() => { + resolve(); + }).start(); + }); + } + + public static set_clip(clip: cc.AnimationClip, off: cc.Vec2, flip_x: boolean, flip_y: boolean) { + let s = (arr: number[]) => { + for (let i = 0; i < arr.length; i++) { + if (i % 2 === 0) { + if (flip_x) { + arr[i] = -arr[i]; + } + arr[i] += off.x; + } else { + if (flip_y) { + arr[i] = -arr[i]; + } + arr[i] += off.y; + } + } + }; + const pos_arr = clip.curveData.props.position; + for (let i = 0; i < pos_arr.length; i++) { + const motionPath = pos_arr[i].motionPath; + const value = pos_arr[i].value; + if (motionPath) { + for (let i = 0; i < motionPath.length; i++) { + s(motionPath[i]); + } + } + s(value); + } + } + + public static scroll_layout(layout: cc.Layout, speed: number = 50) { + layout.updateLayout(); + const len = layout.type === cc.Layout.Type.HORIZONTAL ? layout.node.width : layout.node.height; + const time = len / speed; + if (layout.type === cc.Layout.Type.HORIZONTAL) { + let offset = layout.node.anchorX === 1 ? layout.node.width * 0.5 : -layout.node.width * 0.5; + layout.node.runAction(cc.repeatForever(cc.sequence( + cc.moveBy(time, cc.v2(offset, 0)), + cc.callFunc(() => { + layout.node.x -= offset; + }) + ))); + } else if (layout.type === cc.Layout.Type.VERTICAL || layout.type === cc.Layout.Type.GRID) { + let offset = layout.node.anchorY === 1 ? layout.node.height * 0.5 : -layout.node.height * 0.5; + layout.node.runAction(cc.repeatForever(cc.sequence( + cc.moveBy(time, cc.v2(0, offset)), + cc.callFunc(() => { + layout.node.y -= offset; + }) + ))); + } + } + +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_game_util.ts.meta b/assets/Script/lq_base/util/lq_game_util.ts.meta new file mode 100644 index 0000000..5afca6e --- /dev/null +++ b/assets/Script/lq_base/util/lq_game_util.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "63c53081-f5d8-4bfe-9845-38fb537ae17b", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_math_util.ts b/assets/Script/lq_base/util/lq_math_util.ts new file mode 100644 index 0000000..a435ddd --- /dev/null +++ b/assets/Script/lq_base/util/lq_math_util.ts @@ -0,0 +1,48 @@ +import {IPos, IRect} from "../data/lq_interface"; + +export class LQMathUtil { + public static random(min: number, max: number): number { + if (min === max) { + return min; + } else if (min < max) { + return Math.random() * (max - min) + min; + } else { + return Math.random() * (min - max) + max; + } + } + + public static random_int(min: number, max: number): number { + return Math.floor(this.random(min, max)); + } + + public static get_radians(pos: IPos, target_pos: IPos) { + const r = Math.atan2(target_pos.y - pos.y, target_pos.x - pos.x); + return r > 0 ? r : r + 6.28; + } + + public static intersects_rect(r1: IRect, r2: IRect): boolean { + return Math.abs(r1.x - r2.x) < r1.half_width + r2.half_width && Math.abs(r1.y - r2.y) < r1.half_height + r2.half_height; + } + + public static intersects_point_rect(p: IPos, r: IRect): boolean { + return (p.x > r.x - r.width * 0.5) && (p.x < r.x + r.width * 0.5) && (p.y > r.y - r.height * 0.5) && (p.y < r.y + r.height * 0.5); + } + + public static intersects_point_circle(p1: IPos, p2: IPos, r: number) { + return p1.sub(p2).magSqr() < r * r; + } + + public static intersects_circle(p1: IPos, r1: number, p2: IPos, r2: number) { + return p1.sub(p2).mag() < r1 + r2; + } + + public static intersects_circle_rect(p: IPos, r: number, rect: IRect) { + const relative_x = p.x - rect.x; + const relative_y = p.y - rect.y; + const dx = Math.min(relative_x, rect.half_width); + const dx1 = Math.max(dx, -rect.half_width); + const dy = Math.min(relative_y, rect.half_height); + const dy1 = Math.max(dy, -rect.half_height); + return (dx1 - relative_x) * (dx1 - relative_x) + (dy1 - relative_y) * (dy1 - relative_y) <= r * r; + } +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_math_util.ts.meta b/assets/Script/lq_base/util/lq_math_util.ts.meta new file mode 100644 index 0000000..260530f --- /dev/null +++ b/assets/Script/lq_base/util/lq_math_util.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "997fce7c-cb7f-4e14-b7e5-87a4f9f1f643", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_platform_util.ts b/assets/Script/lq_base/util/lq_platform_util.ts new file mode 100644 index 0000000..8d8f523 --- /dev/null +++ b/assets/Script/lq_base/util/lq_platform_util.ts @@ -0,0 +1,118 @@ +import {LQByteDanceType, LQPlatformType} from "../data/lq_const"; + +export class LQPlatformUtil { + private static platform_type: LQPlatformType; + private static byte_dance_type: LQByteDanceType; + + public static init() { + if (typeof qq !== 'undefined') { + this.platform_type = LQPlatformType.qq; + } else if (typeof swan !== 'undefined') { + this.platform_type = LQPlatformType.baidu; + } else if (typeof tt !== 'undefined') { + this.platform_type = LQPlatformType.tt; + const info = tt.getSystemInfoSync(); + switch (info.appName) { + case 'Toutiao': + this.byte_dance_type = LQByteDanceType.tt; + break; + case 'news_article_lite': + this.byte_dance_type = LQByteDanceType.tt_lite; + break; + case 'Douyin': + this.byte_dance_type = LQByteDanceType.douyin; + break; + case 'douyin_lite': + this.byte_dance_type = LQByteDanceType.douyin_lite; + break; + case 'PPX': + this.byte_dance_type = LQByteDanceType.ppx; + break; + case 'devtools': + this.byte_dance_type = LQByteDanceType.devtools; + break; + } + } else if (typeof qg !== 'undefined') { + if (!!qg.getBattle) { + this.platform_type = LQPlatformType.oppo; + } else { + this.platform_type = LQPlatformType.vivo; + } + } else if (typeof wx !== 'undefined') { + this.platform_type = LQPlatformType.wx; + } else if (typeof jsb !== 'undefined') { + if (cc.sys.os === cc.sys.OS_ANDROID) { + this.platform_type = LQPlatformType.android; + } else if (cc.sys.os === cc.sys.OS_IOS) { + this.platform_type = LQPlatformType.ios; + } else { + this.platform_type = LQPlatformType.unknown; + } + } else if (cc.sys.isBrowser) { + this.platform_type = LQPlatformType.browser; + } + } + + public static get_platform(): LQPlatformType { + return this.platform_type; + } + + public static get_byte_dance(): LQByteDanceType { + return this.byte_dance_type; + } + + public static is_wx() { + return this.platform_type === LQPlatformType.wx; + } + + public static is_tt() { + return this.platform_type === LQPlatformType.tt; + } + + public static is_oppo() { + return this.platform_type === LQPlatformType.oppo; + } + + public static is_vivo() { + return this.platform_type === LQPlatformType.vivo; + } + + public static is_ov() { + return this.platform_type === LQPlatformType.oppo || this.platform_type === LQPlatformType.vivo; + } + + public static is_browser() { + return this.platform_type === LQPlatformType.browser; + } + + public static is_android() { + return this.platform_type === LQPlatformType.android; + } + + public static is_ios() { + return this.platform_type === LQPlatformType.ios; + } + + public static is_native() { + return this.platform_type === LQPlatformType.android || this.platform_type === LQPlatformType.ios; + } + + public static is_qq() { + return this.platform_type === LQPlatformType.qq; + } + + public static is_baidu() { + return this.platform_type === LQPlatformType.baidu; + } + + public static is_kwaigame() { + return this.platform_type === LQPlatformType.kwaigame; + } +} + +LQPlatformUtil.init(); +if (LQPlatformUtil.is_tt()) { + // console.log('---------当前平台:' + LQPlatformUtil.get_byte_dance()); +} else { + // console.log('---------当前平台:' + LQPlatformUtil.get_platform()); +} diff --git a/assets/Script/lq_base/util/lq_platform_util.ts.meta b/assets/Script/lq_base/util/lq_platform_util.ts.meta new file mode 100644 index 0000000..c1e770a --- /dev/null +++ b/assets/Script/lq_base/util/lq_platform_util.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "358754f4-96c4-4bde-bce1-36451d5f8fc6", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_pool_util.ts b/assets/Script/lq_base/util/lq_pool_util.ts new file mode 100644 index 0000000..39a3824 --- /dev/null +++ b/assets/Script/lq_base/util/lq_pool_util.ts @@ -0,0 +1,118 @@ +import Node = cc.Node; +import Animation = cc.Animation; +import ParticleSystem = cc.ParticleSystem; +import instantiate = cc.instantiate; + +export class LQPoolUtil { + private static any_pool: { [key: string]: Node[] } = {}; + + private static reset_ani(node: Node) { + let ani = node.getComponent(Animation); + if (ani) { + let clip = ani.currentClip ? ani.currentClip : ani.defaultClip; + if (!clip) { + return; + } + if (ani.playOnLoad && clip && clip.wrapMode === cc.WrapMode.Normal) { + ani.play(clip.name); + } + } else { + let ani = node.getComponent(sp.Skeleton); + if (ani && !ani.loop) { + ani.setAnimation(0, ani.animation, false); + } + } + for (let i = 0; i < node.childrenCount; i++) { + const child = node.children[i]; + this.reset_ani(child); + } + } + + public static recursion_stop_particle(node: Node, obj: { has: boolean }) { + const p = node.getComponent(ParticleSystem); + if (p) { + p.stopSystem(); + obj.has = true; + p.node.opacity = 0; + } + for (let i = 0; i < node.childrenCount; i++) { + const child = node.children[i]; + this.recursion_stop_particle(child, obj); + } + } + + public static recursion_reset_particle(node: Node) { + if (!node.isValid) { + return; + } + const p = node.getComponent(ParticleSystem); + if (p) { + p.resetSystem(); + p.node.opacity = 255; + } + for (let i = 0; i < node.childrenCount; i++) { + const child = node.children[i]; + this.recursion_reset_particle(child); + } + } + + public static get_node_from_pool(node_parent: Node, prefab: Node) { + let arr = this.any_pool[prefab.uuid]; + if (!arr) { + this.any_pool[prefab.uuid] = []; + arr = []; + } + let node = arr.pop(); + if (!node || !node.isValid) { + node = instantiate(prefab); + //@ts-ignore + node.recovery_uuid = prefab.uuid; + //@ts-ignore + node.is_from_pool = false; + node_parent.addChild(node); + } else { + node.active = true; + //@ts-ignore + node.is_from_pool = true; + this.reset_ani(node); + } + return node; + } + + private static check_pool_push(arr: Node[], node: Node) { + for (let i = 0; i < arr.length; i++) { + if (arr[i] === node) { + //@ts-ignore + console.warn(`池子不能重复添加节点`, node.name, node.recovery_uuid); + return; + } + } + node.active = false; + arr.push(node); + } + + public static push_node_to_pool(node: Node) { + //@ts-ignore + if (!node.recovery_uuid || !this.any_pool[node.recovery_uuid]) { + if (node.isValid) { + node.destroy(); + } + return; + } + const obj: { has: boolean } = {has: false}; + this.recursion_stop_particle(node, obj); + if (obj.has) { + let old_opacity = node.opacity; + node.opacity = 0; + setTimeout(() => { + this.recursion_reset_particle(node); + node.opacity = old_opacity; + //@ts-ignore + this.check_pool_push(this.any_pool[node.recovery_uuid], node); + }, 500); + } else { + //@ts-ignore + this.check_pool_push(this.any_pool[node.recovery_uuid], node); + } + } +} \ No newline at end of file diff --git a/assets/Script/lq_base/util/lq_pool_util.ts.meta b/assets/Script/lq_base/util/lq_pool_util.ts.meta new file mode 100644 index 0000000..dbf81e3 --- /dev/null +++ b/assets/Script/lq_base/util/lq_pool_util.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "98488d9e-d9da-43d7-b2ef-0909d30f2904", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system.meta b/assets/Script/lq_collide_system.meta new file mode 100644 index 0000000..e63b262 --- /dev/null +++ b/assets/Script/lq_collide_system.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "7262f828-3947-4d61-ab6b-0c5ef01a6473", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide.ts b/assets/Script/lq_collide_system/lq_collide.ts new file mode 100644 index 0000000..8ef2231 --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide.ts @@ -0,0 +1,491 @@ +import ccclass = cc._decorator.ccclass; +import property = cc._decorator.property; +import requireComponent = cc._decorator.requireComponent; +import menu = cc._decorator.menu; +import Component = cc.Component; +import Enum = cc.Enum; +import Size = cc.Size; +import Vec2 = cc.Vec2; +import Graphics = cc.Graphics; +import Node = cc.Node; +import macro = cc.macro; +import Color = cc.Color; +import { LQCollideShape, LQCollideStatus } from "../lq_base/data/lq_const"; +import { LQCollideConfig, LQCollideInfoList } from "./lq_collide_config"; +import { LQCollideSystem } from "./lq_collide_system"; +import { LQRect } from "../lq_base/data/lq_data"; +import { LQCollideBase } from "./lq_collide_base"; +import { LQGameUtil } from "../lq_base/util/lq_game_util"; +import MapConroler from "../Map"; + +@ccclass +@requireComponent(LQCollideBase) +@menu("lq/collide") +export class LQCollide extends Component { + velocity: any; + @property({ displayName: '绘制形状' }) + get draw_collide(): boolean { + return this._draw_collide; + } + + set draw_collide(value: boolean) { + this._draw_collide = value; + this.draw_shape(); + } + + @property + protected _draw_collide: boolean = true; + + @property({ tooltip: '能否移动' }) + protected can_move: boolean = true; + + + @property({ + tooltip: '碰撞形状,None就是无敌,不参与碰撞', + type: Enum(LQCollideShape), + displayName: '碰撞形状' + }) + get collide_shape(): LQCollideShape { + return this._collide_shape; + } + + set collide_shape(value: LQCollideShape) { + this._collide_shape = value; + this.draw_shape(); + } + + @property() + public _collide_shape: LQCollideShape = LQCollideShape.Rect; + + @property({ + type: Enum(LQCollideInfoList), tooltip: '碰撞类别', + displayName: '碰撞类别' + }) + get collide_group_index() { + if (this._collide_group_index === -1) { + this._collide_group_index = LQCollideSystem.get_info_by_id(this.collide_group_id).index; + } + return this._collide_group_index; + } + + set collide_group_index(value) { + if (this._collide_group_index === value) { + return; + } + this._collide_group_index = value; + this.collide_group_id = LQCollideSystem.get_group_by_index(value).id; + } + + @property({ serializable: false }) + private _collide_group_index = -1; + + @property({ visible: false }) + protected collide_group_id: number = 0; + + @property({ visible: false }) + protected collide_scle: number = 1; + + @property({ + tooltip: 'collide半径', + visible() { + // @ts-ignore + return this._collide_shape === LQCollideShape.Circle; + }, + displayName: '半径' + }) + get radius(): number { + return this._radius; + } + + set radius(value: number) { + this._radius = value; + this.draw_shape(); + } + + @property() + protected _radius: number = 50; + + // 物体速度 + // public velocity: Vec2 = new Vec2(0, 0); + + @property({ + tooltip: 'collide长宽', + visible() { + // @ts-ignore + return this._collide_shape === LQCollideShape.Rect; + }, + displayName: '长宽' + }) + get size(): Size { + return this._size; + } + + set size(value: Size) { + this._size = value; + if (this.world_rect) { + this.world_rect.width = value.width; + this.world_rect.height = value.height; + this.world_rect.half_width = value.width * 0.5; + this.world_rect.half_height = value.height * 0.5; + } + this.draw_shape(); + } + + @property() + protected _size: Size = new Size(100, 100); + + @property({ displayName: '位置偏移' }) + get offset(): Vec2 { + return this._offset; + } + + set offset(value: Vec2) { + this._offset = value; + this.draw_shape(); + } + + @property({ + type: Vec2, + visible() { + // @ts-ignore + return this._collide_shape === LQCollideShape.Polygon; + }, + displayName: '多边形碰撞点' + }) + get polygon_points(): Vec2[] { + return this._polygon_points; + } + + set polygon_points(value: Vec2[]) { + this._polygon_points = value; + this.draw_shape(); + } + + @property() + public _polygon_points: Vec2[] = [new Vec2(-45, -45), new Vec2(45, -45), new Vec2(60, 40), new Vec2(0, 70), new Vec2(-60, 40)]; + //collide碰撞位置偏移 + @property() + public _offset: Vec2 = new Vec2(0, 0); + + @property({ displayName: '自定义字符串' }) + public data_string: string = ''; + //每个collide的id唯一 + public collide_id: number = 0; + //状态 + public collide_status: LQCollideStatus = LQCollideStatus.Idle; + //是否可碰撞 + public is_enable: boolean = true; + //是否开启碰撞前后的函数 + public is_open_func: boolean = true; + //碰撞类别 + public collide_category = 0; + //碰撞筛选 + public collide_mask = 0; + //缓存多边形碰撞数据 + public cache_polygon_points: number[]; + //绘制collide形状组件 + private _debugDrawer!: Graphics; + public world_rect!: LQRect; + public collide_map: { [key: number]: { collide: LQCollide, status: 1 | 2 } } = {}; + public follow_target_category: number | undefined; + private static id_maker: number = 1; + + //检测绘制组件是否添加 + private checkDebugDrawValid() { + if (!this._debugDrawer || !this._debugDrawer.isValid) { + let node = this.node.getChildByName('Collide'); + if (!node) { + node = new Node('Collide'); + node.zIndex = macro.MAX_ZINDEX; + this.node.addChild(node); + // @ts-ignore + node._objFlags = 1096; + this._debugDrawer = node.addComponent(Graphics); + this._debugDrawer.lineWidth = 3; + this._debugDrawer.strokeColor = new Color(255, 0, 0); + this._debugDrawer.fillColor = new Color(255, 0, 0); + } else { + this._debugDrawer = node.getComponent(Graphics); + } + } + } + + //绘制形状 + protected draw_shape() { + if (!this._draw_collide) { + if (this._debugDrawer) { + this._debugDrawer.clear(); + } + return; + } + this.checkDebugDrawValid(); + this._debugDrawer.clear(); + + let o1 = { key: 'scaleX', value: this.node.scale }; + let o2 = { key: 'scaleY', value: this.node.scale }; + LQGameUtil.recursion_node_property(this.node, o1); + LQGameUtil.recursion_node_property(this.node, o2); + if (o1.value === 0 || o2.value === 0) { + return; + } + this._debugDrawer.node.scaleX = 1 / o1.value; + this._debugDrawer.node.scaleY = 1 / o2.value; + switch (this._collide_shape) { + case LQCollideShape.Circle: + this._debugDrawer.circle(+this._offset.x, +this._offset.y, this._radius); + this._debugDrawer.stroke(); + break; + case LQCollideShape.Rect: + this._debugDrawer.moveTo(-this._size.width * 0.5 + this._offset.x, -this._size.height * 0.5 + this._offset.y); + this._debugDrawer.lineTo(-this._size.width * 0.5 + this._offset.x, +this._size.height * 0.5 + this._offset.y); + this._debugDrawer.lineTo(this._size.width * 0.5 + this._offset.x, +this._size.height * 0.5 + this._offset.y); + this._debugDrawer.lineTo(this._size.width * 0.5 + this._offset.x, -this._size.height * 0.5 + this._offset.y); + this._debugDrawer.lineTo(-this._size.width * 0.5 + this._offset.x, -this._size.height * 0.5 + this._offset.y); + this._debugDrawer.stroke(); + break; + case LQCollideShape.Polygon: + this._debugDrawer.moveTo(this._polygon_points[0].x + this._offset.x, this._polygon_points[0].y + this._offset.y); + for (let i = 1; i < this._polygon_points.length; i++) { + this._debugDrawer.lineTo(this._polygon_points[i].x + this._offset.x, this._polygon_points[i].y + this._offset.y); + } + this._debugDrawer.lineTo(this._polygon_points[0].x + this._offset.x, this._polygon_points[0].y + this._offset.y); + this._debugDrawer.stroke(); + break; + } + } + + //仅用于矩形 + public update_size(width: number, height: number) { + this._size.width = width; + this.world_rect.width = width; + this.world_rect.half_width = width * 0.5; + this._size.height = height; + this.world_rect.height = height; + this.world_rect.half_height = height * 0.5; + + this.draw_shape(); + } + + public init_lq_collide() { + + this.world_rect = new LQRect(0, 0, this._size.width, this._size.height); + this.draw_shape(); + const info = LQCollideSystem.get_info_by_id(this.collide_group_id); + this.collide_mask = info.mask; + this.collide_category = info.category; + this.collide_id = LQCollide.id_maker++; + + this.updateCollisionArea(); + } + + private updateCollisionArea() { + if (this._size.width == 0 || this._size.height == 0 || MapConroler._instance == undefined) { + return; + } + if (MapConroler._instance.node.scale) { + let scaleX = MapConroler._instance.node.scale; + let scaleY = MapConroler._instance.node.scale; + + if (scaleX === 0 || scaleX == undefined || scaleX == null || scaleX == 1) { + return; + } + switch (this._collide_shape) { + case LQCollideShape.Circle: + // 圆形碰撞区域半径更新 + this._radius = this._radius * Math.max(scaleX, scaleY); + break; + case LQCollideShape.Rect: + // 矩形碰撞区域尺寸更新 + // console.log(this.data_string); + if (this._size.width !== 10 && this.data_string != "-1") { + // if(this._size.width == 105 || this._size.height == 105){} + this._size.width = this._size.width * scaleX; + // console.log("放大倍数",scaleX); + } + if (this._size.height !== 10 && this.data_string != "-1") { + // if(this._size.width == 105 || this._size.height == 105){} + this._size.height = this._size.height * scaleY; + // console.log("放大倍数",scaleY); + } + // this._size.width = this._size.width * scaleX; + // this._size.height = this._size.height * scaleY; + if (this.world_rect) { + this.world_rect.width = this._size.width; + this.world_rect.height = this._size.height; + this.world_rect.half_width = this._size.width * 0.5; + this.world_rect.half_height = this._size.height * 0.5; + } + break; + case LQCollideShape.Polygon: + // 多边形碰撞点坐标更新 + this._polygon_points = this._polygon_points.map(point => { + return new Vec2(point.x * scaleX, point.y * scaleY); + }); + break; + } + + this.draw_shape(); + } + + } + + public enable_lq_collide() { + + if (this.collide_status === LQCollideStatus.Live) { + console.warn(this.node.name + '重复添加'); + return; + } + this.is_enable = true; + this.collide_status = LQCollideStatus.Live; + LQCollideSystem.add_collide(this); + } + + public disable_lq_collide() { + if (this.collide_status !== LQCollideStatus.Live) { + return; + } + this.is_enable = false; + this.collide_status = LQCollideStatus.Idle; + LQCollideSystem.remove_collide(this); + } + + public update_lq_collide() { + + } + + //@ts-ignore + public on_enter(collide: LQCollide) { + if (this.disableCollider(collide)) { + return; + } + // if (LQCollideConfig.switch_print_log) { + // console.log(this.node.name + ' on_enter'); + // } + } + + //@ts-ignore + public on_exit(collide: LQCollide) { + if (this.disableCollider(collide)) { + return; + } + if (LQCollideConfig.switch_print_log) { + if (this.node.parent.getComponent("Block")) { + let block = this.node.parent.getComponent("Block"); + // if(!block.isTouch){ + // return; + // } + block.checkCollision = false; + if (this.node.name == "top") { + block.moveUp = true; + } + if (this.node.name === "down") { + block.moveDown = true; + } + if (this.node.name === "left") { + block.moveLeft = true; + } + if (this.node.name === "right") { + block.moveRight = true; + } + } + } + } + + public on_collide(collide: LQCollide): void { + if (this.disableCollider(collide)) { + return; + } + if (LQCollideConfig.switch_print_log) { + if (this.node.parent.getComponent("Block")) { + let block = this.node.parent.getComponent("Block"); + let jg = false; + if (block.isTouch) { + if (collide.node.name == "rise" && block.type == 9) { + let otherColor = collide.node.parent.getChildByName("risefall").getChildByName("color").getComponent(cc.Label).string; + if (block.color == otherColor && this.data_string != "-1") { + return; + } + if (block.block_Info.node.getComponent("Block").color == otherColor && this.data_string == "-1") { + return; + } + } + else if (collide.node.name == "rise" && block.type != 9) { + let otherColor = collide.node.parent.getChildByName("risefall").getChildByName("color").getComponent(cc.Label).string; + if (block.color == otherColor) { + return; + } + } + block.checkCollision = true; + // console.log("碰撞",this.node.name); + + if (this.node.name == "top") { + // console.log(collide.node.parent.name); + block.moveUp = false; + if (block.touchPointY > (this.node.parent.y + this.node.parent.height)) { + block.moveY = 1; + } + // console.log("碰到上边缘"); + } + if (this.node.name === "down") { + + block.moveDown = false; + if (block.touchPointY < (this.node.parent.y)) { + block.moveY = -1; + } + // console.log("碰到下边缘"); + } + if (this.node.name === "left") { + block.moveLeft = false; + if (block.touchPointX < (this.node.parent.x - this.node.parent.width)) { + block.moveX = -1; + } + } + if (this.node.name === "right") { + block.moveRight = false; + if (block.touchPointX > (this.node.parent.x)) { + block.moveX = 1; + } + } + + if (this.node.name.startsWith("tan") && collide.node.name.startsWith("tan")) { + // console.log("_____________" + this.node.name); + if (this.node.name == "tan_down_left" && collide.node.name == "tan_up_right") { + block.Bounce(this.node.name); + } + else if (this.node.name == "tan_down_right" && collide.node.name == "tan_up_left") { + block.Bounce(this.node.name); + } + else if (this.node.name == "tan_up_left" && collide.node.name == "tan_down_right") { + block.Bounce(this.node.name); + } + else if (this.node.name == "tan_up_right" && collide.node.name == "tan_down_left") { + block.Bounce(this.node.name); + } + } + } + } + } + } + + public disableCollider(collide: LQCollide) { + let jg = false; + if (collide.node && this.node) { + if (collide.node.parent && this.node.parent) { + if (collide.node.parent.uuid == this.node.parent.uuid) { + jg = true; + } + if (this.node.parent.getComponent("Block")) { + let block = this.node.parent.getComponent("Block"); + if (block.type == 1 || block.type == 10 || block.type == 9) { + if (collide.node.parent == block.block_Info.node) { + jg = true; + } + } + } + } + } + + + return jg; + } +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide.ts.meta b/assets/Script/lq_collide_system/lq_collide.ts.meta new file mode 100644 index 0000000..90812a2 --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "d2add891-a975-4a43-8604-a7ab0ae5de91", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide_base.ts b/assets/Script/lq_collide_system/lq_collide_base.ts new file mode 100644 index 0000000..ba31383 --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide_base.ts @@ -0,0 +1,92 @@ +import ccclass = cc._decorator.ccclass; +import executeInEditMode = cc._decorator.executeInEditMode; +import PolygonCollider = cc.PolygonCollider; +import property = cc._decorator.property; +import {LQCollide} from "./lq_collide"; +import {LQCollideShape} from "../lq_base/data/lq_const"; + +@ccclass +@executeInEditMode +export class LQCollideBase extends cc.Component { + @property({tooltip: '多边形自动同步cocos PolygonCollider 组件中的碰撞点'}) + protected auto_update_point: boolean = true; + + private find_collide() { + const collide = this.node.getComponent(LQCollide); + if (!collide) { + console.error(this.node.name + ':没有找到LQCollide组件'); + return undefined; + } + return collide; + } + + protected onLoad() { + const collide = this.find_collide(); + if (!collide) { + return; + } + collide.init_lq_collide(); + } + + protected onEnable() { + const collide = this.find_collide(); + if (!collide) { + return; + } + collide.enable_lq_collide(); + } + + protected onDisable() { + const collide = this.find_collide(); + if (!collide) { + return; + } + collide.disable_lq_collide(); + } + + protected onDestroy() { + const collide = this.find_collide(); + if (!collide) { + return; + } + } + + protected onFocusInEditor() { + const collide = this.find_collide(); + if (!collide) { + return; + } + } + + protected onLostFocusInEditor() { + const collide = this.find_collide(); + if (!collide) { + return; + } + } + + protected resetInEditor() { + const collide = this.find_collide(); + if (!collide) { + return; + } + } + + protected update(dt: number) { + if (!CC_EDITOR || !this.auto_update_point) { + return; + } + const collide = this.find_collide(); + if (!collide) { + return; + } + if (collide.collide_shape !== LQCollideShape.Polygon) { + return; + } + const polygonCollider = this.node.getComponent(PolygonCollider); + if (!polygonCollider) { + return; + } + collide.polygon_points = polygonCollider.points; + } +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide_base.ts.meta b/assets/Script/lq_collide_system/lq_collide_base.ts.meta new file mode 100644 index 0000000..75efff2 --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide_base.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "c22a3c1c-53fb-4174-9fea-8e7fd0eaeb80", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide_config.ts b/assets/Script/lq_collide_system/lq_collide_config.ts new file mode 100644 index 0000000..90e1d2b --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide_config.ts @@ -0,0 +1,24 @@ +export enum LQCollideInfoList { + default, role, role_bullet, enemy, enemy_bullet, prop +} + +export class LQCollideConfig { + public static switch_auto_run: boolean = true; + public static switch_print_log: boolean = true; + public static switch_quad_tree: boolean = false; + public static max_node_len: number = 10; + public static per_frame: number = 60; + public static max_node_level: number = 4; + public static active_area_x: number = 0; + public static active_area_y: number = 0; + public static active_area_width: number = 1000; + public static active_area_height: number = 1000; + public static collide_group_map = { + "default": {id: 1, category: 1, index: 0, mask: 1}, + "role": {id: 2, category: 2, index: 1, mask: 56}, + "role_bullet": {id: 3, category: 4, index: 2, mask: 8}, + "enemy": {id: 4, category: 8, index: 3, mask: 6}, + "enemy_bullet": {id: 5, category: 16, index: 4, mask: 2}, + "prop": {id: 6, category: 32, index: 5, mask: 2}, + } +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide_config.ts.meta b/assets/Script/lq_collide_system/lq_collide_config.ts.meta new file mode 100644 index 0000000..9193fa4 --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide_config.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "4bd218bc-f09f-4a7e-8581-e9faa4ee85b5", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide_system.d.ts b/assets/Script/lq_collide_system/lq_collide_system.d.ts new file mode 100644 index 0000000..79c001a --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide_system.d.ts @@ -0,0 +1,30 @@ +import {LQCollide} from "./lq_collide"; + +export class LQCollideSystem { + //是否开启检测 + public static is_enable: boolean; + + //所有collide集合 + public static collide_arr: LQCollide[]; + + //驱动函数 + public static update_logic(dt: number); + + //注册 + public static add_collide(collide: LQCollide); + + //移除 + public static remove_collide(collide: LQCollide); + + //清除所有 + public static clear(is_destroy: boolean = false); + + //内部方法 + public static get_group_by_index(id: number); + + //内部方法 + public static get_info_by_id(id: number); + + //获取collide的碰撞体集合 + public static check_collide(collide: LQCollide) :LQCollide[]; +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide_system.d.ts.meta b/assets/Script/lq_collide_system/lq_collide_system.d.ts.meta new file mode 100644 index 0000000..9fa4a62 --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide_system.d.ts.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.2", + "uuid": "ad6beb84-3361-4f58-ac42-8c77980b3384", + "importer": "text", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide_system.js b/assets/Script/lq_collide_system/lq_collide_system.js new file mode 100644 index 0000000..9c7e681 --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide_system.js @@ -0,0 +1 @@ +/*Obfuscated by JShaman.com*/'use strict';exports['__esModule']=!![];exports['LQCollideSystem']=void 0x0;var lq_const_1=require('../lq_base/data/lq_const');var lq_math_util_1=require('../lq_base/util/lq_math_util');var lq_collide_config_1=require('./lq_collide_config');var lq_data_1=require('../lq_base/data/lq_data');var Vec2=cc['Vec2'];var game=cc['game'];var director=cc['director'];var Scheduler=cc['Scheduler'];var misc=cc['misc'];var LQQuadTree=function(){function _0x56565e(_0x3d3a0e,_0x3fb055,_0x20ce04,_0x406033){this['collide_arr']=[];this['node_arr']=[];this['max_object']=_0x3fb055||0xa;this['max_level']=_0x20ce04||0x4;this['level']=_0x406033||0x0;this['rect']=_0x3d3a0e;this['collide_arr']=[];this['node_arr']=[];}_0x56565e['prototype']['split']=function(){var _0x32a9cb=this['level']+0x1;var _0x178d81=this['rect']['width']*0.5;var _0x1d1d97=this['rect']['height']*0.5;var _0x5f5093=this['rect']['x'];var _0x3269c2=this['rect']['y'];this['node_arr'][0x0]=new _0x56565e(new lq_data_1['LQRect'](_0x5f5093+_0x178d81,_0x3269c2,_0x178d81,_0x1d1d97),this['max_object'],this['max_level'],_0x32a9cb);this['node_arr'][0x1]=new _0x56565e(new lq_data_1['LQRect'](_0x5f5093,_0x3269c2,_0x178d81,_0x1d1d97),this['max_object'],this['max_level'],_0x32a9cb);this['node_arr'][0x2]=new _0x56565e(new lq_data_1['LQRect'](_0x5f5093,_0x3269c2+_0x1d1d97,_0x178d81,_0x1d1d97),this['max_object'],this['max_level'],_0x32a9cb);this['node_arr'][0x3]=new _0x56565e(new lq_data_1['LQRect'](_0x5f5093+_0x178d81,_0x3269c2+_0x1d1d97,_0x178d81,_0x1d1d97),this['max_object'],this['max_level'],_0x32a9cb);};_0x56565e['prototype']['get_index']=function(_0x59d6ec){var _0x1dc547=[];var _0x2ea7cd=this['rect']['x']+this['rect']['half_width'];var _0x5e97b7=this['rect']['y']+this['rect']['half_height'];var _0x241f59=_0x59d6ec['world_rect']['y']+_0x59d6ec['world_rect']['half_height']>_0x5e97b7;var _0x437790=_0x59d6ec['world_rect']['x']-_0x59d6ec['world_rect']['half_width']<_0x2ea7cd;var _0x5e6619=_0x59d6ec['world_rect']['x']+_0x59d6ec['world_rect']['half_width']>_0x2ea7cd;var _0x3b42aa=_0x59d6ec['world_rect']['y']-_0x59d6ec['world_rect']['half_height']<_0x5e97b7;if(_0x5e6619&&_0x241f59){_0x1dc547['push'](0x0);}if(_0x437790&&_0x241f59){_0x1dc547['push'](0x1);}if(_0x437790&&_0x3b42aa){_0x1dc547['push'](0x2);}if(_0x3b42aa&&_0x5e6619){_0x1dc547['push'](0x3);}return _0x1dc547;};;_0x56565e['prototype']['insert']=function(_0x32f23a){var _0x3850fe;if(this['node_arr']['length']){_0x3850fe=this['get_index'](_0x32f23a);for(var _0x4856cf=0x0;_0x4856cf<_0x3850fe['length'];_0x4856cf++){this['node_arr'][_0x3850fe[_0x4856cf]]['insert'](_0x32f23a);}return;}this['collide_arr']['push'](_0x32f23a);if(this['collide_arr']['length']>this['max_object']&&this['level']=0x0;_0x12059a--){if(this['collide_arr'][_0x12059a]['collide_id']===_0x416298['collide_id']){this['collide_arr']['splice'](_0x12059a,0x1);break;}}};_0x9bf60e['line_point']=function(_0x4a7370,_0x24c7a1,_0x4e18ee,_0x122356,_0x2bd713,_0x2d3b6e){return Math['abs'](this['distanceSquared'](_0x4a7370,_0x24c7a1,_0x4e18ee,_0x122356)-(this['distanceSquared'](_0x4a7370,_0x24c7a1,_0x2bd713,_0x2d3b6e)+this['distanceSquared'](_0x4e18ee,_0x122356,_0x2bd713,_0x2d3b6e)))<=0x1;};_0x9bf60e['distanceSquared']=function(_0x5cca3b,_0x11b678,_0x1f0b63,_0x52cec7){return Math['sqrt'](Math['pow'](_0x5cca3b-_0x1f0b63,0x2)+Math['pow'](_0x11b678-_0x52cec7,0x2));};_0x9bf60e['polygon_point']=function(_0x4236c0,_0x12e825,_0x5cd4dd){var _0xbd6fd0=_0x4236c0['length'];var _0x1f4fbc=![];var _0x267b58,_0x4a1bae;for(_0x267b58=0x0,_0x4a1bae=_0xbd6fd0-0x2;_0x267b58<_0xbd6fd0;_0x267b58+=0x2){if(_0x4236c0[_0x267b58+0x1]>_0x5cd4dd!==_0x4236c0[_0x4a1bae+0x1]>_0x5cd4dd&&_0x12e825<(_0x4236c0[_0x4a1bae]-_0x4236c0[_0x267b58])*(_0x5cd4dd-_0x4236c0[_0x267b58+0x1])/(_0x4236c0[_0x4a1bae+0x1]-_0x4236c0[_0x267b58+0x1])+_0x4236c0[_0x267b58]){_0x1f4fbc=!_0x1f4fbc;}_0x4a1bae=_0x267b58;}if(_0x1f4fbc){return!![];}for(_0x267b58=0x0;_0x267b58<_0xbd6fd0;_0x267b58+=0x2){var _0x574e3e=_0x4236c0[_0x267b58];var _0x4b92d8=_0x4236c0[_0x267b58+0x1];var _0x5d39d4=void 0x0,_0x124e9c=void 0x0;if(_0x267b58===_0xbd6fd0-0x2){_0x5d39d4=_0x4236c0[0x0];_0x124e9c=_0x4236c0[0x1];}else{_0x5d39d4=_0x4236c0[_0x267b58+0x2];_0x124e9c=_0x4236c0[_0x267b58+0x3];}if(this['line_point'](_0x574e3e,_0x4b92d8,_0x5d39d4,_0x124e9c,_0x12e825,_0x5cd4dd)){return!![];}}return![];};_0x9bf60e['polygon_circle']=function(_0x387188,_0x611012,_0x3707e8,_0x2432e1){if(this['polygon_point'](_0x387188,_0x611012,_0x3707e8)){return!![];}var _0x197657=_0x387188['length'];for(var _0x3df6fc=0x0;_0x3df6fc<_0x197657-0x2;_0x3df6fc+=0x2){if(this['line_circle'](_0x387188[_0x3df6fc],_0x387188[_0x3df6fc+0x1],_0x387188[_0x3df6fc+0x2],_0x387188[_0x3df6fc+0x3],_0x611012,_0x3707e8,_0x2432e1)){return!![];}}return this['line_circle'](_0x387188[0x0],_0x387188[0x1],_0x387188[_0x197657-0x2],_0x387188[_0x197657-0x1],_0x611012,_0x3707e8,_0x2432e1);};_0x9bf60e['line_circle']=function(_0x12bba1,_0x321290,_0x136703,_0x537e0e,_0x3ad147,_0x559a7d,_0x48a834){var _0x3bfd94=[_0x3ad147-_0x12bba1,_0x559a7d-_0x321290];var _0x6da620=[_0x136703-_0x12bba1,_0x537e0e-_0x321290];var _0x1feda4=this['dot'](_0x6da620,_0x6da620);var _0x53913d=this['dot'](_0x3bfd94,_0x6da620);var _0x3674f5=_0x53913d/_0x1feda4;_0x3674f5=_0x3674f5<0x0?0x0:_0x3674f5;_0x3674f5=_0x3674f5>0x1?0x1:_0x3674f5;var _0x150033=[_0x6da620[0x0]*_0x3674f5+_0x12bba1-_0x3ad147,_0x6da620[0x1]*_0x3674f5+_0x321290-_0x559a7d];var _0x442af1=this['dot'](_0x150033,_0x150033);return _0x442af1<=_0x48a834*_0x48a834;};_0x9bf60e['dot']=function(_0x1e79a5,_0x179c92){return _0x1e79a5[0x0]*_0x179c92[0x0]+_0x1e79a5[0x1]*_0x179c92[0x1];};_0x9bf60e['update_logic']=function(_0xb17278){if(!this['is_enable']){return;}if(lq_collide_config_1['LQCollideConfig']['switch_quad_tree']){this['quad_tree']['clear']();for(var _0x1337bd=this['collide_arr']['length']-0x1;_0x1337bd>=0x0;_0x1337bd--){var _0x20181e=this['collide_arr'][_0x1337bd];if(!_0x20181e){return;}if(!_0x20181e['isValid']){this['collide_arr']['splice'](_0x1337bd,0x1);continue;}this['update_collide_logic'](_0x20181e);if(_0x20181e['is_enable']){this['update_world_rect'](_0x20181e);this['quad_tree']['insert'](_0x20181e);}}LQQuadTree['all_collide_arr']=[];this['quad_tree']['get_all_area']();for(var _0x4af6ff=0x0;_0x4af6ff=0x0;_0x1337bd--){var _0x20181e=this['collide_arr'][_0x1337bd];if(!_0x20181e){return;}if(!_0x20181e['isValid']){this['collide_arr']['splice'](_0x1337bd,0x1);continue;}this['update_collide_logic'](_0x20181e);if(_0x20181e['is_enable']){this['update_world_rect'](_0x20181e);_0x5cac71['push'](_0x20181e);}}var _0x4f3337=_0x5cac71['length'];for(var _0x1337bd=0x0;_0x1337bd<_0x4f3337;_0x1337bd++){var _0x549a66=_0x5cac71[_0x1337bd];for(var _0x5793ff=_0x1337bd+0x1;_0x5793ff<_0x4f3337;_0x5793ff++){var _0x4740fe=_0x5cac71[_0x5793ff];if(_0x549a66['collide_category']&_0x4740fe['collide_mask']){if(_0x549a66['_collide_shape']===0x1&&_0x4740fe['_collide_shape']===0x1){if(lq_math_util_1['LQMathUtil']['intersects_rect'](_0x549a66['world_rect'],_0x4740fe['world_rect'])){this['collide_other'](_0x549a66,_0x4740fe);}}else if(_0x549a66['_collide_shape']===0x1&&_0x4740fe['_collide_shape']===0x2){if(lq_math_util_1['LQMathUtil']['intersects_circle_rect'](_0x4740fe['world_rect'],_0x4740fe['radius'],_0x549a66['world_rect'])){this['collide_other'](_0x549a66,_0x4740fe);}}else if(_0x549a66['_collide_shape']===0x2&&_0x4740fe['_collide_shape']===0x1){if(lq_math_util_1['LQMathUtil']['intersects_circle_rect'](_0x549a66['world_rect'],_0x549a66['radius'],_0x4740fe['world_rect'])){this['collide_other'](_0x549a66,_0x4740fe);}}else if(_0x549a66['_collide_shape']===0x2&&_0x4740fe['_collide_shape']===0x2){if(lq_math_util_1['LQMathUtil']['intersects_circle'](_0x549a66['world_rect'],_0x549a66['radius'],_0x4740fe['world_rect'],_0x4740fe['radius'])){this['collide_other'](_0x549a66,_0x4740fe);}}else if(_0x549a66['_collide_shape']==0x3&&_0x4740fe['_collide_shape']==0x2){if(!_0x549a66['cache_polygon_points']){this['cache_polygon'](_0x549a66);}if(this['polygon_circle'](_0x549a66['cache_polygon_points'],_0x4740fe['world_rect']['x'],_0x4740fe['world_rect']['y'],_0x4740fe['radius'])){this['collide_other'](_0x549a66,_0x4740fe);}}else if(_0x549a66['_collide_shape']==0x2&&_0x4740fe['_collide_shape']==0x3){if(!_0x4740fe['cache_polygon_points']){this['cache_polygon'](_0x4740fe);}if(this['polygon_circle'](_0x4740fe['cache_polygon_points'],_0x549a66['world_rect']['x'],_0x549a66['world_rect']['y'],_0x549a66['radius'])){this['collide_other'](_0x549a66,_0x4740fe);}}else{if(!_0x549a66['cache_polygon_points']){this['cache_polygon'](_0x549a66);}if(!_0x4740fe['cache_polygon_points']){this['cache_polygon'](_0x4740fe);}if(this['polygon_polygon'](_0x549a66['cache_polygon_points'],_0x4740fe['cache_polygon_points'])){this['collide_other'](_0x549a66,_0x4740fe);}}}}}}};_0x9bf60e['polygon_polygon']=function(_0x1a152c,_0x484cd2){var _0x173f61=_0x1a152c;var _0x3fccda=_0x484cd2;var _0x22eef9=[_0x173f61,_0x3fccda];var _0x3662ed,_0x10bbdb,_0x29133c,_0x5ce192,_0x8011c7,_0xdfe8bc;for(var _0x3aee8c=0x0;_0x3aee8c<_0x22eef9['length'];_0x3aee8c++){var _0x1ce8fd=_0x22eef9[_0x3aee8c];for(var _0x2ab2ff=0x0;_0x2ab2ff<_0x1ce8fd['length'];_0x2ab2ff+=0x2){var _0x373bd2=(_0x2ab2ff+0x2)%_0x1ce8fd['length'];var _0x4b64a4={'x':_0x1ce8fd[_0x373bd2+0x1]-_0x1ce8fd[_0x2ab2ff+0x1],'y':_0x1ce8fd[_0x2ab2ff]-_0x1ce8fd[_0x373bd2]};_0x3662ed=null;_0x10bbdb=null;for(_0xdfe8bc=0x0;_0xdfe8bc<_0x173f61['length'];_0xdfe8bc+=0x2){_0x29133c=_0x4b64a4['x']*_0x173f61[_0xdfe8bc]+_0x4b64a4['y']*_0x173f61[_0xdfe8bc+0x1];if(_0x3662ed===null||_0x29133c<_0x3662ed){_0x3662ed=_0x29133c;}if(_0x10bbdb===null||_0x29133c>_0x10bbdb){_0x10bbdb=_0x29133c;}}_0x5ce192=null;_0x8011c7=null;for(_0xdfe8bc=0x0;_0xdfe8bc<_0x3fccda['length'];_0xdfe8bc+=0x2){_0x29133c=_0x4b64a4['x']*_0x3fccda[_0xdfe8bc]+_0x4b64a4['y']*_0x3fccda[_0xdfe8bc+0x1];if(_0x5ce192===null||_0x29133c<_0x5ce192){_0x5ce192=_0x29133c;}if(_0x8011c7===null||_0x29133c>_0x8011c7){_0x8011c7=_0x29133c;}}if(_0x10bbdb<_0x5ce192||_0x8011c7<_0x3662ed){return![];}}}return!![];};_0x9bf60e['get_group_by_index']=function(_0x40e2f1){for(var _0xfca8d1 in lq_collide_config_1['LQCollideConfig']['collide_group_map']){var _0x5ac815=lq_collide_config_1['LQCollideConfig']['collide_group_map'][_0xfca8d1];if(_0x5ac815['index']===_0x40e2f1){return _0x5ac815;}}return undefined;};_0x9bf60e['get_info_by_id']=function(_0xffbcdc){var _0x308325;for(var _0x149f5e in lq_collide_config_1['LQCollideConfig']['collide_group_map']){var _0x12150f=lq_collide_config_1['LQCollideConfig']['collide_group_map'][_0x149f5e];if(_0x12150f['id']===_0xffbcdc){return _0x12150f;}if(!_0x308325){_0x308325=_0x12150f;}}return _0x308325;};_0x9bf60e['find_nearest_collide']=function(_0x308082){var _0x3131c5=[];for(var _0xc3c380=_0x9bf60e['collide_arr']['length']-0x1;_0xc3c380>=0x0;_0xc3c380--){var _0x585f4f=_0x9bf60e['collide_arr'][_0xc3c380];if(_0x308082===_0x585f4f||!_0x585f4f['is_enable']){continue;}if(_0x308082['follow_target_category']){if(_0x585f4f['collide_category']===_0x308082['follow_target_category']){_0x3131c5['push'](_0x585f4f);}}else if((_0x585f4f['collide_category']&_0x308082['collide_mask'])!==0x0){_0x3131c5['push'](_0x585f4f);}}_0x3131c5['sort'](function(_0x3ddb83,_0x3ccf74){return _0x308082['world_rect']['sub'](_0x3ddb83['world_rect'])['magSqr']()-_0x308082['world_rect']['sub'](_0x3ccf74['world_rect'])['magSqr']();});return _0x3131c5[0x0];};_0x9bf60e['clear']=function(_0x4cf6a6){if(_0x4cf6a6===void 0x0){_0x4cf6a6=![];}if(_0x4cf6a6){for(var _0x537b2d=this['collide_arr']['length']-0x1;_0x537b2d>=0x0;_0x537b2d--){var _0x197d2f=this['collide_arr'][_0x537b2d];if(_0x197d2f['isValid']){_0x197d2f['node']['destroy']();}}}this['collide_arr']=[];};_0x9bf60e['check_collide']=function(_0x183de2){var _0x25cea1=[];var _0xa7b05;if(lq_collide_config_1['LQCollideConfig']['switch_quad_tree']){LQQuadTree['temp_collide_arr']=[];this['quad_tree']['retrieve'](_0x183de2);_0xa7b05=LQQuadTree['temp_collide_arr'];}else{_0xa7b05=this['collide_arr'];}for(var _0x381af2=0x0;_0x381af2<_0xa7b05['length'];_0x381af2++){var _0x5db7b3=_0xa7b05[_0x381af2];if(_0x183de2===_0x5db7b3){continue;}if(_0x183de2['collide_category']&_0x5db7b3['collide_mask']){if(_0x183de2['_collide_shape']===0x1&&_0x5db7b3['_collide_shape']===0x1){if(lq_math_util_1['LQMathUtil']['intersects_rect'](_0x183de2['world_rect'],_0x5db7b3['world_rect'])){_0x25cea1['push'](_0x5db7b3);}}else if(_0x183de2['_collide_shape']===0x1&&_0x5db7b3['_collide_shape']===0x2){if(lq_math_util_1['LQMathUtil']['intersects_circle_rect'](_0x5db7b3['world_rect'],_0x5db7b3['radius'],_0x183de2['world_rect'])){_0x25cea1['push'](_0x5db7b3);}}else if(_0x183de2['_collide_shape']===0x2&&_0x5db7b3['_collide_shape']===0x1){if(lq_math_util_1['LQMathUtil']['intersects_circle_rect'](_0x183de2['world_rect'],_0x183de2['radius'],_0x5db7b3['world_rect'])){_0x25cea1['push'](_0x5db7b3);}}else if(_0x183de2['_collide_shape']===0x2&&_0x5db7b3['_collide_shape']===0x2){if(lq_math_util_1['LQMathUtil']['intersects_circle'](_0x183de2['world_rect'],_0x183de2['radius'],_0x5db7b3['world_rect'],_0x5db7b3['radius'])){_0x25cea1['push'](_0x5db7b3);}}else if(this['polygon_polygon'](_0x183de2,_0x5db7b3)){_0x25cea1['push'](_0x5db7b3);}}}return _0x25cea1;};_0x9bf60e['is_enable']=![];_0x9bf60e['collide_arr']=[];_0x9bf60e['quad_tree']=new LQQuadTree(new lq_data_1['LQRect'](lq_collide_config_1['LQCollideConfig']['active_area_x'],lq_collide_config_1['LQCollideConfig']['active_area_y'],lq_collide_config_1['LQCollideConfig']['active_area_width'],lq_collide_config_1['LQCollideConfig']['active_area_height']),lq_collide_config_1['LQCollideConfig']['max_node_len'],lq_collide_config_1['LQCollideConfig']['max_node_level']);return _0x9bf60e;}();exports['LQCollideSystem']=LQCollideSystem;var AutoRun=function(){function _0xf5b087(){this['flag']=!![];}_0xf5b087['prototype']['update']=function(_0x365e55){if(lq_collide_config_1['LQCollideConfig']['per_frame']===0x3c){LQCollideSystem['update_logic'](_0x365e55);}else{if(this['flag']){this['flag']=![];LQCollideSystem['update_logic'](_0x365e55);}else{this['flag']=!![];}}};return _0xf5b087;}();game['on'](game['EVENT_GAME_INITED'],function(){if(lq_collide_config_1['LQCollideConfig']['switch_auto_run']&&!CC_EDITOR){var _0x287f86=new AutoRun();director['getScheduler']()['enableForTarget'](_0x287f86);director['getScheduler']()['scheduleUpdate'](_0x287f86,Scheduler['PRIORITY_SYSTEM'],![]);}}); \ No newline at end of file diff --git a/assets/Script/lq_collide_system/lq_collide_system.js.meta b/assets/Script/lq_collide_system/lq_collide_system.js.meta new file mode 100644 index 0000000..301a0eb --- /dev/null +++ b/assets/Script/lq_collide_system/lq_collide_system.js.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "81314984-dc17-444a-bf3b-48014af5caaf", + "importer": "javascript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module.meta b/assets/Script/module.meta new file mode 100644 index 0000000..d2f5dcc --- /dev/null +++ b/assets/Script/module.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "eaa8b84d-69d0-4170-9f7d-8179ea948cde", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Config.meta b/assets/Script/module/Config.meta new file mode 100644 index 0000000..c57cc9c --- /dev/null +++ b/assets/Script/module/Config.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "8848cd9b-8115-456d-a656-2abcda1dadbe", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Config/GameConfig.ts b/assets/Script/module/Config/GameConfig.ts new file mode 100644 index 0000000..2ca60ab --- /dev/null +++ b/assets/Script/module/Config/GameConfig.ts @@ -0,0 +1,606 @@ + +import { MiniGameSdk } from "../../Sdk/MiniGameSdk"; +import { GameTool } from "../Tool/GameTool"; + + +const { ccclass, property } = cc._decorator; +@ccclass('GameConfig') +export class GameConfig { + //所有控制信息都通过GameAppStart内控制 + private static _instance: GameConfig = null; + + static GAME_DATA: any[]; + //关卡数据 + //用户需要存储在本地的数据, 金币,关卡等级,体力值以及恢复,道具数量。 + + + static CUSTOM_INFO: { + moveSpeed: number; //洪峰移动速度 + waitTime: number; //洪峰冲击倒计时 + fastPath: number; //最短路径 + }[]; + static TIME_INFO: { + waterSpeed: number[]; //洪峰速度 + totalTime: number; //游戏总时长 + waterTime: number[]; //洪峰来的倒计时 + roadSpeed: number; //河道修筑速度 + ReinforceSpeed: number; //加固时间速度 + Xi_SoilSpeed: number; + }; + //用于盛放埋点数据上传,每次上传后清空 + static CLICK_DATA: { + type: number; //上传数据类型 + success: boolean; //此局游戏正确与否 + round: number; //回合数轮次 + getScore: number; //本轮得分,失败为0分 + cumulativeScore: number; //本剧游戏总计得分 + mapId: string; //地图ID + difficulty: number; //地图难度 + optimizedSteps: number; //关卡最短步数 + usedSteps: number; //玩家修建总步数 + stepList: any[]; //U、D、L、R X 息壤 F 加固 + startTime: number; //从游戏开始到玩家操作的第一步截止时间 单位毫秒 + submitTime: number; //从第一步操作到提交时间,如果未提交为-1 单位毫秒 + duration: number; //游戏总用时(截止到提交) 单位毫秒 + drawingBack: number; //后退次数 + drawingReset: number; //清空次数 + timer: number; //游戏倒计时剩余时长 秒 + }; + + static TIP_ERR: string[]; //修筑失败错误提示 + + static BLOCK_INFO: {}[][]; + //static WALL_INFO: ({ id: number; num: number; block: number; color: number; type: number; special: number; length: number; }[] | { id: number; num: number; block: number; color: number; type: number; special: number; }[])[]; + static LEVEL_INFO: ({ id: string; map: number[]; risefall?: undefined; gap?: undefined; } | { id: string; map: number[]; risefall: { pos: cc.Vec2; color: number; }[]; gap?: undefined; } | { id: string; map: number[]; gap: cc.Vec2[]; risefall?: undefined; })[]; + static WALL_INFO: (({ id: number; num: number; block: number; color: number; special: number; length: number; lock?: undefined; } | { id: number; num: number; block: number; color: number; special: number; length: number; lock: boolean; })[] | ({ id: number; num: number; block: number; color: number; special: number; length: number; freeze?: undefined; } | { id: number; num: number; block: number; color: number; special: number; length: number; freeze: number; })[])[]; + static PROP_INFO: ({ pos1: { x: number; y: number; z: number; }; pos2: { x: number; y: number; z: number; }; pos3: { x: number; y: number; z: number; }; pos4: { x: number; y: number; z: number; }; pos5: { x: number; y: number; z: number; }; pos6: { x: number; y: number; z: number; }; } | { pos1: { x: number; y: number; z: number; }; pos2: { x: number; y: number; z: number; }; pos3: { x: number; y: number; z: number; }; pos4: { x: number; y: number; z: number; }; pos5: { x: number; y: number; z: number; }; pos6?: undefined; })[]; + static NEW_LEVEL: any; + static NEW_GUIDE: any; + + static TA: any; + static GE: any; + static GM_INFO: { + // isEnd: false, + mean_Time: number; //平均放箭速度 + hp: number; //体力值 + review: number; //复活次数 + reviewBoom: number; //炸弹复活次数 + reviewDoor: number; //门复活次数 + currSeed: number; //用于随机数种子 + openid: string; //微信用户唯一id + gameId: string; //游戏ID + userId: number; //用户ID + scode: string; //用户code,从网页后缀获取 + username: string; //用户名称 + useravatar: string; //用户头像地址 + useravatarIcon: string; //用户头像 + useravaterkuang: string; //用户头像框 + guide: boolean; //是否有引导 + url: string; //访问域名 + coin: number; //用户金币 + success: boolean; //用户游戏成功与否 + matchId: any; //用于埋点上传的ID + gameState: boolean; custom: number; //用于测试跳关卡 + round: number; //回合数 + level: number; //具体游戏内进行到第几步 + stepTimeList: number; //整局游戏用时,由于涉及场景切换,数据需要保留 + successList: any[]; //整局胜负 + first: boolean; //是否首次进入游戏 + score: number; //总得分 + scale: number; //玩家总计成功点火数 + allOutTradeNo: any[]; //订单号数组 + min_Time: number; //体力恢复的剩余时间 + freezeAmount: number; //冻结道具次数 + hammerAmount: number; //锤子道具次数 + magicAmount: number; //魔法棒道具次数 + musicOpen: boolean; //音乐 + effectOpen: boolean; //音效 + vibrateOpen: boolean; //震动 + coinnum: number; //每局的金币数 + paid_user: boolean; //是否是付费用户 + version: number; //版本号 + shushu_DistinctId: string; //数数访客ID + shushu_AccountId: string; //数数账号ID + uid: string; //用户和后端唯一id + userPowerTime: number; //用户体力恢复时间 + freezeFirst: boolean; //冻结道具第一次 + hammerFirst: boolean; //锤子道具第一次 + magicAFirst: boolean; //魔法棒道具第一次 + winStreakFirst: boolean; //连胜第一次 + hp_Max: number; //体力最大值 + doubleCoin: number; //是否双倍 + monthTime: number; //月卡时间 + revive: number; //复活礼包购买次数 + otherUid: string; //其他被帮助用户id + otherLevel: number; //其他被帮助用户等级 + helpLevel: number; //帮助用户关卡 + iosShopOrder: string; //ios订单号商城 + iosMonthOrder: string; //ios订单号月卡 + iosReviveOrder: string; //ios订单号复活 + iosStarterOrder: string; //ios订单号新手 + starter_packTime: number; //新手礼包活动时间 + wxFriend: boolean; //微信好友信息授权 + wxUserInfo: boolean; //微信用户信息授权 + winStreak: number; //连胜次数 + winState: boolean //是否延续连胜状态 + tasks: {}; //任务 + }; + + + + + + + + + + + //游戏内信息 + + static get Instance() { + if (this._instance == null) { + this._instance = new GameConfig(); + } + return this._instance; + } + //getSeedRandom + static init(Authentication) { + //@ts-ignore + + this.TA = null; + this.CLICK_init(); + this.GM_INFO_init(); + this.LEVEL_INFO_init(false, 0); + + var self = this; + //GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次 + this.GAME_DATA = [ + ] + + + // if(!Authentication) self.Authentication(); + } + + + + static generateUUID(): string { + return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { + const r = Math.random() * 16 | 0; + const v = c === 'x' ? r : (r & 0x3 | 0x8); + return v.toString(16); + }); + } + + // 版本比较函数 + static compareVersion(v1: string, v2: string): number { + const arr1 = v1.split('.'); + const arr2 = v2.split('.'); + const len = Math.max(arr1.length, arr2.length); + + for (let i = 0; i < len; i++) { + const num1 = parseInt(arr1[i] || '0', 10); + const num2 = parseInt(arr2[i] || '0', 10); + if (num1 > num2) { + return 1; + } else if (num1 < num2) { + return -1; + } + } + + return 0; + } + + static GM_INFO_SET(key, value) { + this.GM_INFO[key] = value; + } + static CLICK_init() { + this.CLICK_DATA = + { + type: 1, //上传数据类型 + success: false, //此局游戏正确与否 + round: 0, //回合数轮次 + getScore: 0, //本轮得分,失败为0分 + cumulativeScore: 0, //本剧游戏总计得分 + mapId: "", //地图ID + difficulty: 0, //地图难度 + optimizedSteps: 0, //关卡最短步数 + usedSteps: 0, //玩家修建总步数 + stepList: [], //U、D、L、R X 息壤 F 加固 + startTime: -1, //从游戏开始到玩家操作的第一步截止时间 单位毫秒 + submitTime: -1, //从第一步操作到提交时间,如果未提交为-1 单位毫秒 + duration: 0, //游戏总用时(截止到提交) 单位毫秒 如果未他移交则为时间上限 + drawingBack: 0, //后退次数 + drawingReset: 0, //清空次数 + timer: 0 //测评倒计时剩余时间 去秒 + + } + } + + static CLICK_SET(key, value) { + this.CLICK_DATA[key] = value; + } + + //数据备用 + static GM_INFO_init() { + this.GM_INFO = { + // isEnd: false, + mean_Time: 0, //平均放箭速度 + hp: 5, //体力值 + review: 0, //复活次数 + reviewBoom: 0, //炸弹复活次数 + reviewDoor: 0, //门复活次数 + currSeed: 200000, //用于随机数种子 + openid: "", //微信用户唯一id + gameId: "100001", //游戏ID + userId: 0, //用户ID + scode: "", //用户code,从网页后缀获取 + username: "user", //用户名称 + useravatar: "", //用户头像地址 + useravatarIcon: "icon_0", //用户头像 + useravaterkuang: "kuang_1", //用户头像框 + guide: true, //是否有引导 + url: "https://api.sparkus.cn",//访问域名 + coin: 0, //用户金币 + success: false, //用户游戏成功与否 + matchId: null, //用于埋点上传的ID + gameState: false, + custom: 0, //用于测试跳关卡 + round: 0, //回合数 + level: 0, //具体游戏内进行到第几步 + stepTimeList: 0, //整局游戏用时,由于涉及场景切换,数据需要保留 + successList: [], //整局胜负 + first: false, //是否首次进入游戏 + score: 0, //总得分 + scale: 1, //玩家总计成功点火数 + allOutTradeNo: [], //订单号数组 + min_Time: 0, //体力恢复的剩余时间 + freezeAmount: 3, //冻结道具次数 + hammerAmount: 3, //锤子道具次数 + magicAmount: 3, //魔法棒道具次数 + musicOpen: true, //音乐 + effectOpen: true, //音效 + vibrateOpen: true, //震动 + coinnum: 0, //每局的金币数 + paid_user: false, //是否是付费用户 + version: 1.5, //版本号 + shushu_DistinctId: "", //数数访客ID + shushu_AccountId: "", //数数账号ID + uid: "", //用户和后端唯一id + userPowerTime: 0, //用户体力恢复时间 + freezeFirst: false, //冻结道具第一次 + hammerFirst: false, //锤子道具第一次 + magicAFirst: false, //魔法棒道具第一次 + winStreakFirst: false, //每次第一次连胜 + hp_Max: 5, //体力最大值 + doubleCoin: 1, //是否双倍 + monthTime: 0, //月卡时间 + revive: 0, //复活礼包购买次数 + otherUid: "", //其他被帮助用户id + otherLevel: 0, //其他被帮助用户等级 + helpLevel: 0, //帮助用户等级 + iosShopOrder: "", //ios订单号商城 + iosMonthOrder: "", //ios订单号月卡 + iosReviveOrder: "", //ios订单号复活 + iosStarterOrder: "", //ios订单号新手 + starter_packTime: 0, //新手礼包活动时间 + wxFriend: false, //微信好友信息授权 + wxUserInfo: false, //微信用户信息授权 + winState: false, //是否延续连胜状态 + winStreak: 0, //连胜 + tasks: { levelPass: { value: 0, target: 0, state: 0 }, share: { value: 0, target: 0, state: 0 }, useEnergy: { value: 0, target: 0, state: 0 }, useProp: { value: 0, target: 0, state: 0 } } + }; + // this.setCode(this.getKey("scode")); + // this.GM_INFO.level = 0; + + + cc.resources.load("Json/NEW_LEVEL", (err: any, res: cc.JsonAsset) => { + if (err) { + console.error("加载 NEW_LEVEL.JSON 失败:", err); + return; + } + const newLevelData = res.json; + this.NEW_LEVEL = newLevelData.NEW_LEVEL; + // 可以根据需求对 newLevelData 进行处理 + // //console.log("NEW_LEVEL.JSON 加载成功:", newLevelData); + }) + cc.resources.load("Json/NEW_GUIDE", (err: any, res: cc.JsonAsset) => { + if (err) { + console.error("加载 NEW_GUIDE.JSON 失败:", err); + return; + } + const newLevelData = res.json; + this.NEW_GUIDE = newLevelData.NEW_GUIDE; + // 可以根据需求对 newLevelData 进行处理 + // //console.log("NEW_GUIDE.JSON 加载成功:", newLevelData); + }) + } + + + static LEVEL_INFO_init(type, time) { + // 示例 围墙会根据缺的地块自动生成 + // 带缺口 {"id":"1006","map":[10,11],"gap":[cc.v2(4,9),cc.v2(5,9)]}, + // 带升降地块 {"id":"1004","map":[7,8],"risefall":[{pos:cc.v2(5,4),color:2},{pos:cc.v2(5,5),color:5}]}, + // 如果普通的就 {"id":"1001","map":[6,7]}, 这个样子就可以了 + var self = this; + + + if (cc.fx.GameTool.maxLevel()) { + MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); + return; + } + let name = "Json/level" + (cc.fx.GameConfig.GM_INFO.level + 1); + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + console.log("进入特殊帮助关卡,可越过自己关卡等级"); + name = "Json/level" + cc.fx.GameConfig.GM_INFO.otherLevel; + } + + let bundleName = "custom"; // 替换为实际的分包名称 + cc.assetManager.loadBundle(bundleName, (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + return; + } + bundle.load(name, cc.JsonAsset, (err: Error, res: cc.JsonAsset) => { + if (err) { + console.log("没有这个关卡:", name); + cc.fx.GameTool.addLevel(null, null); + self.LEVEL_INFO_init(type, time); + return; + } + let jsonData: object = res.json!; + self.BLOCK_INFO = jsonData["BLOCK_INFO"]; + self.LEVEL_INFO = jsonData["LEVEL_INFO"]; + self.WALL_INFO = jsonData["WALL_INFO"]; + // //console.log("配置加载完成"); + if (type) { + cc.director.preloadScene("GameScene", () => { + if (time == 0) cc.director.loadScene("GameScene"); + else { + setTimeout(() => { + cc.director.loadScene("GameScene"); + }, time); + } + }) + } + }); + }); + + // //console.log("关卡名称:",name); + // name = "Json/level" + 68; + // cc.fx.StorageMessage.setStorage("level",cc.fx.GameConfig.GM_INFO.level.toString()); + // cc.resources.load(name, (err: any, res: cc.JsonAsset) => { + // if (err) { + // console.log("没有这个关卡:", name) + // cc.fx.GameTool.addLevel(null, null); + // self.LEVEL_INFO_init(type, time); + // return; + // } + // let jsonData: object = res.json!; + // self.BLOCK_INFO = jsonData["BLOCK_INFO"]; + // self.LEVEL_INFO = jsonData["LEVEL_INFO"]; + // self.WALL_INFO = jsonData["WALL_INFO"]; + // // //console.log("配置加载完成"); + // if (type) { + // cc.director.preloadScene("GameScene", () => { + // if (time == 0) cc.director.loadScene("GameScene"); + // else { + // setTimeout(() => { + // cc.director.loadScene("GameScene"); + // }, time); + // } + // }) + // } + + // }) + + + //道具位置信息 + this.PROP_INFO = [ + { + "pos1": { "x": -66, "y": 60, "z": 0 }, + "pos2": { "x": -19, "y": 36, "z": 0 }, + "pos3": { "x": -34.362, "y": 13.246, "z": 0 }, + "pos4": { "x": -17, "y": 12, "z": 0 }, + "pos5": { "x": -85, "y": 70, "z": 0 }, + "pos6": { "x": -5, "y": 3, "z": 0 }, + }, + { + "pos1": { "x": -126, "y": 61, "z": 0 }, + "pos2": { "x": -25.792, "y": 34.675, "z": 0 }, + "pos3": { "x": -94.792, "y": 21.675, "z": 0 }, + "pos4": { "x": -20, "y": 13, "z": 0 }, + "pos5": { "x": -140, "y": 68, "z": 0 }, + "pos6": { "x": -2, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -67, "y": 122, "z": 0 }, + "pos2": { "x": -20, "y": 94, "z": 0 }, + "pos3": { "x": -34.792, "y": 23.675, "z": 0 }, + "pos4": { "x": -14, "y": 24, "z": 0 }, + "pos5": { "x": -84, "y": 128, "z": 0 }, + "pos6": { "x": -5, "y": 3, "z": 0 }, + }, + { + "pos1": { "x": -178, "y": 61, "z": 0 }, + "pos2": { "x": -34.792, "y": 37.675, "z": 0 }, + "pos3": { "x": -150, "y": 23.675, "z": 0 }, + "pos4": { "x": -22, "y": 16, "z": 0 }, + "pos5": { "x": -200, "y": 67, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -63, "y": 178, "z": 0 }, + "pos2": { "x": -17.792, "y": 166.675, "z": 0 }, + "pos3": { "x": -31.792, "y": 33.675, "z": 0 }, + "pos4": { "x": -14, "y": 37, "z": 0 }, + "pos5": { "x": -78, "y": 182, "z": 0 }, + "pos6": { "x": 0, "y": 2, "z": 0 }, + }, + { + "pos1": { "x": -123, "y": 124, "z": 0 }, + "pos2": { "x": -25.792, "y": 99.675, "z": 0 }, + "pos3": { "x": -97.792, "y": 27.675, "z": 0 }, + "pos4": { "x": -27, "y": 19, "z": 0 }, + "pos5": { "x": -135, "y": 127, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -64, "y": 178, "z": 0 }, + "pos2": { "x": -24.792, "y": 275.675, "z": 0 }, + "pos3": { "x": -31.792, "y": 35.675, "z": 0 }, + "pos4": { "x": -7, "y": 39, "z": 0 }, + "pos5": { "x": -77, "y": 188, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -178, "y": 186, "z": 0 }, + "pos2": { "x": -31.792, "y": 163.675, "z": 0 }, + "pos3": { "x": -33.792, "y": 34.675, "z": 0 }, + "pos4": { "x": -18, "y": 30, "z": 0 }, + "pos5": { "x": -200, "y": 192, "z": 0 }, + "pos6": { "x": 0, "y": 5, "z": 0 }, + }, + { + "pos1": { "x": -186, "y": 178, "z": 0 }, + "pos2": { "x": -25.792, "y": 38.675, "z": 0 }, + "pos3": { "x": -153.792, "y": 34.675, "z": 0 }, + "pos4": { "x": -23, "y": 14, "z": 0 }, + "pos5": { "x": -200, "y": 185, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -183, "y": 64, "z": 0 }, + "pos2": { "x": -37.792, "y": 37.675, "z": 0 }, + "pos3": { "x": -36.792, "y": 26.675, "z": 0 }, + "pos4": { "x": -24, "y": 17, "z": 0 }, + "pos5": { "x": -212, "y": 74, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -65, "y": 177, "z": 0 }, + "pos2": { "x": 93.208, "y": 276.675, "z": 0 }, + "pos3": { "x": -33.792, "y": 34.675, "z": 0 }, + "pos4": { "x": 3, "y": 31, "z": 0 }, + "pos5": { "x": -80, "y": 190, "z": 0 }, + "pos6": { "x": 0, "y": 3, "z": 0 }, + }, + { + "pos1": { "x": 58, "y": 179, "z": 0 }, + "pos2": { "x": 205.225, "y": 154.034, "z": 0 }, + "pos3": { "x": -29.642, "y": 25.691, "z": 0 }, + "pos4": { "x": 7.218, "y": 29.765, "z": 0 }, + "pos5": { "x": 45, "y": 185, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -68, "y": 182, "z": 0 }, + "pos2": { "x": -25.792, "y": 37.675, "z": 0 }, + "pos3": { "x": -35.792, "y": 33.675, "z": 0 }, + "pos4": { "x": -14, "y": 12, "z": 0 }, + "pos5": { "x": -82, "y": 190, "z": 0 }, + "pos6": { "x": -2, "y": 1, "z": 0 }, + }, + { + "pos1": { "x": -184, "y": 62, "z": 0 }, + "pos2": { "x": -35.792, "y": 36.675, "z": 0 }, + "pos3": { "x": -271.792, "y": 24.675, "z": 0 }, + "pos4": { "x": -17, "y": 20, "z": 0 }, + "pos5": { "x": -200, "y": 72, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -62, "y": 175, "z": 0 }, + "pos2": { "x": 87.208, "y": 164.675, "z": 0 }, + "pos3": { "x": -31.792, "y": 35.675, "z": 0 }, + "pos4": { "x": -6, "y": 24, "z": 0 }, + "pos5": { "x": -79, "y": 172, "z": 0 }, + "pos6": { "x": 0, "y": 5, "z": 0 }, + }, + { + "pos1": { "x": -184, "y": 72, "z": 0 }, + "pos2": { "x": -33.792, "y": 38.675, "z": 0 }, + "pos3": { "x": -154.792, "y": 29.675, "z": 0 }, + "pos4": { "x": -29, "y": 16, "z": 0 }, + "pos5": { "x": -201, "y": 85, "z": 0 }, + "pos6": { "x": -1, "y": 3, "z": 0 }, + }, + { + "pos1": { "x": -64, "y": 181, "z": 0 }, + "pos2": { "x": 95.208, "y": 155.675, "z": 0 }, + "pos3": { "x": -30.792, "y": 36.675, "z": 0 }, + "pos4": { "x": -12, "y": 32, "z": 0 }, + "pos5": { "x": -78, "y": 190, "z": 0 }, + "pos6": { "x": 0, "y": 3, "z": 0 }, + }, + { + "pos1": { "x": -65, "y": 178, "z": 0 }, + "pos2": { "x": -21.792, "y": 156.675, "z": 0 }, + "pos3": { "x": -31.792, "y": 37.675, "z": 0 }, + "pos4": { "x": -12, "y": 32, "z": 0 }, + "pos5": { "x": -78, "y": 188, "z": 0 }, + "pos6": { "x": 0, "y": 2, "z": 0 }, + }, + { + "pos1": { "x": -62, "y": 183, "z": 0 }, + "pos2": { "x": 88.208, "y": 162.675, "z": 0 }, + "pos3": { "x": -29.792, "y": 41.675, "z": 0 }, + "pos4": { "x": -12, "y": 18, "z": 0 }, + "pos5": { "x": -80, "y": 188, "z": 0 }, + "pos6": { "x": -4, "y": 2, "z": 0 }, + }, + { + "pos1": { "x": -67, "y": 80, "z": 0 }, + "pos2": { "x": -26.792, "y": 32.675, "z": 0 }, + "pos3": { "x": -34.792, "y": 23.675, "z": 0 }, + "pos4": { "x": -12, "y": 18, "z": 0 }, + "pos5": { "x": -84, "y": 90, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -184, "y": 80, "z": 0 }, + "pos2": { "x": -25.792, "y": 34.675, "z": 0 }, + "pos3": { "x": -155.792, "y": 25.675, "z": 0 }, + "pos4": { "x": -18, "y": 26, "z": 0 }, + "pos5": { "x": -196, "y": 96, "z": 0 }, + "pos6": { "x": 0, "y": 0, "z": 0 }, + }, + { + "pos1": { "x": -62, "y": 160, "z": 0 }, + "pos2": { "x": 95.208, "y": 158.675, "z": 0 }, + "pos3": { "x": -33.792, "y": 29.675, "z": 0 }, + "pos4": { "x": -18, "y": 26, "z": 0 }, + "pos5": { "x": -78, "y": 170, "z": 0 }, + "pos6": { "x": 0, "y": 2, "z": 0 }, + }, + { + "pos1": { "x": -68, "y": 160, "z": 0 }, + "pos2": { "x": -25.792, "y": 156.675, "z": 0 }, + "pos3": { "x": -35.792, "y": 27.675, "z": 0 }, + "pos4": { "x": -25, "y": 40, "z": 0 }, + "pos5": { "x": -82, "y": 170, "z": 0 }, + "pos6": { "x": -2, "y": 2, "z": 0 }, + } + ]; + // this.PROP_INFO = [{"pos1": {"x": -60,"y": 60,"z": 0},"pos2": {"x": -16.442,"y": 30,"z": 0},"pos3": {"x": -34.362,"y": 13.246,"z": 0},"pos4": {"x": -17,"y": 12,"z": 0}},{"pos1": {"x": -126,"y": 63,"z": 0},"pos2": {"x": -25.792,"y": 34.675,"z": 0},"pos3": {"x": -94.792,"y": 21.675,"z": 0},"pos4": {"x": -20,"y": 13,"z": 0}},{"pos1": {"x": -60,"y": 125,"z": 0},"pos2": {"x": -12.792,"y": 92.675,"z": 0},"pos3": {"x": -34.792,"y": 23.675,"z": 0},"pos4": {"x": -14,"y": 24,"z": 0}},{"pos1": {"x": -185,"y": 63,"z": 0},"pos2": {"x": -34.792,"y": 37.675,"z": 0},"pos3": {"x": -154.792,"y": 23.675,"z": 0},"pos4": {"x": -22,"y": 16,"z": 0}},{"pos1": {"x": -57,"y": 178,"z": 0},"pos2": {"x": -17.792,"y": 166.675,"z": 0},"pos3": {"x": -31.792,"y": 33.675,"z": 0},"pos4": {"x": -14,"y": 37,"z": 0}},{"pos1": {"x": -123,"y": 127,"z": 0},"pos2": {"x": -25.792,"y": 99.675,"z": 0},"pos3": {"x": -97.792,"y": 27.675,"z": 0},"pos4": {"x": -27,"y": 19,"z": 0}},{"pos1": {"x": -62,"y": 181,"z": 0},"pos2": {"x": -24.792,"y": 275.675,"z": 0},"pos3": {"x": -31.792,"y": 35.675,"z": 0},"pos4": {"x": -7,"y": 39,"z": 0}},{"pos1": {"x": -181,"y": 180,"z": 0},"pos2": {"x": -31.792,"y": 163.675,"z": 0},"pos3": {"x": -33.792,"y": 34.675,"z": 0},"pos4": {"x": -18,"y": 30,"z": 0}},{"pos1": {"x": -182,"y": 182,"z": 0},"pos2": {"x": -25.792,"y": 38.675,"z": 0},"pos3": {"x": -153.792,"y": 34.675,"z": 0},"pos4": {"x": -23,"y": 14,"z": 0}},{"pos1": {"x": -186,"y": 61,"z": 0},"pos2": {"x": -37.792,"y": 37.675,"z": 0},"pos3": {"x": -36.792,"y": 26.675,"z": 0},"pos4": {"x": -24,"y": 17,"z": 0}},{"pos1": {"x": -62,"y": 177,"z": 0},"pos2": {"x": 93.208,"y": 276.675,"z": 0},"pos3": {"x": -33.792,"y": 34.675,"z": 0},"pos4": {"x": 3,"y": 31,"z": 0}},{"pos1": {"x": 58,"y": 179,"z": 0},"pos2": {"x": 205.225,"y": 154.034,"z": 0},"pos3": {"x": -29.642,"y": 25.691,"z": 0},"pos4": {"x": 7.218,"y": 29.765,"z": 0}},{"pos1": {"x": -57,"y": 182,"z": 0},"pos2": {"x": -25.792,"y": 37.675,"z": 0},"pos3": {"x": -35.792,"y": 33.675,"z": 0},"pos4": {"x": -14,"y": 12,"z": 0}},{"pos1": {"x": -180,"y": 62,"z": 0},"pos2": {"x": -35.792,"y": 36.675,"z": 0},"pos3": {"x": -271.792,"y": 24.675,"z": 0},"pos4": {"x": -17,"y": 20,"z": 0}},{"pos1": {"x": -62,"y": 178,"z": 0},"pos2": {"x": 87.208,"y": 164.675,"z": 0},"pos3": {"x": -31.792,"y": 35.675,"z": 0},"pos4": {"x": -6,"y": 24,"z": 0}},{"pos1": {"x": -176,"y": 60,"z": 0},"pos2": {"x": -33.792,"y": 38.675,"z": 0},"pos3": {"x": -154.792,"y": 29.675,"z": 0},"pos4": {"x": -29,"y": 16,"z": 0}},{"pos1": {"x": -60,"y": 181,"z": 0},"pos2": {"x": 95.208,"y": 155.675,"z": 0},"pos3": {"x": -30.792,"y": 36.675,"z": 0},"pos4": {"x": -12,"y": 32,"z": 0}},{"pos1": {"x": -63,"y": 178,"z": 0},"pos2": {"x": -21.792,"y": 156.675,"z": 0},"pos3": {"x": -31.792,"y": 37.675,"z": 0},"pos4": {"x": -12,"y": 32,"z": 0}},{"pos1": {"x": -60,"y": 183,"z": 0},"pos2": {"x": 88.208,"y": 162.675,"z": 0},"pos3": {"x": -29.792,"y": 41.675,"z": 0},"pos4": {"x": -12,"y": 18,"z": 0}},{"pos1": {"x": -64,"y": 58,"z": 0},"pos2": {"x": -26.792,"y": 32.675,"z": 0},"pos3": {"x": -34.792,"y": 23.675,"z": 0},"pos4": {"x": -12,"y": 18,"z": 0}},{"pos1": {"x": -184,"y": 62,"z": 0},"pos2": {"x": -25.792,"y": 34.675,"z": 0},"pos3": {"x": -155.792,"y": 25.675,"z": 0},"pos4": {"x": -18,"y": 26,"z": 0}},{"pos1": {"x": -57,"y": 190,"z": 0},"pos2": {"x": 95.208,"y": 158.675,"z": 0},"pos3": {"x": -33.792,"y": 29.675,"z": 0},"pos4": {"x": -18,"y": 26,"z": 0}},{"pos1": {"x": -71,"y": 184,"z": 0},"pos2": {"x": -25.792,"y": 156.675,"z": 0},"pos3": {"x": -35.792,"y": 27.675,"z": 0},"pos4": {"x": -25,"y": 40,"z": 0}}]; + } + + + + static setCode(code) { + this.GM_INFO.scode = code; + } + + static getKey(key) { + // var reg = new RegExp('(^|&)' + key + '=([^&]*)(&|$)', 'i'); + // var r = window.location.search.substring(1).match(reg); + // if (r != null) { + // return unescape(r[2]); + // } + return ""; + } + + + static Authentication() { + cc.fx.GameTool.Authentication(); + } +} + diff --git a/assets/Script/module/Config/GameConfig.ts.meta b/assets/Script/module/Config/GameConfig.ts.meta new file mode 100644 index 0000000..4bff73c --- /dev/null +++ b/assets/Script/module/Config/GameConfig.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "c5692be7-8703-45e4-9f67-23b54d290356", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Crypto.meta b/assets/Script/module/Crypto.meta new file mode 100644 index 0000000..0f7b146 --- /dev/null +++ b/assets/Script/module/Crypto.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "13a0b173-d59e-4a9d-b5e3-4dbe4dc37cc1", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Crypto/HttpUtil.ts b/assets/Script/module/Crypto/HttpUtil.ts new file mode 100644 index 0000000..f6f877b --- /dev/null +++ b/assets/Script/module/Crypto/HttpUtil.ts @@ -0,0 +1,114 @@ + +const {ccclass, property} = cc._decorator; +import CryptoJS = require('./crypto-js.min.js'); //引用AES源码js + +const BASE_URL = "https://api.sparkus.cn"; +//只负责网络接口 次类只负责和后端交互,不负责处理数据 数据处理在GameTool +@ccclass +export default class HttpUtil extends cc.Component { + //排行榜 + +} + + +// 响应拦截器 +// Rq.interceptors.response.use(responseHandler) +const config = { + gameId: "100012", + secretKey: "onnfPKJW", + EK:"hui231%1" +}; + +interface CrypotoType { + encryptByDES: any + decryptByDES: any + hmacSha256: any +} + +class Crypoto implements CrypotoType { + // 加密的向明值,自己根据项目实际情况定,需要跟后端开发保持一致 + private keyHex = this.getHetKey() + private getHetKey() { + return CryptoJS.enc.Utf8.parse(config.EK); + } + + /** DES加密 */ + encryptByDES(message: string, secret?: string) { + if(!message) { + return message + } + const key = secret? CryptoJS.enc.Utf8.parse(secret): this.keyHex + const encrypted = CryptoJS.DES.encrypt(message, key, { + mode: CryptoJS.mode.ECB, + padding: CryptoJS.pad.Pkcs7 + }); + return encrypted.toString() + } + + /** DES解密 */ + decryptByDES(message: string, secret?: string) { + const key = secret? CryptoJS.enc.Utf8.parse(secret): this.keyHex + + const decrypted = CryptoJS.DES.decrypt({ + ciphertext: CryptoJS.enc.Base64.parse(message) + }, key, { + mode: CryptoJS.mode.ECB, + padding: CryptoJS.pad.Pkcs7 + }) + + return decrypted.toString(CryptoJS.enc.Utf8) + } + + /** hmacSHA256加密 */ + hmacSha256(message: string, secret?: string) { + const keyHex = secret? CryptoJS.enc.Utf8.parse(secret): this.keyHex + + const hash = CryptoJS.HmacSHA256(message, keyHex); + return hash.toString() + } + + /** hmacSHA256验证 */ + verifyHmacSha256(message: string, signature: string) { + const hash = CryptoJS.HmacSHA256(message, this.keyHex); + return hash.toString() === signature + } + + /** CBC加密 */ + encryptCBC(word: string) { + if (!word) { + return word; + } + const srcs = CryptoJS.enc.Utf8.parse(word); + const encrypted = CryptoJS.AES.encrypt(srcs, this.keyHex, { + iv: this.keyHex, + mode: CryptoJS.mode.CBC, + padding: CryptoJS.pad.ZeroPadding + }); + return encrypted.toString(); + } + + /** CBC解密 */ + decryptCBC(word: string) { + if (!word) { + return word; + } + const encryptedHexStr = CryptoJS.enc.Hex.parse(word); + const srcs = CryptoJS.enc.Base64.stringify(encryptedHexStr); + const decrypt = CryptoJS.AES.decrypt(srcs, this.keyHex, { + iv: this.keyHex, + mode: CryptoJS.mode.CBC, + padding: CryptoJS.pad.ZeroPadding + }); + const decryptedStr = decrypt.toString(CryptoJS.enc.Utf8); + return decryptedStr.toString(); + } +} +const fxCry = new Crypoto(); + + + + + + + + diff --git a/assets/Script/module/Crypto/HttpUtil.ts.meta b/assets/Script/module/Crypto/HttpUtil.ts.meta new file mode 100644 index 0000000..878e61f --- /dev/null +++ b/assets/Script/module/Crypto/HttpUtil.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "771a3d9a-4013-4654-a777-fbaea0c93280", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Crypto/crypto-js.min.js b/assets/Script/module/Crypto/crypto-js.min.js new file mode 100644 index 0000000..cfbb59e --- /dev/null +++ b/assets/Script/module/Crypto/crypto-js.min.js @@ -0,0 +1,3 @@ +!function(t,r){"object"==typeof exports?module.exports=exports=r():"function"==typeof define&&define.amd?define([],r):t.CryptoJS=r()}(this,function(){var t=t||function(t,r){var e=Object.create||function(){function t(){}return function(r){var e;return t.prototype=r,e=new t,t.prototype=null,e}}(),i={},n=i.lib={},o=n.Base=function(){return{extend:function(t){var r=e(this);return t&&r.mixIn(t),r.hasOwnProperty("init")&&this.init!==r.init||(r.init=function(){r.$super.init.apply(this,arguments)}),r.init.prototype=r,r.$super=this,r},create:function(){var t=this.extend();return t.init.apply(t,arguments),t},init:function(){},mixIn:function(t){for(var r in t)t.hasOwnProperty(r)&&(this[r]=t[r]);t.hasOwnProperty("toString")&&(this.toString=t.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),s=n.WordArray=o.extend({init:function(t,e){t=this.words=t||[],e!=r?this.sigBytes=e:this.sigBytes=4*t.length},toString:function(t){return(t||c).stringify(this)},concat:function(t){var r=this.words,e=t.words,i=this.sigBytes,n=t.sigBytes;if(this.clamp(),i%4)for(var o=0;o>>2]>>>24-o%4*8&255;r[i+o>>>2]|=s<<24-(i+o)%4*8}else for(var o=0;o>>2]=e[o>>>2];return this.sigBytes+=n,this},clamp:function(){var r=this.words,e=this.sigBytes;r[e>>>2]&=4294967295<<32-e%4*8,r.length=t.ceil(e/4)},clone:function(){var t=o.clone.call(this);return t.words=this.words.slice(0),t},random:function(r){for(var e,i=[],n=function(r){var r=r,e=987654321,i=4294967295;return function(){e=36969*(65535&e)+(e>>16)&i,r=18e3*(65535&r)+(r>>16)&i;var n=(e<<16)+r&i;return n/=4294967296,n+=.5,n*(t.random()>.5?1:-1)}},o=0;o>>2]>>>24-n%4*8&255;i.push((o>>>4).toString(16)),i.push((15&o).toString(16))}return i.join("")},parse:function(t){for(var r=t.length,e=[],i=0;i>>3]|=parseInt(t.substr(i,2),16)<<24-i%8*4;return new s.init(e,r/2)}},h=a.Latin1={stringify:function(t){for(var r=t.words,e=t.sigBytes,i=[],n=0;n>>2]>>>24-n%4*8&255;i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var r=t.length,e=[],i=0;i>>2]|=(255&t.charCodeAt(i))<<24-i%4*8;return new s.init(e,r)}},l=a.Utf8={stringify:function(t){try{return decodeURIComponent(escape(h.stringify(t)))}catch(t){throw new Error("Malformed UTF-8 data")}},parse:function(t){return h.parse(unescape(encodeURIComponent(t)))}},f=n.BufferedBlockAlgorithm=o.extend({reset:function(){this._data=new s.init,this._nDataBytes=0},_append:function(t){"string"==typeof t&&(t=l.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes},_process:function(r){var e=this._data,i=e.words,n=e.sigBytes,o=this.blockSize,a=4*o,c=n/a;c=r?t.ceil(c):t.max((0|c)-this._minBufferSize,0);var h=c*o,l=t.min(4*h,n);if(h){for(var f=0;f>>6-s%4*2;i[o>>>2]|=(a|c)<<24-o%4*8,o++}return n.create(i,o)}var e=t,i=e.lib,n=i.WordArray,o=e.enc;o.Base64={stringify:function(t){var r=t.words,e=t.sigBytes,i=this._map;t.clamp();for(var n=[],o=0;o>>2]>>>24-o%4*8&255,a=r[o+1>>>2]>>>24-(o+1)%4*8&255,c=r[o+2>>>2]>>>24-(o+2)%4*8&255,h=s<<16|a<<8|c,l=0;l<4&&o+.75*l>>6*(3-l)&63));var f=i.charAt(64);if(f)for(;n.length%4;)n.push(f);return n.join("")},parse:function(t){var e=t.length,i=this._map,n=this._reverseMap;if(!n){n=this._reverseMap=[];for(var o=0;o>>32-o)+r}function i(t,r,e,i,n,o,s){var a=t+(r&i|e&~i)+n+s;return(a<>>32-o)+r}function n(t,r,e,i,n,o,s){var a=t+(r^e^i)+n+s;return(a<>>32-o)+r}function o(t,r,e,i,n,o,s){var a=t+(e^(r|~i))+n+s;return(a<>>32-o)+r}var s=t,a=s.lib,c=a.WordArray,h=a.Hasher,l=s.algo,f=[];!function(){for(var t=0;t<64;t++)f[t]=4294967296*r.abs(r.sin(t+1))|0}();var u=l.MD5=h.extend({_doReset:function(){this._hash=new c.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(t,r){for(var s=0;s<16;s++){var a=r+s,c=t[a];t[a]=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8)}var h=this._hash.words,l=t[r+0],u=t[r+1],d=t[r+2],v=t[r+3],p=t[r+4],_=t[r+5],y=t[r+6],g=t[r+7],B=t[r+8],w=t[r+9],k=t[r+10],S=t[r+11],m=t[r+12],x=t[r+13],b=t[r+14],H=t[r+15],z=h[0],A=h[1],C=h[2],D=h[3];z=e(z,A,C,D,l,7,f[0]),D=e(D,z,A,C,u,12,f[1]),C=e(C,D,z,A,d,17,f[2]),A=e(A,C,D,z,v,22,f[3]),z=e(z,A,C,D,p,7,f[4]),D=e(D,z,A,C,_,12,f[5]),C=e(C,D,z,A,y,17,f[6]),A=e(A,C,D,z,g,22,f[7]),z=e(z,A,C,D,B,7,f[8]),D=e(D,z,A,C,w,12,f[9]),C=e(C,D,z,A,k,17,f[10]),A=e(A,C,D,z,S,22,f[11]),z=e(z,A,C,D,m,7,f[12]),D=e(D,z,A,C,x,12,f[13]),C=e(C,D,z,A,b,17,f[14]),A=e(A,C,D,z,H,22,f[15]),z=i(z,A,C,D,u,5,f[16]),D=i(D,z,A,C,y,9,f[17]),C=i(C,D,z,A,S,14,f[18]),A=i(A,C,D,z,l,20,f[19]),z=i(z,A,C,D,_,5,f[20]),D=i(D,z,A,C,k,9,f[21]),C=i(C,D,z,A,H,14,f[22]),A=i(A,C,D,z,p,20,f[23]),z=i(z,A,C,D,w,5,f[24]),D=i(D,z,A,C,b,9,f[25]),C=i(C,D,z,A,v,14,f[26]),A=i(A,C,D,z,B,20,f[27]),z=i(z,A,C,D,x,5,f[28]),D=i(D,z,A,C,d,9,f[29]),C=i(C,D,z,A,g,14,f[30]),A=i(A,C,D,z,m,20,f[31]),z=n(z,A,C,D,_,4,f[32]),D=n(D,z,A,C,B,11,f[33]),C=n(C,D,z,A,S,16,f[34]),A=n(A,C,D,z,b,23,f[35]),z=n(z,A,C,D,u,4,f[36]),D=n(D,z,A,C,p,11,f[37]),C=n(C,D,z,A,g,16,f[38]),A=n(A,C,D,z,k,23,f[39]),z=n(z,A,C,D,x,4,f[40]),D=n(D,z,A,C,l,11,f[41]),C=n(C,D,z,A,v,16,f[42]),A=n(A,C,D,z,y,23,f[43]),z=n(z,A,C,D,w,4,f[44]),D=n(D,z,A,C,m,11,f[45]),C=n(C,D,z,A,H,16,f[46]),A=n(A,C,D,z,d,23,f[47]),z=o(z,A,C,D,l,6,f[48]),D=o(D,z,A,C,g,10,f[49]),C=o(C,D,z,A,b,15,f[50]),A=o(A,C,D,z,_,21,f[51]),z=o(z,A,C,D,m,6,f[52]),D=o(D,z,A,C,v,10,f[53]),C=o(C,D,z,A,k,15,f[54]),A=o(A,C,D,z,u,21,f[55]),z=o(z,A,C,D,B,6,f[56]),D=o(D,z,A,C,H,10,f[57]),C=o(C,D,z,A,y,15,f[58]),A=o(A,C,D,z,x,21,f[59]),z=o(z,A,C,D,p,6,f[60]),D=o(D,z,A,C,S,10,f[61]),C=o(C,D,z,A,d,15,f[62]),A=o(A,C,D,z,w,21,f[63]),h[0]=h[0]+z|0,h[1]=h[1]+A|0,h[2]=h[2]+C|0,h[3]=h[3]+D|0},_doFinalize:function(){var t=this._data,e=t.words,i=8*this._nDataBytes,n=8*t.sigBytes;e[n>>>5]|=128<<24-n%32;var o=r.floor(i/4294967296),s=i;e[(n+64>>>9<<4)+15]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8),e[(n+64>>>9<<4)+14]=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),t.sigBytes=4*(e.length+1),this._process();for(var a=this._hash,c=a.words,h=0;h<4;h++){var l=c[h];c[h]=16711935&(l<<8|l>>>24)|4278255360&(l<<24|l>>>8)}return a},clone:function(){var t=h.clone.call(this);return t._hash=this._hash.clone(),t}});s.MD5=h._createHelper(u),s.HmacMD5=h._createHmacHelper(u)}(Math),function(){var r=t,e=r.lib,i=e.WordArray,n=e.Hasher,o=r.algo,s=[],a=o.SHA1=n.extend({_doReset:function(){this._hash=new i.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(t,r){for(var e=this._hash.words,i=e[0],n=e[1],o=e[2],a=e[3],c=e[4],h=0;h<80;h++){if(h<16)s[h]=0|t[r+h];else{var l=s[h-3]^s[h-8]^s[h-14]^s[h-16];s[h]=l<<1|l>>>31}var f=(i<<5|i>>>27)+c+s[h];f+=h<20?(n&o|~n&a)+1518500249:h<40?(n^o^a)+1859775393:h<60?(n&o|n&a|o&a)-1894007588:(n^o^a)-899497514,c=a,a=o,o=n<<30|n>>>2,n=i,i=f}e[0]=e[0]+i|0,e[1]=e[1]+n|0,e[2]=e[2]+o|0,e[3]=e[3]+a|0,e[4]=e[4]+c|0},_doFinalize:function(){var t=this._data,r=t.words,e=8*this._nDataBytes,i=8*t.sigBytes;return r[i>>>5]|=128<<24-i%32,r[(i+64>>>9<<4)+14]=Math.floor(e/4294967296),r[(i+64>>>9<<4)+15]=e,t.sigBytes=4*r.length,this._process(),this._hash},clone:function(){var t=n.clone.call(this);return t._hash=this._hash.clone(),t}});r.SHA1=n._createHelper(a),r.HmacSHA1=n._createHmacHelper(a)}(),function(r){var e=t,i=e.lib,n=i.WordArray,o=i.Hasher,s=e.algo,a=[],c=[];!function(){function t(t){for(var e=r.sqrt(t),i=2;i<=e;i++)if(!(t%i))return!1;return!0}function e(t){return 4294967296*(t-(0|t))|0}for(var i=2,n=0;n<64;)t(i)&&(n<8&&(a[n]=e(r.pow(i,.5))),c[n]=e(r.pow(i,1/3)),n++),i++}();var h=[],l=s.SHA256=o.extend({_doReset:function(){this._hash=new n.init(a.slice(0))},_doProcessBlock:function(t,r){for(var e=this._hash.words,i=e[0],n=e[1],o=e[2],s=e[3],a=e[4],l=e[5],f=e[6],u=e[7],d=0;d<64;d++){if(d<16)h[d]=0|t[r+d];else{var v=h[d-15],p=(v<<25|v>>>7)^(v<<14|v>>>18)^v>>>3,_=h[d-2],y=(_<<15|_>>>17)^(_<<13|_>>>19)^_>>>10;h[d]=p+h[d-7]+y+h[d-16]}var g=a&l^~a&f,B=i&n^i&o^n&o,w=(i<<30|i>>>2)^(i<<19|i>>>13)^(i<<10|i>>>22),k=(a<<26|a>>>6)^(a<<21|a>>>11)^(a<<7|a>>>25),S=u+k+g+c[d]+h[d],m=w+B;u=f,f=l,l=a,a=s+S|0,s=o,o=n,n=i,i=S+m|0}e[0]=e[0]+i|0,e[1]=e[1]+n|0,e[2]=e[2]+o|0,e[3]=e[3]+s|0,e[4]=e[4]+a|0,e[5]=e[5]+l|0,e[6]=e[6]+f|0,e[7]=e[7]+u|0},_doFinalize:function(){var t=this._data,e=t.words,i=8*this._nDataBytes,n=8*t.sigBytes;return e[n>>>5]|=128<<24-n%32,e[(n+64>>>9<<4)+14]=r.floor(i/4294967296),e[(n+64>>>9<<4)+15]=i,t.sigBytes=4*e.length,this._process(),this._hash},clone:function(){var t=o.clone.call(this);return t._hash=this._hash.clone(),t}});e.SHA256=o._createHelper(l),e.HmacSHA256=o._createHmacHelper(l)}(Math),function(){function r(t){return t<<8&4278255360|t>>>8&16711935}var e=t,i=e.lib,n=i.WordArray,o=e.enc;o.Utf16=o.Utf16BE={stringify:function(t){for(var r=t.words,e=t.sigBytes,i=[],n=0;n>>2]>>>16-n%4*8&65535;i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var r=t.length,e=[],i=0;i>>1]|=t.charCodeAt(i)<<16-i%2*16;return n.create(e,2*r)}};o.Utf16LE={stringify:function(t){for(var e=t.words,i=t.sigBytes,n=[],o=0;o>>2]>>>16-o%4*8&65535);n.push(String.fromCharCode(s))}return n.join("")},parse:function(t){for(var e=t.length,i=[],o=0;o>>1]|=r(t.charCodeAt(o)<<16-o%2*16);return n.create(i,2*e)}}}(),function(){if("function"==typeof ArrayBuffer){var r=t,e=r.lib,i=e.WordArray,n=i.init,o=i.init=function(t){if(t instanceof ArrayBuffer&&(t=new Uint8Array(t)),(t instanceof Int8Array||"undefined"!=typeof Uint8ClampedArray&&t instanceof Uint8ClampedArray||t instanceof Int16Array||t instanceof Uint16Array||t instanceof Int32Array||t instanceof Uint32Array||t instanceof Float32Array||t instanceof Float64Array)&&(t=new Uint8Array(t.buffer,t.byteOffset,t.byteLength)),t instanceof Uint8Array){for(var r=t.byteLength,e=[],i=0;i>>2]|=t[i]<<24-i%4*8;n.call(this,e,r)}else n.apply(this,arguments)};o.prototype=i}}(),function(r){function e(t,r,e){return t^r^e}function i(t,r,e){return t&r|~t&e}function n(t,r,e){return(t|~r)^e}function o(t,r,e){return t&e|r&~e}function s(t,r,e){return t^(r|~e)}function a(t,r){return t<>>32-r}var c=t,h=c.lib,l=h.WordArray,f=h.Hasher,u=c.algo,d=l.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),v=l.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),p=l.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),_=l.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),y=l.create([0,1518500249,1859775393,2400959708,2840853838]),g=l.create([1352829926,1548603684,1836072691,2053994217,0]),B=u.RIPEMD160=f.extend({_doReset:function(){this._hash=l.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(t,r){for(var c=0;c<16;c++){var h=r+c,l=t[h];t[h]=16711935&(l<<8|l>>>24)|4278255360&(l<<24|l>>>8)}var f,u,B,w,k,S,m,x,b,H,z=this._hash.words,A=y.words,C=g.words,D=d.words,R=v.words,E=p.words,M=_.words;S=f=z[0],m=u=z[1],x=B=z[2],b=w=z[3],H=k=z[4];for(var F,c=0;c<80;c+=1)F=f+t[r+D[c]]|0,F+=c<16?e(u,B,w)+A[0]:c<32?i(u,B,w)+A[1]:c<48?n(u,B,w)+A[2]:c<64?o(u,B,w)+A[3]:s(u,B,w)+A[4],F|=0,F=a(F,E[c]),F=F+k|0,f=k,k=w,w=a(B,10),B=u,u=F,F=S+t[r+R[c]]|0,F+=c<16?s(m,x,b)+C[0]:c<32?o(m,x,b)+C[1]:c<48?n(m,x,b)+C[2]:c<64?i(m,x,b)+C[3]:e(m,x,b)+C[4],F|=0,F=a(F,M[c]),F=F+H|0,S=H,H=b,b=a(x,10),x=m,m=F;F=z[1]+B+b|0,z[1]=z[2]+w+H|0,z[2]=z[3]+k+S|0,z[3]=z[4]+f+m|0,z[4]=z[0]+u+x|0,z[0]=F},_doFinalize:function(){var t=this._data,r=t.words,e=8*this._nDataBytes,i=8*t.sigBytes;r[i>>>5]|=128<<24-i%32,r[(i+64>>>9<<4)+14]=16711935&(e<<8|e>>>24)|4278255360&(e<<24|e>>>8),t.sigBytes=4*(r.length+1),this._process();for(var n=this._hash,o=n.words,s=0;s<5;s++){var a=o[s];o[s]=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8)}return n},clone:function(){var t=f.clone.call(this);return t._hash=this._hash.clone(),t}});c.RIPEMD160=f._createHelper(B),c.HmacRIPEMD160=f._createHmacHelper(B)}(Math),function(){var r=t,e=r.lib,i=e.Base,n=r.enc,o=n.Utf8,s=r.algo;s.HMAC=i.extend({init:function(t,r){t=this._hasher=new t.init,"string"==typeof r&&(r=o.parse(r));var e=t.blockSize,i=4*e;r.sigBytes>i&&(r=t.finalize(r)),r.clamp();for(var n=this._oKey=r.clone(),s=this._iKey=r.clone(),a=n.words,c=s.words,h=0;h>>24)|4278255360&(o<<24|o>>>8),s=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8);var a=e[n];a.high^=s,a.low^=o}for(var c=0;c<24;c++){for(var d=0;d<5;d++){for(var v=0,p=0,_=0;_<5;_++){var a=e[d+5*_];v^=a.high,p^=a.low}var y=u[d];y.high=v,y.low=p}for(var d=0;d<5;d++)for(var g=u[(d+4)%5],B=u[(d+1)%5],w=B.high,k=B.low,v=g.high^(w<<1|k>>>31),p=g.low^(k<<1|w>>>31),_=0;_<5;_++){var a=e[d+5*_];a.high^=v,a.low^=p}for(var S=1;S<25;S++){var a=e[S],m=a.high,x=a.low,b=h[S];if(b<32)var v=m<>>32-b,p=x<>>32-b;else var v=x<>>64-b,p=m<>>64-b;var H=u[l[S]];H.high=v,H.low=p}var z=u[0],A=e[0];z.high=A.high,z.low=A.low;for(var d=0;d<5;d++)for(var _=0;_<5;_++){var S=d+5*_,a=e[S],C=u[S],D=u[(d+1)%5+5*_],R=u[(d+2)%5+5*_];a.high=C.high^~D.high&R.high,a.low=C.low^~D.low&R.low}var a=e[0],E=f[c];a.high^=E.high,a.low^=E.low}},_doFinalize:function(){var t=this._data,e=t.words,i=(8*this._nDataBytes,8*t.sigBytes),o=32*this.blockSize;e[i>>>5]|=1<<24-i%32,e[(r.ceil((i+1)/o)*o>>>5)-1]|=128,t.sigBytes=4*e.length,this._process();for(var s=this._state,a=this.cfg.outputLength/8,c=a/8,h=[],l=0;l>>24)|4278255360&(u<<24|u>>>8),d=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8),h.push(d),h.push(u)}return new n.init(h,a)},clone:function(){for(var t=o.clone.call(this),r=t._state=this._state.slice(0),e=0;e<25;e++)r[e]=r[e].clone();return t}});e.SHA3=o._createHelper(d),e.HmacSHA3=o._createHmacHelper(d)}(Math),function(){function r(){return s.create.apply(s,arguments)}var e=t,i=e.lib,n=i.Hasher,o=e.x64,s=o.Word,a=o.WordArray,c=e.algo,h=[r(1116352408,3609767458),r(1899447441,602891725),r(3049323471,3964484399),r(3921009573,2173295548),r(961987163,4081628472),r(1508970993,3053834265),r(2453635748,2937671579),r(2870763221,3664609560),r(3624381080,2734883394),r(310598401,1164996542),r(607225278,1323610764),r(1426881987,3590304994),r(1925078388,4068182383),r(2162078206,991336113),r(2614888103,633803317),r(3248222580,3479774868),r(3835390401,2666613458),r(4022224774,944711139),r(264347078,2341262773),r(604807628,2007800933),r(770255983,1495990901),r(1249150122,1856431235),r(1555081692,3175218132),r(1996064986,2198950837),r(2554220882,3999719339),r(2821834349,766784016),r(2952996808,2566594879),r(3210313671,3203337956),r(3336571891,1034457026),r(3584528711,2466948901),r(113926993,3758326383),r(338241895,168717936),r(666307205,1188179964),r(773529912,1546045734),r(1294757372,1522805485),r(1396182291,2643833823),r(1695183700,2343527390),r(1986661051,1014477480),r(2177026350,1206759142),r(2456956037,344077627),r(2730485921,1290863460),r(2820302411,3158454273),r(3259730800,3505952657),r(3345764771,106217008),r(3516065817,3606008344),r(3600352804,1432725776),r(4094571909,1467031594),r(275423344,851169720),r(430227734,3100823752),r(506948616,1363258195),r(659060556,3750685593),r(883997877,3785050280),r(958139571,3318307427),r(1322822218,3812723403),r(1537002063,2003034995),r(1747873779,3602036899),r(1955562222,1575990012),r(2024104815,1125592928),r(2227730452,2716904306),r(2361852424,442776044),r(2428436474,593698344),r(2756734187,3733110249),r(3204031479,2999351573),r(3329325298,3815920427),r(3391569614,3928383900),r(3515267271,566280711),r(3940187606,3454069534),r(4118630271,4000239992),r(116418474,1914138554),r(174292421,2731055270),r(289380356,3203993006),r(460393269,320620315),r(685471733,587496836),r(852142971,1086792851),r(1017036298,365543100),r(1126000580,2618297676),r(1288033470,3409855158),r(1501505948,4234509866),r(1607167915,987167468),r(1816402316,1246189591)],l=[];!function(){for(var t=0;t<80;t++)l[t]=r()}();var f=c.SHA512=n.extend({_doReset:function(){this._hash=new a.init([new s.init(1779033703,4089235720),new s.init(3144134277,2227873595),new s.init(1013904242,4271175723),new s.init(2773480762,1595750129),new s.init(1359893119,2917565137),new s.init(2600822924,725511199),new s.init(528734635,4215389547),new s.init(1541459225,327033209)])},_doProcessBlock:function(t,r){for(var e=this._hash.words,i=e[0],n=e[1],o=e[2],s=e[3],a=e[4],c=e[5],f=e[6],u=e[7],d=i.high,v=i.low,p=n.high,_=n.low,y=o.high,g=o.low,B=s.high,w=s.low,k=a.high,S=a.low,m=c.high,x=c.low,b=f.high,H=f.low,z=u.high,A=u.low,C=d,D=v,R=p,E=_,M=y,F=g,P=B,W=w,O=k,U=S,I=m,K=x,X=b,L=H,j=z,N=A,T=0;T<80;T++){var Z=l[T];if(T<16)var q=Z.high=0|t[r+2*T],G=Z.low=0|t[r+2*T+1];else{var J=l[T-15],$=J.high,Q=J.low,V=($>>>1|Q<<31)^($>>>8|Q<<24)^$>>>7,Y=(Q>>>1|$<<31)^(Q>>>8|$<<24)^(Q>>>7|$<<25),tt=l[T-2],rt=tt.high,et=tt.low,it=(rt>>>19|et<<13)^(rt<<3|et>>>29)^rt>>>6,nt=(et>>>19|rt<<13)^(et<<3|rt>>>29)^(et>>>6|rt<<26),ot=l[T-7],st=ot.high,at=ot.low,ct=l[T-16],ht=ct.high,lt=ct.low,G=Y+at,q=V+st+(G>>>0>>0?1:0),G=G+nt,q=q+it+(G>>>0>>0?1:0),G=G+lt,q=q+ht+(G>>>0>>0?1:0);Z.high=q,Z.low=G}var ft=O&I^~O&X,ut=U&K^~U&L,dt=C&R^C&M^R&M,vt=D&E^D&F^E&F,pt=(C>>>28|D<<4)^(C<<30|D>>>2)^(C<<25|D>>>7),_t=(D>>>28|C<<4)^(D<<30|C>>>2)^(D<<25|C>>>7),yt=(O>>>14|U<<18)^(O>>>18|U<<14)^(O<<23|U>>>9),gt=(U>>>14|O<<18)^(U>>>18|O<<14)^(U<<23|O>>>9),Bt=h[T],wt=Bt.high,kt=Bt.low,St=N+gt,mt=j+yt+(St>>>0>>0?1:0),St=St+ut,mt=mt+ft+(St>>>0>>0?1:0),St=St+kt,mt=mt+wt+(St>>>0>>0?1:0),St=St+G,mt=mt+q+(St>>>0>>0?1:0),xt=_t+vt,bt=pt+dt+(xt>>>0<_t>>>0?1:0);j=X,N=L,X=I,L=K,I=O,K=U,U=W+St|0,O=P+mt+(U>>>0>>0?1:0)|0,P=M,W=F,M=R,F=E,R=C,E=D,D=St+xt|0,C=mt+bt+(D>>>0>>0?1:0)|0}v=i.low=v+D,i.high=d+C+(v>>>0>>0?1:0),_=n.low=_+E,n.high=p+R+(_>>>0>>0?1:0),g=o.low=g+F,o.high=y+M+(g>>>0>>0?1:0),w=s.low=w+W,s.high=B+P+(w>>>0>>0?1:0),S=a.low=S+U,a.high=k+O+(S>>>0>>0?1:0),x=c.low=x+K,c.high=m+I+(x>>>0>>0?1:0),H=f.low=H+L,f.high=b+X+(H>>>0>>0?1:0),A=u.low=A+N,u.high=z+j+(A>>>0>>0?1:0)},_doFinalize:function(){var t=this._data,r=t.words,e=8*this._nDataBytes,i=8*t.sigBytes;r[i>>>5]|=128<<24-i%32,r[(i+128>>>10<<5)+30]=Math.floor(e/4294967296),r[(i+128>>>10<<5)+31]=e,t.sigBytes=4*r.length,this._process();var n=this._hash.toX32();return n},clone:function(){var t=n.clone.call(this);return t._hash=this._hash.clone(),t},blockSize:32});e.SHA512=n._createHelper(f),e.HmacSHA512=n._createHmacHelper(f)}(),function(){var r=t,e=r.x64,i=e.Word,n=e.WordArray,o=r.algo,s=o.SHA512,a=o.SHA384=s.extend({_doReset:function(){this._hash=new n.init([new i.init(3418070365,3238371032),new i.init(1654270250,914150663),new i.init(2438529370,812702999),new i.init(355462360,4144912697),new i.init(1731405415,4290775857),new i.init(2394180231,1750603025),new i.init(3675008525,1694076839),new i.init(1203062813,3204075428)])},_doFinalize:function(){var t=s._doFinalize.call(this);return t.sigBytes-=16,t}});r.SHA384=s._createHelper(a),r.HmacSHA384=s._createHmacHelper(a)}(),t.lib.Cipher||function(r){var e=t,i=e.lib,n=i.Base,o=i.WordArray,s=i.BufferedBlockAlgorithm,a=e.enc,c=(a.Utf8,a.Base64),h=e.algo,l=h.EvpKDF,f=i.Cipher=s.extend({cfg:n.extend(),createEncryptor:function(t,r){return this.create(this._ENC_XFORM_MODE,t,r)},createDecryptor:function(t,r){return this.create(this._DEC_XFORM_MODE,t,r)},init:function(t,r,e){this.cfg=this.cfg.extend(e),this._xformMode=t,this._key=r,this.reset()},reset:function(){s.reset.call(this),this._doReset()},process:function(t){return this._append(t),this._process()},finalize:function(t){t&&this._append(t);var r=this._doFinalize();return r},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function t(t){return"string"==typeof t?m:w}return function(r){return{encrypt:function(e,i,n){return t(i).encrypt(r,e,i,n)},decrypt:function(e,i,n){return t(i).decrypt(r,e,i,n)}}}}()}),u=(i.StreamCipher=f.extend({_doFinalize:function(){var t=this._process(!0);return t},blockSize:1}),e.mode={}),d=i.BlockCipherMode=n.extend({createEncryptor:function(t,r){return this.Encryptor.create(t,r)},createDecryptor:function(t,r){return this.Decryptor.create(t,r)},init:function(t,r){this._cipher=t,this._iv=r}}),v=u.CBC=function(){function t(t,e,i){var n=this._iv;if(n){var o=n;this._iv=r}else var o=this._prevBlock;for(var s=0;s>>2];t.sigBytes-=r}},y=(i.BlockCipher=f.extend({cfg:f.cfg.extend({mode:v,padding:_}),reset:function(){f.reset.call(this);var t=this.cfg,r=t.iv,e=t.mode;if(this._xformMode==this._ENC_XFORM_MODE)var i=e.createEncryptor;else{var i=e.createDecryptor;this._minBufferSize=1}this._mode&&this._mode.__creator==i?this._mode.init(this,r&&r.words):(this._mode=i.call(e,this,r&&r.words),this._mode.__creator=i)},_doProcessBlock:function(t,r){this._mode.processBlock(t,r)},_doFinalize:function(){var t=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){t.pad(this._data,this.blockSize);var r=this._process(!0)}else{var r=this._process(!0);t.unpad(r)}return r},blockSize:4}),i.CipherParams=n.extend({init:function(t){this.mixIn(t)},toString:function(t){return(t||this.formatter).stringify(this)}})),g=e.format={},B=g.OpenSSL={stringify:function(t){var r=t.ciphertext,e=t.salt;if(e)var i=o.create([1398893684,1701076831]).concat(e).concat(r);else var i=r;return i.toString(c)},parse:function(t){var r=c.parse(t),e=r.words;if(1398893684==e[0]&&1701076831==e[1]){var i=o.create(e.slice(2,4));e.splice(0,4),r.sigBytes-=16}return y.create({ciphertext:r,salt:i})}},w=i.SerializableCipher=n.extend({cfg:n.extend({format:B}),encrypt:function(t,r,e,i){i=this.cfg.extend(i);var n=t.createEncryptor(e,i),o=n.finalize(r),s=n.cfg;return y.create({ciphertext:o,key:e,iv:s.iv,algorithm:t,mode:s.mode,padding:s.padding,blockSize:t.blockSize,formatter:i.format})},decrypt:function(t,r,e,i){i=this.cfg.extend(i),r=this._parse(r,i.format);var n=t.createDecryptor(e,i).finalize(r.ciphertext);return n},_parse:function(t,r){return"string"==typeof t?r.parse(t,this):t}}),k=e.kdf={},S=k.OpenSSL={execute:function(t,r,e,i){i||(i=o.random(8));var n=l.create({keySize:r+e}).compute(t,i),s=o.create(n.words.slice(r),4*e);return n.sigBytes=4*r,y.create({key:n,iv:s,salt:i})}},m=i.PasswordBasedCipher=w.extend({cfg:w.cfg.extend({kdf:S}),encrypt:function(t,r,e,i){i=this.cfg.extend(i);var n=i.kdf.execute(e,t.keySize,t.ivSize);i.iv=n.iv;var o=w.encrypt.call(this,t,r,n.key,i);return o.mixIn(n),o},decrypt:function(t,r,e,i){i=this.cfg.extend(i),r=this._parse(r,i.format);var n=i.kdf.execute(e,t.keySize,t.ivSize,r.salt);i.iv=n.iv;var o=w.decrypt.call(this,t,r,n.key,i);return o}})}(),t.mode.CFB=function(){function r(t,r,e,i){var n=this._iv;if(n){var o=n.slice(0);this._iv=void 0}else var o=this._prevBlock;i.encryptBlock(o,0);for(var s=0;s>>2]|=n<<24-o%4*8,t.sigBytes+=n},unpad:function(t){var r=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=r}},t.pad.Iso10126={pad:function(r,e){var i=4*e,n=i-r.sigBytes%i;r.concat(t.lib.WordArray.random(n-1)).concat(t.lib.WordArray.create([n<<24],1))},unpad:function(t){var r=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=r}},t.pad.Iso97971={pad:function(r,e){r.concat(t.lib.WordArray.create([2147483648],1)),t.pad.ZeroPadding.pad(r,e)},unpad:function(r){t.pad.ZeroPadding.unpad(r),r.sigBytes--}},t.mode.OFB=function(){var r=t.lib.BlockCipherMode.extend(),e=r.Encryptor=r.extend({processBlock:function(t,r){var e=this._cipher,i=e.blockSize,n=this._iv,o=this._keystream;n&&(o=this._keystream=n.slice(0),this._iv=void 0),e.encryptBlock(o,0);for(var s=0;s>>8^255&n^99,o[e]=n,s[n]=e;var p=t[e],_=t[p],y=t[_],g=257*t[n]^16843008*n;a[e]=g<<24|g>>>8,c[e]=g<<16|g>>>16,h[e]=g<<8|g>>>24,l[e]=g;var g=16843009*y^65537*_^257*p^16843008*e;f[n]=g<<24|g>>>8,u[n]=g<<16|g>>>16,d[n]=g<<8|g>>>24,v[n]=g,e?(e=p^t[t[t[y^p]]],i^=t[t[i]]):e=i=1}}();var p=[0,1,2,4,8,16,32,64,128,27,54],_=n.AES=i.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var t=this._keyPriorReset=this._key,r=t.words,e=t.sigBytes/4,i=this._nRounds=e+6,n=4*(i+1),s=this._keySchedule=[],a=0;a6&&a%e==4&&(c=o[c>>>24]<<24|o[c>>>16&255]<<16|o[c>>>8&255]<<8|o[255&c]):(c=c<<8|c>>>24,c=o[c>>>24]<<24|o[c>>>16&255]<<16|o[c>>>8&255]<<8|o[255&c],c^=p[a/e|0]<<24),s[a]=s[a-e]^c}for(var h=this._invKeySchedule=[],l=0;l>>24]]^u[o[c>>>16&255]]^d[o[c>>>8&255]]^v[o[255&c]]}}},encryptBlock:function(t,r){this._doCryptBlock(t,r,this._keySchedule,a,c,h,l,o)},decryptBlock:function(t,r){var e=t[r+1];t[r+1]=t[r+3],t[r+3]=e,this._doCryptBlock(t,r,this._invKeySchedule,f,u,d,v,s);var e=t[r+1];t[r+1]=t[r+3],t[r+3]=e},_doCryptBlock:function(t,r,e,i,n,o,s,a){for(var c=this._nRounds,h=t[r]^e[0],l=t[r+1]^e[1],f=t[r+2]^e[2],u=t[r+3]^e[3],d=4,v=1;v>>24]^n[l>>>16&255]^o[f>>>8&255]^s[255&u]^e[d++],_=i[l>>>24]^n[f>>>16&255]^o[u>>>8&255]^s[255&h]^e[d++],y=i[f>>>24]^n[u>>>16&255]^o[h>>>8&255]^s[255&l]^e[d++],g=i[u>>>24]^n[h>>>16&255]^o[l>>>8&255]^s[255&f]^e[d++];h=p,l=_,f=y,u=g}var p=(a[h>>>24]<<24|a[l>>>16&255]<<16|a[f>>>8&255]<<8|a[255&u])^e[d++],_=(a[l>>>24]<<24|a[f>>>16&255]<<16|a[u>>>8&255]<<8|a[255&h])^e[d++],y=(a[f>>>24]<<24|a[u>>>16&255]<<16|a[h>>>8&255]<<8|a[255&l])^e[d++],g=(a[u>>>24]<<24|a[h>>>16&255]<<16|a[l>>>8&255]<<8|a[255&f])^e[d++];t[r]=p,t[r+1]=_,t[r+2]=y,t[r+3]=g},keySize:8});r.AES=i._createHelper(_)}(),function(){function r(t,r){var e=(this._lBlock>>>t^this._rBlock)&r;this._rBlock^=e,this._lBlock^=e<>>t^this._lBlock)&r;this._lBlock^=e,this._rBlock^=e<>>5]>>>31-n%32&1}for(var o=this._subKeys=[],s=0;s<16;s++){for(var a=o[s]=[],f=l[s],i=0;i<24;i++)a[i/6|0]|=e[(h[i]-1+f)%28]<<31-i%6,a[4+(i/6|0)]|=e[28+(h[i+24]-1+f)%28]<<31-i%6;a[0]=a[0]<<1|a[0]>>>31;for(var i=1;i<7;i++)a[i]=a[i]>>>4*(i-1)+3;a[7]=a[7]<<5|a[7]>>>27}for(var u=this._invSubKeys=[],i=0;i<16;i++)u[i]=o[15-i]},encryptBlock:function(t,r){this._doCryptBlock(t,r,this._subKeys)},decryptBlock:function(t,r){this._doCryptBlock(t,r,this._invSubKeys)},_doCryptBlock:function(t,i,n){this._lBlock=t[i],this._rBlock=t[i+1],r.call(this,4,252645135),r.call(this,16,65535),e.call(this,2,858993459),e.call(this,8,16711935),r.call(this,1,1431655765);for(var o=0;o<16;o++){for(var s=n[o],a=this._lBlock,c=this._rBlock,h=0,l=0;l<8;l++)h|=f[l][((c^s[l])&u[l])>>>0];this._lBlock=c,this._rBlock=a^h}var d=this._lBlock;this._lBlock=this._rBlock,this._rBlock=d,r.call(this,1,1431655765),e.call(this,8,16711935),e.call(this,2,858993459),r.call(this,16,65535),r.call(this,4,252645135),t[i]=this._lBlock,t[i+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});i.DES=s._createHelper(d);var v=a.TripleDES=s.extend({_doReset:function(){var t=this._key,r=t.words;this._des1=d.createEncryptor(o.create(r.slice(0,2))),this._des2=d.createEncryptor(o.create(r.slice(2,4))),this._des3=d.createEncryptor(o.create(r.slice(4,6)))},encryptBlock:function(t,r){this._des1.encryptBlock(t,r),this._des2.decryptBlock(t,r),this._des3.encryptBlock(t,r)},decryptBlock:function(t,r){this._des3.decryptBlock(t,r),this._des2.encryptBlock(t,r),this._des1.decryptBlock(t,r)},keySize:6,ivSize:2,blockSize:2});i.TripleDES=s._createHelper(v)}(),function(){function r(){for(var t=this._S,r=this._i,e=this._j,i=0,n=0;n<4;n++){r=(r+1)%256,e=(e+t[r])%256;var o=t[r];t[r]=t[e],t[e]=o,i|=t[(t[r]+t[e])%256]<<24-8*n}return this._i=r,this._j=e,i}var e=t,i=e.lib,n=i.StreamCipher,o=e.algo,s=o.RC4=n.extend({_doReset:function(){for(var t=this._key,r=t.words,e=t.sigBytes,i=this._S=[],n=0;n<256;n++)i[n]=n;for(var n=0,o=0;n<256;n++){var s=n%e,a=r[s>>>2]>>>24-s%4*8&255;o=(o+i[n]+a)%256;var c=i[n];i[n]=i[o],i[o]=c}this._i=this._j=0},_doProcessBlock:function(t,e){t[e]^=r.call(this)},keySize:8,ivSize:0});e.RC4=n._createHelper(s);var a=o.RC4Drop=s.extend({cfg:s.cfg.extend({drop:192}),_doReset:function(){s._doReset.call(this);for(var t=this.cfg.drop;t>0;t--)r.call(this)}});e.RC4Drop=n._createHelper(a)}(),t.mode.CTRGladman=function(){function r(t){if(255===(t>>24&255)){var r=t>>16&255,e=t>>8&255,i=255&t;255===r?(r=0,255===e?(e=0,255===i?i=0:++i):++e):++r,t=0,t+=r<<16,t+=e<<8,t+=i}else t+=1<<24;return t}function e(t){return 0===(t[0]=r(t[0]))&&(t[1]=r(t[1])),t}var i=t.lib.BlockCipherMode.extend(),n=i.Encryptor=i.extend({processBlock:function(t,r){var i=this._cipher,n=i.blockSize,o=this._iv,s=this._counter;o&&(s=this._counter=o.slice(0),this._iv=void 0),e(s);var a=s.slice(0);i.encryptBlock(a,0);for(var c=0;c>>0>>0?1:0)|0,r[2]=r[2]+886263092+(r[1]>>>0>>0?1:0)|0,r[3]=r[3]+1295307597+(r[2]>>>0>>0?1:0)|0,r[4]=r[4]+3545052371+(r[3]>>>0>>0?1:0)|0,r[5]=r[5]+886263092+(r[4]>>>0>>0?1:0)|0,r[6]=r[6]+1295307597+(r[5]>>>0>>0?1:0)|0,r[7]=r[7]+3545052371+(r[6]>>>0>>0?1:0)|0,this._b=r[7]>>>0>>0?1:0;for(var e=0;e<8;e++){var i=t[e]+r[e],n=65535&i,o=i>>>16,s=((n*n>>>17)+n*o>>>15)+o*o,h=((4294901760&i)*i|0)+((65535&i)*i|0);c[e]=s^h}t[0]=c[0]+(c[7]<<16|c[7]>>>16)+(c[6]<<16|c[6]>>>16)|0,t[1]=c[1]+(c[0]<<8|c[0]>>>24)+c[7]|0,t[2]=c[2]+(c[1]<<16|c[1]>>>16)+(c[0]<<16|c[0]>>>16)|0,t[3]=c[3]+(c[2]<<8|c[2]>>>24)+c[1]|0,t[4]=c[4]+(c[3]<<16|c[3]>>>16)+(c[2]<<16|c[2]>>>16)|0,t[5]=c[5]+(c[4]<<8|c[4]>>>24)+c[3]|0,t[6]=c[6]+(c[5]<<16|c[5]>>>16)+(c[4]<<16|c[4]>>>16)|0,t[7]=c[7]+(c[6]<<8|c[6]>>>24)+c[5]|0}var e=t,i=e.lib,n=i.StreamCipher,o=e.algo,s=[],a=[],c=[],h=o.Rabbit=n.extend({_doReset:function(){for(var t=this._key.words,e=this.cfg.iv,i=0;i<4;i++)t[i]=16711935&(t[i]<<8|t[i]>>>24)|4278255360&(t[i]<<24|t[i]>>>8);var n=this._X=[t[0],t[3]<<16|t[2]>>>16,t[1],t[0]<<16|t[3]>>>16,t[2],t[1]<<16|t[0]>>>16,t[3],t[2]<<16|t[1]>>>16],o=this._C=[t[2]<<16|t[2]>>>16,4294901760&t[0]|65535&t[1],t[3]<<16|t[3]>>>16,4294901760&t[1]|65535&t[2],t[0]<<16|t[0]>>>16,4294901760&t[2]|65535&t[3],t[1]<<16|t[1]>>>16,4294901760&t[3]|65535&t[0]];this._b=0;for(var i=0;i<4;i++)r.call(this);for(var i=0;i<8;i++)o[i]^=n[i+4&7];if(e){var s=e.words,a=s[0],c=s[1],h=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),l=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8),f=h>>>16|4294901760&l,u=l<<16|65535&h;o[0]^=h,o[1]^=f,o[2]^=l,o[3]^=u,o[4]^=h,o[5]^=f,o[6]^=l,o[7]^=u;for(var i=0;i<4;i++)r.call(this)}},_doProcessBlock:function(t,e){var i=this._X;r.call(this),s[0]=i[0]^i[5]>>>16^i[3]<<16,s[1]=i[2]^i[7]>>>16^i[5]<<16,s[2]=i[4]^i[1]>>>16^i[7]<<16,s[3]=i[6]^i[3]>>>16^i[1]<<16;for(var n=0;n<4;n++)s[n]=16711935&(s[n]<<8|s[n]>>>24)|4278255360&(s[n]<<24|s[n]>>>8),t[e+n]^=s[n]},blockSize:4,ivSize:2});e.Rabbit=n._createHelper(h)}(),t.mode.CTR=function(){var r=t.lib.BlockCipherMode.extend(),e=r.Encryptor=r.extend({processBlock:function(t,r){var e=this._cipher,i=e.blockSize,n=this._iv,o=this._counter;n&&(o=this._counter=n.slice(0),this._iv=void 0);var s=o.slice(0);e.encryptBlock(s,0),o[i-1]=o[i-1]+1|0;for(var a=0;a>>0>>0?1:0)|0,r[2]=r[2]+886263092+(r[1]>>>0>>0?1:0)|0,r[3]=r[3]+1295307597+(r[2]>>>0>>0?1:0)|0,r[4]=r[4]+3545052371+(r[3]>>>0>>0?1:0)|0,r[5]=r[5]+886263092+(r[4]>>>0>>0?1:0)|0,r[6]=r[6]+1295307597+(r[5]>>>0>>0?1:0)|0,r[7]=r[7]+3545052371+(r[6]>>>0>>0?1:0)|0,this._b=r[7]>>>0>>0?1:0;for(var e=0;e<8;e++){var i=t[e]+r[e],n=65535&i,o=i>>>16,s=((n*n>>>17)+n*o>>>15)+o*o,h=((4294901760&i)*i|0)+((65535&i)*i|0);c[e]=s^h}t[0]=c[0]+(c[7]<<16|c[7]>>>16)+(c[6]<<16|c[6]>>>16)|0,t[1]=c[1]+(c[0]<<8|c[0]>>>24)+c[7]|0,t[2]=c[2]+(c[1]<<16|c[1]>>>16)+(c[0]<<16|c[0]>>>16)|0,t[3]=c[3]+(c[2]<<8|c[2]>>>24)+c[1]|0,t[4]=c[4]+(c[3]<<16|c[3]>>>16)+(c[2]<<16|c[2]>>>16)|0,t[5]=c[5]+(c[4]<<8|c[4]>>>24)+c[3]|0,t[6]=c[6]+(c[5]<<16|c[5]>>>16)+(c[4]<<16|c[4]>>>16)|0,t[7]=c[7]+(c[6]<<8|c[6]>>>24)+c[5]|0}var e=t,i=e.lib,n=i.StreamCipher,o=e.algo,s=[],a=[],c=[],h=o.RabbitLegacy=n.extend({_doReset:function(){var t=this._key.words,e=this.cfg.iv,i=this._X=[t[0],t[3]<<16|t[2]>>>16,t[1],t[0]<<16|t[3]>>>16,t[2],t[1]<<16|t[0]>>>16,t[3],t[2]<<16|t[1]>>>16],n=this._C=[t[2]<<16|t[2]>>>16,4294901760&t[0]|65535&t[1],t[3]<<16|t[3]>>>16,4294901760&t[1]|65535&t[2],t[0]<<16|t[0]>>>16,4294901760&t[2]|65535&t[3],t[1]<<16|t[1]>>>16,4294901760&t[3]|65535&t[0]];this._b=0;for(var o=0;o<4;o++)r.call(this);for(var o=0;o<8;o++)n[o]^=i[o+4&7];if(e){var s=e.words,a=s[0],c=s[1],h=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),l=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8),f=h>>>16|4294901760&l,u=l<<16|65535&h;n[0]^=h,n[1]^=f,n[2]^=l,n[3]^=u,n[4]^=h,n[5]^=f,n[6]^=l,n[7]^=u;for(var o=0;o<4;o++)r.call(this)}},_doProcessBlock:function(t,e){var i=this._X;r.call(this),s[0]=i[0]^i[5]>>>16^i[3]<<16,s[1]=i[2]^i[7]>>>16^i[5]<<16,s[2]=i[4]^i[1]>>>16^i[7]<<16,s[3]=i[6]^i[3]>>>16^i[1]<<16;for(var n=0;n<4;n++)s[n]=16711935&(s[n]<<8|s[n]>>>24)|4278255360&(s[n]<<24|s[n]>>>8),t[e+n]^=s[n]},blockSize:4,ivSize:2});e.RabbitLegacy=n._createHelper(h)}(),t.pad.ZeroPadding={pad:function(t,r){var e=4*r;t.clamp(),t.sigBytes+=e-(t.sigBytes%e||e)},unpad:function(t){for(var r=t.words,e=t.sigBytes-1;!(r[e>>>2]>>>24-e%4*8&255);)e--;t.sigBytes=e+1}},t}); +//# sourceMappingURL=crypto-js.min.js.map \ No newline at end of file diff --git a/assets/Script/module/Crypto/crypto-js.min.js.meta b/assets/Script/module/Crypto/crypto-js.min.js.meta new file mode 100644 index 0000000..029408f --- /dev/null +++ b/assets/Script/module/Crypto/crypto-js.min.js.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "e64e1a97-c93f-4257-ab34-80341d8ff79d", + "importer": "javascript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/GameStart.meta b/assets/Script/module/GameStart.meta new file mode 100644 index 0000000..f45a5e7 --- /dev/null +++ b/assets/Script/module/GameStart.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "b4e113c6-a987-4133-bfa0-3355d8ab4bd1", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/GameStart/GameAppStart.ts b/assets/Script/module/GameStart/GameAppStart.ts new file mode 100644 index 0000000..b4f734b --- /dev/null +++ b/assets/Script/module/GameStart/GameAppStart.ts @@ -0,0 +1,106 @@ +import { StorageMessage } from "../Storage/Storage"; +import { GameConfig } from "../Config/GameConfig"; +import HttpUtil from "../Crypto/HttpUtil"; +import { Notifications } from "../Notification/Notification"; +import { GameTool } from "../Tool/GameTool"; +import AudioManager from "../Music/AudioManager"; +/** 全局变量初始化入口,单例 */ +window.initMgr = function () { + if (cc.fx) { + return; + } + cc.fx = {}; + // console.log("1初始化"); + + //基础状态信息 + cc.fx.StateInfo = { + debugMode: true, + networkConnected: true, //网络状态 + networkType: 'none', //网络类型 + isOnForeground: true //当前是否是在前台 + }; + + //应用系统信息 + //配置文件 + cc.fx.StorageMessage = StorageMessage; + + cc.fx.GameConfig = GameConfig; + cc.fx.HttpUtil = HttpUtil; + cc.fx.GameTool = GameTool; + cc.fx.Notifications = Notifications; + + + cc.fx.ShareInfo = { + queryId: -1 //分享id + }; + + cc.fx.Message = { + control: "10001", //传递操作控制 + startGame: "10002", //传递开始建筑 + next: "10003", //传递执行下一个格子洪水流过 + changePath: "10004", //传递操作控制 + changeMap: "10005", //改变那地图 + nextWater: "10006", //传递执行下一个格子洪水流过 + addEnd: "10007", //添加结束点 + setData: "10008", //上传分数 + guideNext: "10009", //引导进入下一步 + showResult: "10010", //展示治水结果 + removeTip: "10011" //执行撤回或者后退动作,移除提示 + } + + /* + * 客户端埋点分享类型 + */ + cc.fx.BurialShareType = { + Default: "default", //默认分享类型,分享到群 + Invite: "invite", // 邀请好友 + + DailyInviteRoomJoin: 'invite_join_room', //邀请好友加入 + DailyInviteFriend: 'invite_friend', // 日常邀请好友 + DailyInviteGroup: 'invate_group', // 日常分享群 + DailyInviteGroupAlive: 'invate_alive', //日常分享群复活 + DailyInviteGroupReward: 'invate_rewared',//分享奖励翻倍 + DailyInviteGroupBox: 'invate_box', //宝箱分享奖励 + DailyInviteGroupBall: 'invate_ball', //分享领取球球 + + MatchResult: 'matchResult', // 比赛结算分享 + MatchFix5: 'MatchFix5', // 5元红包赛 + MatchFix20: 'MatchFix20', // 20元红包赛 + MatchFix100: 'MatchFix100', // 100元红包赛 + MatchFix500: 'MatchFix500', // 500元红包赛 + NewerRedEnvelope: 'newerRedEnvelope', // 新手红包 + CoinRoomResult: 'coinRoomResult', // 金币桌结算 + HighRate: "highRate",//高倍分享 + CoinRoomWinStreak: 'coinRoomWinStreak', // 连胜 + CoinRoomBankruptcy1: 'coinRoomBankruptcy1', // 金币桌破产 + CoinRoomBankruptcy2: 'coinRoomBankruptcy2', // 金币桌破产 + CoinRoomBankruptcy3: 'coinRoomBankruptcy3', // 金币桌破产 + }; + + /* + * 分享到哪儿给奖励 group frined all + */ + cc.fx.ShareWhereReward = { + Group: "group", //微信群 + Friend: "friend",//好友 + All: "all", //不区分 + }; + + //用于存储消息的ID + cc.fx.storageType = cc.Enum({ + storageTypeCustom: 1000101, //用于存储关卡等级 + }); + + //用于存储提示语 按照步骤提示 + cc.fx.tipType = cc.Enum({ + tipOne: '神农氏回到家中,开始整理今天收集来的物品。当他第一次拿出或说出一种植物时,请告诉他这是新植物。', + tipTwo: '如果他拿出或说出的植物你今天看到过,请告诉他上次是看到的;如果你听他说过,则请告诉他上次是听到的。', //用于存储关卡等级 + tipErrNew: '这是这局游戏第一次出现{植物}', + tipErrOld: '{植物}刚才出现过呢', + tipErrHear: '上次遇到{植物}时,似乎不是听到的吧', + tipErrSee: '上次遇到{植物}时,似乎不是看到的吧', + tipErrLast: '之前确实看到过{植物},但最近一次似乎不是看到的呢', + + }); + +}; \ No newline at end of file diff --git a/assets/Script/module/GameStart/GameAppStart.ts.meta b/assets/Script/module/GameStart/GameAppStart.ts.meta new file mode 100644 index 0000000..e226d6e --- /dev/null +++ b/assets/Script/module/GameStart/GameAppStart.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "61d4c718-db3b-4b31-8221-f16bea3cf030", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Music.meta b/assets/Script/module/Music.meta new file mode 100644 index 0000000..85d3a58 --- /dev/null +++ b/assets/Script/module/Music.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "0487cacb-b94a-4ab6-a301-b6402ab0ac5d", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Music/AudioManager.ts b/assets/Script/module/Music/AudioManager.ts new file mode 100644 index 0000000..ce77b6f --- /dev/null +++ b/assets/Script/module/Music/AudioManager.ts @@ -0,0 +1,251 @@ + + +const { ccclass, property } = cc._decorator; +@ccclass +export default class AudioManager extends cc.Component { + static _instance: any; + //背景音乐 + @property(cc.AudioClip) + audioGameBgm0: cc.AudioClip = null; + + @property(cc.AudioClip) + xiaochu: cc.AudioClip = null; + @property(cc.AudioClip) + hit: cc.AudioClip = null; + @property(cc.AudioClip) + down: cc.AudioClip = null; + @property(cc.AudioClip) + fangxiang: cc.AudioClip = null; + @property(cc.AudioClip) + build: cc.AudioClip = null; + @property(cc.AudioClip) + win: cc.AudioClip = null; + @property(cc.AudioClip) + lose: cc.AudioClip = null; + @property(cc.AudioClip) + anniu_Big: cc.AudioClip = null; + @property(cc.AudioClip) + anniu_little: cc.AudioClip = null; + @property(cc.AudioClip) + tanchuang: cc.AudioClip = null; + @property(cc.AudioClip) + zhuan1: cc.AudioClip = null; + @property(cc.AudioClip) + zhuan2: cc.AudioClip = null; + + mAudioMap: {}; + bgMusicVolume: number; + effectMusicVolume: number; + mMusicSwitch: number; + mEffectSwitch: number; + brickSound: any; + reward: boolean; + finish: boolean; + rewardCount: number; + mMusicKey: any; + + onLoad() { + if (AudioManager._instance == null) { + AudioManager._instance = this; + cc.fx.AudioManager = AudioManager; + cc.game.addPersistRootNode(this.node); + } + else { + return; + } + this.reward = false; + this.finish = false; + this.rewardCount = 0; + this.ctor(); + + this.preload(); + } + + ctor() { + this.mAudioMap = {}; + /** + * 默认音量大小 + * @type {number} + */ + this.bgMusicVolume = 0.1; + this.effectMusicVolume = 1; + + this.mMusicSwitch = 1; + this.mEffectSwitch = 1; + } + play(audioSource, loop, callback, isBgMusic) { + // if (isBgMusic && !this.mMusicSwitch) return; + // if (!isBgMusic && !this.mEffectSwitch) return; + var volume = isBgMusic ? this.bgMusicVolume : this.effectMusicVolume; + + // if (cc.sys.isBrowser) { + // if(audioSource == this.brickSound){ + // volume = 0.1; + // } + volume = 1; + cc.audioEngine.setEffectsVolume(1); + cc.audioEngine.setMusicVolume(1); + if (audioSource.name == "lose") { + cc.audioEngine.setEffectsVolume(0.5); + } + else { + cc.audioEngine.setEffectsVolume(1); + } + var context = cc.audioEngine.playEffect(audioSource, loop); + if (callback) { + cc.audioEngine.setFinishCallback(context, function () { + callback.call(this); + }.bind(this)); + } + // cc.wwx.OutPut.log('play audio effect isBrowser: ' + context.src); + + this.mAudioMap[audioSource] = context; + return audioSource; + // } else { + // return audioSource; + // } + } + + save() { + // cc.wwx.Storage.setItem(cc.wwx.Storage.Key_Setting_Music_Volume, this.mMusicSwitch); + // cc.wwx.Storage.setItem(cc.wwx.Storage.Key_Setting_Effect_Volume, this.mEffectSwitch); + } + + // static get Instance() + // { + // if (this._instance == null) + // { + // this._instance = new AudioManager(); + // } + // return this._instance; + // } + + preload() { + if (!(cc.sys.platform === cc.sys.WECHAT_GAME)) { return; } + + var musics = [ + this.audioGameBgm0, + ]; + musics.forEach(function (path) { + }) + // console.log("音乐开关", cc.fx.GameConfig.GM_INFO.musicOpen); + // this.playMusicGame(); + } + + getAudioMusicSwitch() { + return this.mMusicSwitch; + + } + getAudioEffectSwitch() { + return this.mEffectSwitch; + } + trunAudioSound(on) { + this.switchMusic(on); + this.switchEffect(on) + } + switchMusic(on) { + if (this.mMusicSwitch != (on ? 1 : 0)) { + this.mMusicSwitch = 1 - this.mMusicSwitch; + // this.save(); + } + if (on) { + this.playMusicGame(); + } + else { + this.stopMusic(); + } + } + switchEffect(on) { + if (this.mEffectSwitch != (on ? 1 : 0)) { + this.mEffectSwitch = 1 - this.mEffectSwitch; + // this.save(); + + } + } + onHide() { + cc.audioEngine.pauseAll(); + } + + onShow() { + cc.audioEngine.resumeAll(); + } + + //播放音效 + playEffect(name, callback) { + if (!cc.fx.GameConfig.GM_INFO.effectOpen) { + return; + } + if (this[name]) + return this.play(this[name], false, callback, this.mEffectSwitch); + } + playMusic(key, callback, loop) { + console.log("音频开关________________________________________"); + if (!cc.fx.GameConfig.GM_INFO.musicOpen) { + return; + } + loop = typeof loop == 'undefined' || loop ? true : false; + this.stopMusic(); + this.mMusicKey = this.play(key, loop, callback, true); + + } + /** + * 游戏背景音乐 + */ + playMusicGame() { + this.stopMusic(); + this.playMusic(this.audioGameBgm0, {}, true); + } + /** + * 停止背景音乐播放 + */ + stopMusic() { + // cc.wwx.OutPut.log('stopMusic audio effect wx: ' + this.mMusicKey); + cc.audioEngine.stopAll(); + } + + /** + * 恢复被暂停的背景音乐播放 + */ + resumeMusic() { + // 调用 cc.audioEngine 的 resumeMusic 方法恢复音乐播放 + cc.audioEngine.resumeMusic(); + } + + /* + * 游戏开始音效 + * + */ + playGameStart() { + + } + /* + * 失败的游戏结束 + */ + playGameOver() { + + } + /* + * 成功的游戏结束 + */ + playGameResultFailed() { + + } + /* + * 成功的游戏结束 + */ + playGameResultSuccess() { + + } + /** + * 报警的音效 + */ + + /** + * 按钮 + */ + playAudioButton() { + // return this.play(this.audioButtonClick, false,null,this.mEffectSwitch); + } +}; + +// export { AudioManager }; diff --git a/assets/Script/module/Music/AudioManager.ts.meta b/assets/Script/module/Music/AudioManager.ts.meta new file mode 100644 index 0000000..0965413 --- /dev/null +++ b/assets/Script/module/Music/AudioManager.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "58403fe7-d7a2-426b-9b19-84d3236731a8", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Notification.meta b/assets/Script/module/Notification.meta new file mode 100644 index 0000000..909e75b --- /dev/null +++ b/assets/Script/module/Notification.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "ff6560d9-676d-42ad-8ec7-e44acb84ad9e", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Notification/Notification.ts b/assets/Script/module/Notification/Notification.ts new file mode 100644 index 0000000..bbe2893 --- /dev/null +++ b/assets/Script/module/Notification/Notification.ts @@ -0,0 +1,45 @@ +//全局通知 +var Notifications = { + _eventMap: [], + on: function (masgId, callback, target) { + if (this._eventMap[masgId] === undefined) { + this._eventMap[masgId] = []; + } + this._eventMap[masgId].push({ callback: callback, target: target }); + }, + + emit: function (masgId, parameter) { + let array = this._eventMap[masgId]; + if (array === undefined) return; + + for (let i = 0; i < array.length; i++) { + let element = array[i]; + if (element) element.callback.call(element.target, parameter); + } + }, + + off: function (masgId, callback) { + let array = this._eventMap[masgId]; + if (array === undefined) return; + for (let i = 0; i < array.length; i++) { + let element = array[i]; + if (element && element.callback === callback) { + array[i] = undefined; + break; + } + } + }, + + offMasgId: function (masgId) { + this._eventMap[masgId] = undefined; + }, + + removeAllMsg: function () { + for (let k in this._eventMap) { + if (this._eventMap[k]) { + this.offMasgId(k); + } + } + } +}; +export { Notifications }; \ No newline at end of file diff --git a/assets/Script/module/Notification/Notification.ts.meta b/assets/Script/module/Notification/Notification.ts.meta new file mode 100644 index 0000000..04a1a62 --- /dev/null +++ b/assets/Script/module/Notification/Notification.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "55403563-1a5a-4f2f-9eb8-82c762641837", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Pay.meta b/assets/Script/module/Pay.meta new file mode 100644 index 0000000..de1b76d --- /dev/null +++ b/assets/Script/module/Pay.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "6fcc6549-a36e-45d2-a845-79719c1be068", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Pay/Utils.ts b/assets/Script/module/Pay/Utils.ts new file mode 100644 index 0000000..02a9414 --- /dev/null +++ b/assets/Script/module/Pay/Utils.ts @@ -0,0 +1,1163 @@ +import { MiniGameSdk } from "../../Sdk/MiniGameSdk"; +//#region 测试 +/** 测试 */ +export default class Utils { + static uid: string = ""; + static session_key = ""; + static appid: string = ""; + static openid: string = ""; + static outTradeNo: string = ""; + static httpip: string = `https://laf.nika4games.com/`; + //#region 安卓支付 + /**获取用户信息*/ + static getUserInfo(callBack) { + //微信登录 + wx.login({ + success(res) { + console.log("微信login成功"); + //console.log(res.code); + if (res.code) { + // 标志位,用于记录 callBack 是否已经被调用 + let isCallBackCalled = false; + // 定义轮询函数 + const pollLogin = () => { + if (isCallBackCalled) { + console.log("回调已被调用,不再发起请求"); + return; + } + let isDebug = false; + let test = cc.fx.GameTool.getWechatGameVersion(); + if (test == "正式版") { + isDebug = true; + } + console.log("___________发起登录请求", isDebug); + Utils.POST("login", { code: res.code, isDebug: isDebug, distinctId: cc.fx.GameConfig.GM_INFO.shushu_DistinctId }, ret => { + console.log("__________请求结果:", ret); + if (!isCallBackCalled) { + isCallBackCalled = true; + if (ret.code === 1) { // 假设返回 code 为 1 表示成功 + Utils.openid = ret.data.openid; + Utils.session_key = ret.data.session_key; + Utils.uid = ret.data._id; + } + callBack(ret); + } + }); + // 如果回调未调用,6 秒后再次请求 + if (!isCallBackCalled) { + setTimeout(pollLogin, 6000); + } + }; + // 首次调用轮询函数 + pollLogin(); + } else { + console.log('登录失败!' + res.errMsg) + callBack({ code: 0, data: { openid: "登录失败" }, message: res.errMsg }); + } + } + }) + } + + //#region 道具直购接口 + /**道具直购接口*/ + static buyProp(id, count, price, systemType, productId, callBack) { + //console.log("请求uid:" + Utils.uid, "请求id:" + id, "请求数量:" + count, "请求价格:" + price); + Utils.POST("wx/orderPaySig", { uid: Utils.uid, itemid: id, itemCount: count, itemPrice: price }, res => { + if (res.code == 1) { + Utils.outTradeNo = res.data.outTradeNo; + const data = { + outTradeNo: res.data.outTradeNo, + price: price, + payment_name: productId, + payment_num: 1, + type: systemType, + } + cc.fx.GameTool.shushu_Track("init_order", data); + //console.log("创建的最新订单的订单号:", Utils.outTradeNo); + // let timeoutId: number; + // const timeoutDuration = 30000; // 30 秒超时时间 + // // 设置超时定时器 + // timeoutId = setTimeout(() => { + // console.error('支付请求超时'); + // callBack("请求支付超时"); + // }, timeoutDuration); + //@ts-ignore + wx.requestMidasPaymentGameItem({ + signData: res.data.signData, + paySig: res.data.paySig, + signature: res.data.signature, + success(res, errCode) { + // clearTimeout(timeoutId); // 清除超时定时器 + //console.log('成功', res, errCode); + callBack(res); + }, + fail({ errMsg, errCode }) { + // clearTimeout(timeoutId); // 清除超时定时器 + //console.log('失败'); + //console.log(errMsg, errCode) + let data = { + errMsg: errMsg, + errCode: errCode, + err: "请求支付失败", + } + callBack(data); + } + }) + } + + }); + } + + //#region 安卓获取支付结果 + /** 安卓获取支付结果 */ + static getPayInfo(callBack) { + // 延迟时间数组,按照 1 秒 3 次、2 秒 5 次、5 秒 6 次、15 秒 5 次的规则生成 + const delays = [ + ...Array(3).fill(1000), + ...Array(5).fill(2000), + ...Array(6).fill(5000), + ...Array(5).fill(15000) + ]; + let attempt = 0; // 轮询次数 + + const poll = () => { + if (attempt >= delays.length) { + MiniGameSdk.API.showToast("网络异常,如付款成功,重进游戏可领取奖励"); + callBack({ code: 0, data: { pay_state: -1 }, message: '轮询超时' }); + return; + } + + //console.log("请求uid:", Utils.uid); + //console.log("outTradeNo:", Utils.outTradeNo); + Utils.POST("wx/getPayInfo", { uid: Utils.uid, outTradeNo: Utils.outTradeNo }, res => { + //console.log("查询字符结果:", res); + if (res.code === 1 && (res.data.pay_state === 1 || res.data.pay_state === 2)) { + callBack(res); + } else { + attempt++; + setTimeout(poll, delays[attempt - 1]); + } + }); + }; + + poll(); + } + //#region 上传领取充值奖励 + /**上传领取充值奖励 */ + static setPayInfo(callBack, order) { + const delays = [1000, 3000, 6000, 9000, 12000];// 延迟时间数组 + let attempt = 0; // 重试次数 + const sendRequest = () => { + if (attempt > delays.length) { + // 达到最大重试次数,调用回调并返回错误信息 + callBack({ code: 0, message: '请求失败,已达到最大重试次数' }); + return; + } + let orderTemp = Utils.outTradeNo; + if (order) orderTemp = order; + //console.log("告知服务器发货的订单号:", orderTemp); + Utils.POST("wx/getOrderReward", { outTradeNo: orderTemp }, res => { + //console.log("告知服务器发货:", res); + if (res.code === 1) { + console.log("告知服务器发货成功:", res); + // 请求成功,调用回调并返回结果 + callBack(res); + } else { + // 请求失败,增加重试次数并设置下一次请求的延迟 + console.log("告知服务器发货失败:", res); + attempt++; + if (attempt <= delays.length) { + setTimeout(sendRequest, delays[attempt - 1]); + } else { + callBack({ code: 0, message: '请求失败,已达到最大重试次数' }); + } + } + }); + }; + sendRequest(); + } + + + //#region ios支付 + /**跳转客服,ios支付*/ + static GoKEFu(iosPayInfo, callBack) { + console.log("创建新的订单,清空老订单"); + var order = `wcx_` + Math.round(Math.random() * 10 ** 13) + Date.now(); + if (iosPayInfo.payment_name == "month_Card") { + cc.fx.GameConfig.GM_INFO.iosMonthOrder = null; + cc.fx.GameConfig.GM_INFO.iosMonthOrder = order; + } + else if (iosPayInfo.payment_name == "reborn_Gift") { + cc.fx.GameConfig.GM_INFO.iosReviveOrder = null; + cc.fx.GameConfig.GM_INFO.iosReviveOrder = order; + } + else if (iosPayInfo.payment_name == "starter_pack") { + cc.fx.GameConfig.GM_INFO.iosStarterOrder = null; + cc.fx.GameConfig.GM_INFO.iosStarterOrder = order; + } + else { + cc.fx.GameConfig.GM_INFO.iosShopOrder = null; + cc.fx.GameConfig.GM_INFO.iosShopOrder = order; + } + const data = { + tpye: "ios", + outTradeNo: order, + propName: iosPayInfo.payment_name, + count: iosPayInfo.payment_count, + price: iosPayInfo.price,//价格单位是分 + } + const shushu_data = { + outTradeNo: order, + price: iosPayInfo.price, + payment_name: iosPayInfo.payment_name, + payment_num: iosPayInfo.payment_count, + type: "ios", + } + console.log("ios创建订单信息:", data); + cc.fx.GameTool.shushu_Track("init_order", shushu_data); + //@ts-ignore + wx.openCustomerServiceConversation({ + sessionFrom: JSON.stringify(data), // 会话来源(可选) + showMessageCard: false, // 是否展示消息卡片 + success() { + callBack("success"); + //console.log('客服会话已successr'); + }, + fail() { + //console.log('客服会话已over'); + callBack("fail"); + } + }); + } + + //#region ios获取支付结果 + /** ios获取支付结果 */ + static getIosPayInfo(order, callBack) { + // 延迟 0.5 秒执行后续逻辑 + setTimeout(() => { + // 最大重试次数 + const maxRetries = 7; + let retryCount = 0; + // 标志位,用于记录 callBack 是否已经被调用 + let isCallBackCalled = false; + + const makeRequest = () => { + if (retryCount > maxRetries) { + if (!isCallBackCalled) { + MiniGameSdk.API.showToast("网络异常,如充值成功,重进游戏可领取奖励"); + callBack({ code: 2, data: null, message: '轮询超时,达到最大重试次数' }); + isCallBackCalled = true; + } + return; + } + + // 设置超时定时器 + const timeoutId = setTimeout(() => { + retryCount++; + console.log(`请求超时,第 ${retryCount} 次重新申请接口`); + makeRequest(); + }, 4000); + + const orderNow = order; + console.log("请求uid:" + Utils.uid); + console.log("outTradeNo:" + orderNow); + Utils.POST("wx/iosgetPayInfo", { outTradeNo: orderNow, uid: cc.fx.GameConfig.GM_INFO.uid }, res => { + console.log("查询字符结果IOS"); + console.log(res); + // 清除超时定时器 + clearTimeout(timeoutId); + if (!isCallBackCalled) { + callBack(res); + isCallBackCalled = true; + } + }); + }; + makeRequest(); + }, 500); + } + + //#region POST请求 + /** + * POST请求 + * + * @static + * @param {*} url + * @param {object} [param={}] + * @param {*} callback + * @memberof HttpUtil + */ + public static POST(url, param: object | any, callback) { + var xhr = cc.loader.getXMLHttpRequest(); + xhr.timeout = 5000;//超时时间 + let dataStr = ''; + Object.keys(param).forEach(key => { + dataStr += key + '=' + encodeURIComponent(param[key]) + '&'; + }) + if (dataStr !== '') { + dataStr = dataStr.substr(0, dataStr.lastIndexOf('&')); + } + url = this.httpip + url; + //console.log("请求地址:" + url); + xhr.open("POST", url, true); + xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); + xhr.onreadystatechange = function () { + if (xhr.readyState === 4) { + let response: any = xhr.responseText; + if (xhr.status >= 200 && xhr.status < 300) { + let httpStatus = xhr.statusText; + // callback(true, JSON.parse(response)); + try { + response = JSON.parse(response); + } catch { + response = { data: "数据有误", code: 0 }; + } + callback(response); + + } else { + callback({ data: "网络请求失败,请检查网络连接", code: 0 }); + } + } + }; + xhr.send(dataStr); + } + + static http_sendRequest(path, data, handler, extraUrl = null) { + let xhr = cc.loader.getXMLHttpRequest(); + xhr.timeout = 5000;//超时时间 + if (data == null) { + data = {}; + } + + if (extraUrl == null) { + //@ts-ignore + if (Utils.isDebug) { + extraUrl = "http://localhost:9003"; + } else { + extraUrl = this.httpip; + } + + } + //解析请求路由以及格式化请求参数 + let sendtext = "?"; + for (let k in data) { + if (sendtext != "?") { + sendtext += "&"; + } + sendtext += (k + '=' + data[k]); + } + //组装完整的URL + let requestURL = extraUrl + "/" + path + encodeURI(sendtext); + // //console.log("发送请求:"); + // //console.log(requestURL); + //发送请求 Get形式发送请求 + xhr.open("GET", requestURL, true); + if (cc.sys.isNative) {//如果是手机就设置请求头 + xhr.setRequestHeader("Accept-Encoding", "gzip,deflate"); + } + //计时判断是否超时 + let hasRetried = false; + let timer = setTimeout(function () { + //xhr.hasRetried=true; + hasRetried = true; + xhr.abort(); + //console.log("http timeOut......"); + retryFun(); + }, 5000); + //重新发送请求 + let retryFun = function () { + Utils.http_sendRequest(path, data, handler, extraUrl); + } + //监听反馈 + xhr.onreadystatechange = function () { + clearTimeout(timer); + if (xhr.readyState === 4 && (xhr.status >= 200 && xhr.status < 300)) { + let ret = null; + let respText = xhr.responseText; + try { + ret = JSON.parse(respText); + } catch (e) { + //console.log("http error:" + e); + ret = { + code: 1, + msg: e + } + } + if (handler) { + handler(ret); + } + handler = null; + } else if (xhr.readyState === 4) { + // if(xhr.hasRetried){ + // return; + // } + if (hasRetried) { + return; + } + //console.log('other readystate ==' + xhr.readyState + ', status:' + xhr.status); + if (xhr.readyState == 4 && xhr.status == 0) { + handler({ + err: 1, + msg: "网络连接失败,请稍后再试" + }); + return; + } + setTimeout(function () { + retryFun(); + }, 5000); + } else { + //console.log('other readystate:' + xhr.readyState + ', status:' + xhr.status); + } + } + try { + xhr.send(); + } catch (e) { + retryFun(); + } + return xhr; + } + + + //#region 获取用户数据 + /** 获取用户数据,包含头像昵称注册时间 */ + static getUserData(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let data = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + } + + Utils.POST("userData", data, res => { + //console.log("获得userData数据:", res); + if (res.code === 1) { + //console.log("服务器:获取用户数据成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:获取用户数据失败", res); + if (callBack) callBack(res); + } + }); + } + + } + + //#region 上传用户信息 + /** 上传用户信息 */ + static setUserData(data, callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + userData: JSON.stringify(data) + } + // console.log("准备上传头像昵称最后一步"); + Utils.POST("userData", setData, res => { + // console.log("获得userData数据:", res); + if (res.code === 1) { + // console.log("服务器:获取用户数据成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:获取用户数据失败", res); + if (callBack) callBack(res); + } + }); + + // useravatar:userData1.useravatar||Math.floor(Math.random()*4)+"", + // username:userData1.username||"user", + // useravatarIcon: userData1.useravatarIcon||"0", + } + + } + //#region 金币,等级,道具,体力 + /** 获得金币信息 */ + static getUserCoin(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + } + Utils.POST("userCoin", setData, res => { + //console.log("获得userCoin数据:", res); + if (res.code === 1) { + //console.log("服务器:获得金币成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:获得金币失败", res); + if (callBack) callBack(res); + } + }); + } + + } + /** 上传金币信息 */ + //上传金币信息 + static setUserCoin(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + if (cc.fx.GameConfig.GM_INFO.coin <= 0 || cc.fx.GameConfig.GM_INFO.coin == undefined) { + cc.fx.GameConfig.GM_INFO.coin = 0; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + coinAmount: Math.floor(cc.fx.GameConfig.GM_INFO.coin) + } + //console.log("服务器:上传金币", Math.floor(cc.fx.GameConfig.GM_INFO.coin)); + Utils.POST("userCoin", setData, res => { + //console.log("获得userCoin数据:", res); + if (res.code === 1) { + //console.log("服务器:上传金币成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:上传金币失败", res); + if (callBack) callBack(res); + } + }); + } + + } + + /** 获得关卡等级信息 */ + //获得关卡等级信息 + static getUserLevel(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + } + Utils.POST("userLevel", setData, res => { + //console.log("获得userLevel数据:", res); + if (res.code === 1) { + //console.log("服务器:获得等级成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:获得等级失败", res); + if (callBack) callBack(res); + } + }); + } + + } + + /** 上传关卡等级信息 */ + //上传关卡等级信息 + static setUserLevel(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + if (cc.fx.GameConfig.GM_INFO.level <= 0 || cc.fx.GameConfig.GM_INFO.level == undefined) { + cc.fx.GameConfig.GM_INFO.level = 0; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + levelAmount: parseInt(cc.fx.GameConfig.GM_INFO.level) + } + Utils.POST("userLevel", setData, res => { + //console.log("获得userLevel数据:", res); + if (res.code === 1) { + //console.log("服务器:上传等级成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:上传等级失败", res); + if (callBack) callBack(res); + } + }); + } + } + + /** 获得用户道具信息 */ + //获得用户道具信息 + static getUserProp(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + } + Utils.POST("userProp", setData, res => { + //console.log("获得userProp数据:", res); + if (res.code === 1) { + //console.log("服务器:获得道具成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:获得道具失败", res); + if (callBack) callBack(res); + } + }); + } + + } + + /** 上传道具信息 */ + //上传道具信息 + static setUserProp(propid, amount, callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = null; + if (propid == 0) { + setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + propType: propid, + propData: JSON.stringify(amount), + } + } + else { + setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + propType: propid, + propData: amount, + } + } + + //console.log("上传道具类型", propid, "上传道具数量:", amount); + Utils.POST("userProp", setData, res => { + //console.log("获得userProp数据:", res); + if (res.code === 1) { + //console.log("服务器:上传道具成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:上传道具失败", res); + if (callBack) callBack(res); + } + }); + } + + } + + /** 获取体力信息 */ + static getUserHealth(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + } + Utils.POST("userHealth", setData, res => { + //console.log("获得userHealth数据:", res); + if (res.code === 1) { + //console.log("服务器:获得体力成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:获得体力失败", res); + if (callBack) callBack(res); + } + }); + } + + } + /** 上传体力信息 */ + //上传关卡等级信息 + static setUserHealth(timestamp, callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + healthAmount: cc.fx.GameConfig.GM_INFO.hp, + timestamp: timestamp + } + Utils.POST("userHealth", setData, res => { + //console.log("获得userHealth数据:", res); + if (res.code === 1) { + //console.log("服务器:上传体力成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:上传体力失败", res); + if (callBack) callBack(res); + } + }); + } + } + + //#region 无限体力相关 + /** 获取无限体力信息 */ + static getUserPowerTime(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + } + Utils.POST("userPower", setData, res => { + //console.log("获得userPower数据:", res); + if (res.code === 1) { + //console.log("服务器:获得无限体力成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:获得无限体力失败", res); + if (callBack) callBack(res); + } + }); + } + + } + /** 上传无限体力信息 */ + static setUserPowerTime(userPowerTime, callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + userPowerTime: userPowerTime + } + + Utils.POST("userPower", setData, res => { + //console.log("获得userPower数据:", res); + if (res.code === 1) { + //console.log("服务器:上传无限体力成功", res); + if (callBack) callBack(res); + } else { + //console.log("服务器:上传无限体力失败", res); + if (callBack) callBack(res); + } + }); + } + } + //#region 月卡相关 + /** 获得月卡奖励信息 */ + static monthGetReward(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + } + Utils.POST("monthGetReward", setData, res => { + // //console.log("获得monthGetReward数据:", res); + if (res.code === 1) { + // //console.log("服务器:领取获得monthGetReward成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:获得monthGetReward失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + + /** 获得月卡信息 */ + static getMonthlyCard(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + // //console.log("获取monthlyCard信息:", uid, monthCardTime); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + } + + Utils.POST("monthlyCard", setData, res => { + // //console.log("获得monthlyCard数据:", res); + if (res.code === 1) { + // //console.log("服务器:获取monthlyCard成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:获取monthlyCard失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + /** 上传月卡信息 */ + //上传monthlyCard信息 + static setMonthlyCard(monthCardTime, callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + // //console.log("上传monthlyCard信息:", uid, monthCardTime); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + monthCardTime: monthCardTime, + } + + Utils.POST("monthlyCard", setData, res => { + // //console.log("获得monthlyCard数据:", res); + if (res.code === 1) { + // //console.log("服务器:上传monthlyCard成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:上传monthlyCard失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + + //#region 复活礼包相关 + /** 是否还有复活礼包出现机会 */ + static canRebonGift(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + } + + Utils.POST("canRebonGift", setData, res => { + if (res.code === 1) { + //console.log("服务器:canRebonGift'✅ ", res); + if (callBack) callBack(res); + } else { + if (callBack) callBack(res); + } + }); + } + } + + /** 购买复活礼包后上传 */ + //上传monthlyCard信息 + static rebornGift(rebornGift, callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + // //console.log("上传monthlyCard信息:", uid, monthCardTime); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + rebornGift: rebornGift, + } + + Utils.POST("rebornGift", setData, res => { + // //console.log("获得rebornGift数据:", res); + if (res.code === 1) { + //console.log("服务器:上传rebornGift成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:上传rebornGift失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + + //#region 分享相关 + //设置分享成功信息,帮别人成功 + static shareLevel(otherLevel, uid, callBack) { + let otheruid = uid || ""; + let level = otherLevel || 0; + let data = { + uid: otheruid, + otherUid: cc.fx.GameConfig.GM_INFO.uid, + shareLv: level, + }; + + // 延迟时间数组,按照 1 秒 3 次、2 秒 5 次、5 秒 6 次、15 秒 5 次的规则生成 + const delays = [ + ...Array(3).fill(1000), + ...Array(5).fill(2000), + ...Array(6).fill(5000), + ...Array(5).fill(15000) + ]; + let attempt = 0; // 轮询次数 + + const poll = () => { + if (attempt >= delays.length) { + MiniGameSdk.API.showToast("网络异常,分享数据提交失败"); + callBack({ code: 0, data: null, message: '轮询超时' }); + return; + } + + Utils.POST("shareLvSuccess", data, res => { + //console.log("获得shareLvSuccess数据:", res); + if (res.code === 1) { + //console.log("服务器:分享帮助通过关卡数据成功", res); + callBack(res); + } else { + attempt++; + setTimeout(poll, delays[attempt - 1]); + } + }); + }; + + poll(); + } + + /** 获取分享信息 */ + //获取分享信息 + static getShareLevel(callBack) { + let data = { + uid: cc.fx.GameConfig.GM_INFO.uid + }; + if (typeof wx !== 'undefined' && wx !== null) { + Utils.POST("getShareLv", data, res => { + //console.log("获得shareLvSuccess数据:", res); + if (res.code === 1) { + //console.log("服务器:分享帮助通过关卡数据成功", res); + if (callBack) callBack(res); + } else { + if (callBack) callBack(res); + } + }); + } + } + //#region 排行榜相关 + /** 获取世界排行榜 */ + static getRank(callBack) { + // 最大重试次数 + const maxRetries = 5; + let retryCount = 0; + // 标志位,用于记录 callBack 是否已经被调用 + let isCallBackCalled = false; + const makeRequest = () => { + if (retryCount > maxRetries) { + if (!isCallBackCalled) { + MiniGameSdk.API.showToast("网络异常,如充值成功,重进游戏可领取奖励"); + callBack({ code: 2, data: null, message: '轮询超时,达到最大重试次数' }); + isCallBackCalled = true; + } + return; + } + // 设置超时定时器 + const timeoutId = setTimeout(() => { + retryCount++; + console.log(`请求超时,第 ${retryCount} 次重新申请接口`); + makeRequest(); + }, 3000); + console.log("请求uid:" + Utils.uid); + Utils.POST("getRank", { uid: cc.fx.GameConfig.GM_INFO.uid }, res => { + console.log("查询排行榜结果"); + console.log(res); + // 清除超时定时器 + clearTimeout(timeoutId); + if (!isCallBackCalled) { + callBack(res); + isCallBackCalled = true; + } + }); + }; + makeRequest(); + } + + //#region 新手礼包相关 + //获取新手礼包是否能显示 + static getStarter_pack(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + event: "starter_pack", + } + Utils.POST("limitedTimeEvent", setData, res => { + console.log("获得新手礼包数据:", res); + if (res.code === 1) { + // //console.log("服务器:领取获得monthGetReward成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:获得monthGetReward失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + //触发新手礼包事件 + static setStarter_pack(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + event: "starter_pack", + } + Utils.POST("limitedTimeEvent", setData, res => { + console.log("触发新手礼包事件:", res); + if (res.code === 1) { + // //console.log("服务器:领取获得monthGetReward成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:获得monthGetReward失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + + //每日任务获取 + static getDailyQuestInfo(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'read', + } + Utils.POST("dayTaskInfo", setData, res => { + console.log("获取每日任务信息:", res); + if (res.code === 1) { + // //console.log("服务器:领取获得monthGetReward成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:获得monthGetReward失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + + static setDailyQuestInfo(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let tasks = { + levelPass: { value: cc.fx.GameConfig.GM_INFO.tasks.levelPass.value }, + share: { value: cc.fx.GameConfig.GM_INFO.tasks.share.value }, + useEnergy: { value: cc.fx.GameConfig.GM_INFO.tasks.useEnergy.value }, + useProp: { value: cc.fx.GameConfig.GM_INFO.tasks.useProp.value } + } + + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + task: JSON.stringify(tasks), + } + Utils.POST("dayTaskInfo", setData, res => { + if (res.code === 1) { + cc.fx.GameConfig.GM_INFO.tasks.levelPass = res.data.task["levelPass"]; + cc.fx.GameConfig.GM_INFO.tasks.share = res.data.task["share"]; + cc.fx.GameConfig.GM_INFO.tasks.useEnergy = res.data.task["useEnergy"]; + cc.fx.GameConfig.GM_INFO.tasks.useProp = res.data.task["useProp"]; + // //console.log("服务器:领取获得monthGetReward成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:获得monthGetReward失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + + static getDailyQuestReward(data, callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + taskType: JSON.stringify(data) + } + Utils.POST("getTaskReward", setData, res => { + if (res.code === 1) { + cc.fx.GameConfig.GM_INFO.tasks.levelPass = res.data.task["levelPass"]; + cc.fx.GameConfig.GM_INFO.tasks.share = res.data.task["share"]; + cc.fx.GameConfig.GM_INFO.tasks.useEnergy = res.data.task["useEnergy"]; + cc.fx.GameConfig.GM_INFO.tasks.useProp = res.data.task["useProp"]; + // //console.log("服务器:领取获得monthGetReward成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:获得monthGetReward失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + + static setWinStreak(callBack) { + if (typeof wx !== 'undefined' && wx !== null) { + let uid = cc.fx.StorageMessage.getStorage("uid"); + //旧的读取数据设置数据方法,以强联网为主 + if (uid != undefined && uid != "" && uid != null) { + cc.fx.GameConfig.GM_INFO.uid = uid; + } + let setData = { + uid: cc.fx.GameConfig.GM_INFO.uid, + action: 'save', + winStreak: cc.fx.GameConfig.GM_INFO.winStreak, + } + Utils.POST("setWinStreak", setData, res => { + if (res.code === 1) { + // //console.log("服务器:领取获得monthGetReward成功'✅ ", res); + if (callBack) callBack(res); + } else { + // //console.log("服务器:获得monthGetReward失败'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } + +} diff --git a/assets/Script/module/Pay/Utils.ts.meta b/assets/Script/module/Pay/Utils.ts.meta new file mode 100644 index 0000000..81d471f --- /dev/null +++ b/assets/Script/module/Pay/Utils.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "974132c6-ae8f-4a31-95c8-d525a2310abb", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/RankList.meta b/assets/Script/module/RankList.meta new file mode 100644 index 0000000..827c351 --- /dev/null +++ b/assets/Script/module/RankList.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "d3520299-33dc-43d2-b522-d424efb5575d", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/RankList/ItemRender.ts b/assets/Script/module/RankList/ItemRender.ts new file mode 100644 index 0000000..73aa31a --- /dev/null +++ b/assets/Script/module/RankList/ItemRender.ts @@ -0,0 +1,91 @@ + +import NumberToImage from "../../NumberToImage"; +import List, { ListType } from "./List"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class ItemRender extends cc.Component { + /**数据 */ + public data: any = null; + /**索引 0表示第一项*/ + public itemIndex: number = 0; + + @property(cc.SpriteFrame) + defaultsprite: cc.SpriteFrame = null; + + @property(cc.SpriteAtlas) + ui: cc.SpriteAtlas = null; + + /**数据改变时调用 */ + public dataChanged() { + let useravatarIcon = this.data.useravatarIcon; + useravatarIcon = "kuang_" + (parseInt(useravatarIcon) + 1); + this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(useravatarIcon); + console.log("用户头像框:", this.data.useravatarIcon, useravatarIcon); + this.data.username = cc.fx.GameTool.subName(this.data.username, 7); + let name = this.data.username; + if (name == "user") name = "匿名玩家"; + // this.node.getChildByName("rankLab").getComponent(cc.Label).string = this.data.rank + ""; + this.node.getChildByName("nameLab").getComponent(cc.Label).string = name + ""; + // this.node.getChildByName("totalLab").getComponent(cc.Label).string = this.data.levelAmount; + + NumberToImage.numberToImageNodes3((this.data.rank), 43, 15, "rank_", this.node.getChildByName("rankLab"), true); + NumberToImage.numberToImageNodes3(this.data.levelAmount, 43, 15, "level_", this.node.getChildByName("totalLab"), true); + + // this.node.getChildByName("timeLab").getComponent(cc.Label).string = timeTemp + ""; + this.node.getChildByName("rank").getChildByName("one").active = false; + this.node.getChildByName("rank").getChildByName("two").active = false; + this.node.getChildByName("rank").getChildByName("three").active = false; + if (this.data.rank == 1) { + this.node.getChildByName("rank").getChildByName("one").active = true; + this.node.getChildByName("rankLab").active = false; + } + else if (this.data.rank == 2) { + this.node.getChildByName("rank").getChildByName("two").active = true; + this.node.getChildByName("rankLab").active = false; + } + else if (this.data.rank == 3) { + this.node.getChildByName("rank").getChildByName("three").active = true; + this.node.getChildByName("rankLab").active = false; + } else { + this.node.getChildByName("rankLab").active = true; + } + if (this.data.useravatar == "" || this.data.useravatar == null || this.data.useravatar == undefined + ) { + this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite; + } + else if (this.data.useravatar == "0" || this.data.useravatar == "1" || this.data.useravatar == "2" + || this.data.useravatar == "3") { + let useravatar = this.data.useravatar; + useravatar = "icon_" + useravatar; + this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatar); + } + + else this.setPic(); + } + + public setPic() { + // console.log("设置头像:", this.data.useravatar); + // this.node.getChildByName("pic").getChildByName("icon").active = false; + this.node.getChildByName("pic").active = false; + var self = this; + let url = this.data.useravatar; + + cc.assetManager.loadRemote(url, { ext: '.png' }, (err, texture: cc.Texture2D) => { + if (texture) { + this.node.getChildByName("pic").active = true; + var sprite = this.node.getChildByName("pic").getComponent(cc.Sprite); + sprite.spriteFrame = new cc.SpriteFrame(texture); + // console.log(this.data.rank,"设置头像成功",err); + } + else { + // console.log("设置头像失败",url); + // console.log(err, texture) + } + }) + } + + +} diff --git a/assets/Script/module/RankList/ItemRender.ts.meta b/assets/Script/module/RankList/ItemRender.ts.meta new file mode 100644 index 0000000..57a45d3 --- /dev/null +++ b/assets/Script/module/RankList/ItemRender.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "ca0f9934-a015-436e-9402-f8e30d4c5de6", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/RankList/List.ts b/assets/Script/module/RankList/List.ts new file mode 100644 index 0000000..7f3ee18 --- /dev/null +++ b/assets/Script/module/RankList/List.ts @@ -0,0 +1,592 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import ItemRender from "./ItemRender" + +const { ccclass, property } = cc._decorator; + +/**列表排列方式 */ +export enum ListType { + /**水平排列 */ + Horizontal = 1, + /**垂直排列 */ + Vertical = 2, + /**网格排列 */ + Grid = 3 +} + +/**网格布局中的方向 */ +export enum StartAxisType { + /**水平排列 */ + Horizontal = 1, + /**垂直排列 */ + Vertical = 2, +} + +/** + * 列表 + * 根据cocos_example的listView改动而来 + * @author chenkai 2020.7.8 + * @example + * 1.创建cocos的ScrollView组件,添加List,设置List属性即可 + * + */ +@ccclass +export default class List extends cc.Component { + + //==================== 属性面板 ========================= + /**列表选项 */ + @property({ type: cc.Node, tooltip: "列表项" }) + public itemRender: cc.Node = null; + + /**排列方式 */ + @property({ type: cc.Enum(ListType), tooltip: "排列方式" }) + public type: ListType = ListType.Vertical; + + /**网格布局中的方向 */ + @property({ type: cc.Enum(StartAxisType), tooltip: "网格布局中的方向", visible() { return this.type == ListType.Grid } }) + public startAxis: StartAxisType = StartAxisType.Horizontal; + + /**列表项之间X间隔 */ + @property({ type: cc.Integer, tooltip: "列表项X间隔", visible() { return (this.type == ListType.Horizontal || this.type == ListType.Grid) } }) + public spaceX: number = 0; + + /**列表项之间Y间隔 */ + @property({ type: cc.Integer, tooltip: "列表项Y间隔", visible() { return this.type == ListType.Vertical || this.type == ListType.Grid } }) + public spaceY: number = 0; + + /**上间距 */ + @property({ type: cc.Integer, tooltip: "上间距", visible() { return (this.type == ListType.Vertical || this.type == ListType.Grid) } }) + public padding_top: number = 0; + + /**下间距 */ + @property({ type: cc.Integer, tooltip: "下间距", visible() { return (this.type == ListType.Vertical || this.type == ListType.Grid) } }) + public padding_buttom: number = 0; + + /**左间距 */ + @property({ type: cc.Integer, tooltip: "左间距", visible() { return (this.type == ListType.Horizontal || this.type == ListType.Grid || this.type == ListType.Vertical) } }) + public padding_left: number = 0; + + + + @property(cc.Integer) + public _padding: number = 0; + + /**右间距 */ + @property({ type: cc.Integer, tooltip: "右间距", visible() { return (this.type == ListType.Horizontal || this.type == ListType.Grid) } }) + public padding_right: number = 0; + + //====================== 滚动容器 =============================== + /**列表滚动容器 */ + public scrollView: cc.ScrollView = null; + /**scrollView的内容容器 */ + private content: cc.Node = null; + + //======================== 列表项 =========================== + /**列表项数据 */ + private itemDataList: Array = []; + /**应创建的实例数量 */ + private spawnCount: number = 0; + /**存放列表项实例的数组 */ + private itemList: Array = []; + /**item的高度 */ + private itemHeight: number = 0; + /**item的宽度 */ + private itemWidth: number = 0; + /**存放不再使用中的列表项 */ + private itemPool: Array = []; + + //======================= 计算参数 ========================== + /**距离scrollView中心点的距离,超过这个距离的item会被重置,一般设置为 scrollVIew.height/2 + item.heigt/2 + space,因为这个距离item正好超出scrollView显示范围 */ + private halfScrollView: number = 0; + /**上一次content的X值,用于和现在content的X值比较,得出是向左还是向右滚动 */ + private lastContentPosX: number = 0; + /**上一次content的Y值,用于和现在content的Y值比较,得出是向上还是向下滚动 */ + private lastContentPosY: number = 0; + /**网格行数 */ + private gridRow: number = 0; + /**网格列数 */ + private gridCol: number = 0; + /**刷新时间,单位s */ + private updateTimer: number = 0; + /**刷新间隔,单位s */ + private updateInterval: number = 0.1; + /**是否滚动容器 */ + private bScrolling: boolean = false; + /**刷新的函数 */ + private updateFun: Function = function () { }; + + onLoad() { + this.itemHeight = this.itemRender.height; + this.itemWidth = this.itemRender.width; + this.scrollView = this.node.getComponent(cc.ScrollView); + this.content = this.scrollView.content; + this.content.anchorX = 0; + this.content.anchorY = 1; + this.content.removeAllChildren(); + this.scrollView.node.on("scrolling", this.onScrolling, this); + } + + /** + * 列表数据 (列表数据复制使用,如果列表数据改变,则需要重新设置一遍数据) + * @param itemDataList item数据列表 + */ + public setData(itemDataList: Array) { + // 检查 itemDataList 是否为有效数组,如果不是则初始化为空数组 + this.itemDataList = itemDataList.slice(); + this.updateContent(); + } + + /**计算列表的各项参数 */ + private countListParam() { + let dataLen = this.itemDataList.length; + if (this.type == ListType.Vertical) { + this.scrollView.horizontal = false; + this.scrollView.vertical = true; + this.content.width = this.content.parent.width; + this.content.height = dataLen * this.itemHeight + (dataLen - 1) * this.spaceY + this.padding_top + this.padding_buttom; + this.spawnCount = Math.round(this.scrollView.node.height / (this.itemHeight + this.spaceY)) + 2; //计算创建的item实例数量,比当前scrollView容器能放下的item数量再加上2个 + this.halfScrollView = this.scrollView.node.height / 2 + this.itemHeight / 2 + this.spaceY; //计算bufferZone,item的显示范围 + this.updateFun = this.updateV; + } else if (this.type == ListType.Horizontal) { + this.scrollView.horizontal = true; + this.scrollView.vertical = false; + this.content.width = dataLen * this.itemWidth + (dataLen - 1) * this.spaceX + this.padding_left + this.padding_right; + this.content.height = this.content.parent.height; + this.spawnCount = Math.round(this.scrollView.node.width / (this.itemWidth + this.spaceX)) + 2; + this.halfScrollView = this.scrollView.node.width / 2 + this.itemWidth / 2 + this.spaceX; + this.updateFun = this.udpateH; + } else if (this.type == ListType.Grid) { + if (this.startAxis == StartAxisType.Vertical) { + this.scrollView.horizontal = false; + this.scrollView.vertical = true; + this.content.width = this.content.parent.width; + //如果left和right间隔过大,导致放不下一个item,则left和right都设置为0,相当于不生效 + if (this.padding_left + this.padding_right + this.itemWidth + this.spaceX > this.content.width) { + this.padding_left = 0; + this.padding_right = 0; + console.error("padding_left或padding_right过大"); + } + + this.gridCol = Math.floor((this.content.width - this.padding_left - this.padding_right) / (this.itemWidth + this.spaceX)); + this.gridRow = Math.ceil(dataLen / this.gridCol); + this.content.height = this.gridRow * this.itemHeight + (this.gridRow - 1) * this.spaceY + this.padding_top + this.padding_buttom; + this.spawnCount = Math.round(this.scrollView.node.height / (this.itemHeight + this.spaceY)) * this.gridCol + this.gridCol * 2; + this.halfScrollView = this.scrollView.node.height / 2 + this.itemHeight / 2 + this.spaceY; + this.updateFun = this.updateGrid_V; + } else if (this.startAxis == StartAxisType.Horizontal) { + this.scrollView.horizontal = true; + this.scrollView.vertical = false; + //计算高间隔 + this.content.height = this.content.parent.height; + //如果left和right间隔过大,导致放不下一个item,则left和right都设置为0,相当于不生效 + if (this.padding_top + this.padding_buttom + this.itemHeight + this.spaceY > this.content.height) { + this.padding_top = 0; + this.padding_buttom = 0; + console.error("padding_top或padding_buttom过大"); + } + + this.gridRow = Math.floor((this.content.height - this.padding_top - this.padding_buttom) / (this.itemHeight + this.spaceY)); + this.gridCol = Math.ceil(dataLen / this.gridRow); + this.content.width = this.gridCol * this.itemWidth + (this.gridCol - 1) * this.spaceX + this.padding_left + this.padding_right; + this.spawnCount = Math.round(this.scrollView.node.width / (this.itemWidth + this.spaceX)) * this.gridRow + this.gridRow * 2; + this.halfScrollView = this.scrollView.node.width / 2 + this.itemWidth / 2 + this.spaceX; + this.updateFun = this.updateGrid_H; + } + } + } + + /** + * 创建列表 + * @param startIndex 起始显示的数据索引 0表示第一项 + * @param offset scrollView偏移量 + */ + private createList(startIndex: number, offset: cc.Vec2) { + //当需要显示的数据长度 > 虚拟列表长度, 删除最末尾几个数据时,列表需要重置位置到scrollView最底端 + if (this.itemDataList.length > this.spawnCount && (startIndex + this.spawnCount - 1) >= this.itemDataList.length) { + startIndex = this.itemDataList.length - this.spawnCount; + offset = this.scrollView.getMaxScrollOffset(); + + //当需要显示的数据长度 <= 虚拟列表长度, 隐藏多余的虚拟列表项 + } else if (this.itemDataList.length <= this.spawnCount) { + startIndex = 0; + } + + for (let i = 0; i < this.spawnCount; i++) { + let item: cc.Node; + //需要显示的数据索引在数据范围内,则item实例显示出来 + if (i + startIndex < this.itemDataList.length) { + if (this.itemList[i] == null) { + item = this.getItem(); + this.itemList.push(item); + item.parent = this.content; + } else { + item = this.itemList[i]; + } + //需要显示的数据索引超过了数据范围,则item实例隐藏起来 + } else { + //item实例数量 > 需要显示的数据量 + if (this.itemList.length > (this.itemDataList.length - startIndex)) { + item = this.itemList.pop(); + item.removeFromParent(); + this.itemPool.push(item); + } + continue; + } + + let itemRender: ItemRender = item.getComponent(ItemRender); + itemRender.itemIndex = i + startIndex; + itemRender.data = this.itemDataList[i + startIndex]; + itemRender.dataChanged(); + + if (this.type == ListType.Vertical) { + // item左边对齐padding_left + item.setPosition(this.padding_left + item.width / 2, -item.height * (0.5 + i + startIndex) - this.spaceY * (i + startIndex) - this.padding_top); + } else if (this.type == ListType.Horizontal) { + item.setPosition(item.width * (0.5 + i + startIndex) + this.spaceX * (i + startIndex) + this.padding_left, -this.content.height / 2); + } else if (this.type == ListType.Grid) { + if (this.startAxis == StartAxisType.Vertical) { + var row = Math.floor((i + startIndex) / this.gridCol); + var col = (i + startIndex) % this.gridCol; + item.setPosition(item.width * (0.5 + col) + this.spaceX * col + this.padding_left, -item.height * (0.5 + row) - this.spaceY * row - this.padding_top); + item.opacity = 255; + } else if (this.startAxis == StartAxisType.Horizontal) { + var row = (i + startIndex) % this.gridRow; + var col = Math.floor((i + startIndex) / this.gridRow); + item.setPosition(item.width * (0.5 + col) + this.spaceX * col + this.padding_left, -item.height * (0.5 + row) - this.spaceY * row - this.padding_top); + item.opacity = 255; + } + } + } + + this.scrollView.scrollToOffset(offset); + } + + /**获取一个列表项 */ + private getItem() { + if (this.itemPool.length == 0) { + return cc.instantiate(this.itemRender); + } else { + return this.itemPool.pop(); + } + } + + update(dt) { + if (this.bScrolling == false) { + return; + } + this.updateTimer += dt; + if (this.updateTimer < this.updateInterval) { + return; + } + this.updateTimer = 0; + this.bScrolling = false; + this.updateFun(); + } + + onScrolling() { + this.bScrolling = true; + } + + /**垂直排列 */ + private updateV() { + let items = this.itemList; + let item; + let bufferZone = this.halfScrollView; + let isUp = this.scrollView.content.y > this.lastContentPosY; + let offset = (this.itemHeight + this.spaceY) * items.length; + for (let i = 0; i < items.length; i++) { + item = items[i]; + let viewPos = this.getPositionInView(item); + if (isUp) { + //item上滑时,超出了scrollView上边界,将item移动到下方复用,item移动到下方的位置必须不超过content的下边界 + if (viewPos.y > bufferZone && item.y - offset - this.padding_buttom > -this.content.height) { + let itemRender: ItemRender = item.getComponent(ItemRender); + let itemIndex = itemRender.itemIndex + items.length; + itemRender.itemIndex = itemIndex; + itemRender.data = this.itemDataList[itemIndex]; + itemRender.dataChanged(); + item.y = item.y - offset; + } + } else { + //item下滑时,超出了scrollView下边界,将item移动到上方复用,item移动到上方的位置必须不超过content的上边界 + if (viewPos.y < -bufferZone && item.y + offset + this.padding_top < 0) { + let itemRender: ItemRender = item.getComponent(ItemRender); + let itemIndex = itemRender.itemIndex - items.length; + itemRender.itemIndex = itemIndex; + itemRender.data = this.itemDataList[itemIndex]; + itemRender.dataChanged(); + item.y = item.y + offset; + } + } + } + this.lastContentPosY = this.scrollView.content.y; + } + + /**水平排列 */ + private udpateH() { + let items = this.itemList; + let item; + let bufferZone = this.halfScrollView; + let isRight = this.scrollView.content.x > this.lastContentPosX; + let offset = (this.itemWidth + this.spaceX) * items.length; + for (let i = 0; i < items.length; i++) { + item = items[i]; + let viewPos = this.getPositionInView(item); + if (isRight) { + //item右滑时,超出了scrollView右边界,将item移动到左方复用,item移动到左方的位置必须不超过content的左边界 + if (viewPos.x > bufferZone && item.x - offset - this.padding_left > 0) { + let itemRender: ItemRender = item.getComponent(ItemRender); + let itemIndex = itemRender.itemIndex - items.length; + itemRender.itemIndex = itemIndex; + itemRender.data = this.itemDataList[itemIndex]; + itemRender.dataChanged(); + item.x = item.x - offset; + } + } else { + //item左滑时,超出了scrollView左边界,将item移动到右方复用,item移动到右方的位置必须不超过content的右边界 + if (viewPos.x < -bufferZone && item.x + offset + this.padding_right < this.content.width) { + let itemRender: ItemRender = item.getComponent(ItemRender); + let itemIndex = itemRender.itemIndex + items.length; + itemRender.itemIndex = itemIndex; + itemRender.data = this.itemDataList[itemIndex]; + itemRender.dataChanged(); + item.x = item.x + offset; + } + } + } + this.lastContentPosX = this.scrollView.content.x; + } + + /**网格垂直排列 */ + private updateGrid_V() { + let items = this.itemList; + let item: cc.Node; + let bufferZone = this.halfScrollView; + let isUp = this.scrollView.content.y > this.lastContentPosY; + let offset = (this.itemHeight + this.spaceY) * (this.spawnCount / this.gridCol); + for (let i = 0; i < items.length; i++) { + item = items[i]; + let viewPos = this.getPositionInView(item); + if (isUp) { + //item上滑时,超出了scrollView上边界,将item移动到下方复用,item移动到下方的位置必须不超过content的下边界 + if (viewPos.y > bufferZone && item.y - offset - this.padding_buttom > -this.content.height) { + let itemRender: ItemRender = item.getComponent(ItemRender); + let itemIndex = itemRender.itemIndex + (this.spawnCount / this.gridCol) * this.gridCol; + if (this.itemDataList[itemIndex] != null) { + item.y = item.y - offset; + itemRender.itemIndex = itemIndex; + itemRender.data = this.itemDataList[itemIndex]; + itemRender.dataChanged(); + item.opacity = 255; + } else { + item.y = item.y - offset; + itemRender.itemIndex = itemIndex; + item.opacity = 0; + } + } + } else {//item下滑时,超出了scrollView下边界,将item移动到上方复用,item移动到上方的位置必须不超过content的上边界 + if (viewPos.y < -bufferZone && item.y + offset + this.padding_top < 0) { + let itemRender: ItemRender = item.getComponent(ItemRender); + let itemIndex = itemRender.itemIndex - (this.spawnCount / this.gridCol) * this.gridCol; + if (this.itemDataList[itemIndex] != null) { + item.y = item.y + offset; + itemRender.itemIndex = itemIndex; + itemRender.data = this.itemDataList[itemIndex]; + itemRender.dataChanged(); + item.opacity = 255; + } else { + item.y = item.y + offset; + itemRender.itemIndex = itemIndex; + item.opacity = 0; + } + } + } + } + this.lastContentPosY = this.scrollView.content.y; + } + + /**网格水平排列 */ + private updateGrid_H() { + let items = this.itemList; + let item; + let bufferZone = this.halfScrollView; + let isRight = this.scrollView.content.x > this.lastContentPosX; + let offset = (this.itemWidth + this.spaceX) * (this.spawnCount / this.gridRow); + for (let i = 0; i < items.length; i++) { + item = items[i]; + let viewPos = this.getPositionInView(item); + if (isRight) { + //item右滑时,超出了scrollView右边界,将item移动到左方复用,item移动到左方的位置必须不超过content的左边界 + if (viewPos.x > bufferZone && item.x - offset - this.padding_left > 0) { + let itemRender: ItemRender = item.getComponent(ItemRender); + let itemIndex = itemRender.itemIndex - (this.spawnCount / this.gridRow) * this.gridRow; + if (this.itemDataList[itemIndex] != null) { + item.x = item.x - offset; + itemRender.itemIndex = itemIndex; + itemRender.data = this.itemDataList[itemIndex]; + itemRender.dataChanged(); + item.opacity = 255; + } else { + item.x = item.x - offset; + itemRender.itemIndex = itemIndex; + item.opacity = 0; + } + } + } else { + //item左滑时,超出了scrollView左边界,将item移动到右方复用,item移动到右方的位置必须不超过content的右边界 + if (viewPos.x < -bufferZone && item.x + offset + this.padding_right < this.content.width) { + let itemRender: ItemRender = item.getComponent(ItemRender); + let itemIndex = itemRender.itemIndex + (this.spawnCount / this.gridRow) * this.gridRow; + if (this.itemDataList[itemIndex] != null) { + item.x = item.x + offset; + itemRender.itemIndex = itemIndex; + itemRender.data = this.itemDataList[itemIndex]; + itemRender.dataChanged(); + item.opacity = 255; + } else { + item.x = item.x + offset; + itemRender.itemIndex = itemIndex; + item.opacity = 0; + } + } + } + } + this.lastContentPosX = this.scrollView.content.x; + } + + /**获取item在scrollView的局部坐标 */ + private getPositionInView(item) { + let worldPos = item.parent.convertToWorldSpaceAR(item.position); + let viewPos = this.scrollView.node.convertToNodeSpaceAR(worldPos); + return viewPos; + } + + /**获取列表数据 */ + public getListData() { + return this.itemDataList; + } + + /** + * 增加一项数据到列表的末尾 + * @param data 数据 + */ + public addItem(data: any) { + this.itemDataList.push(data); + this.updateContent(); + } + + /** + * 增加一项数据到列表指定位置 + * @param index 位置,0表示第1项 + * @param data 数据 + */ + public addItemAt(index: number, data: any) { + if (this.itemDataList[index] != null || this.itemDataList.length == index) { + this.itemDataList.splice(index, 1, data); + this.updateContent(); + } + } + + /** + * 删除一项数据 + * @param index 删除项的位置 ,0表示第1项 + */ + public deleteItem(index: number) { + if (this.itemDataList[index] != null) { + this.itemDataList.splice(index, 1); + this.updateContent(); + } + } + + /** + * 改变一项数据 + * @param index 位置,0表示第1项 + * @param data 替换的数据 + */ + public changeItem(index: number, data: any) { + if (this.itemDataList[index] != null) { + this.itemDataList[index] = data; + this.updateContent(); + } + } + + /**获取第一个Item的位置 */ + private updateContent() { + //显示列表实例为0个 + if (this.itemList.length == 0) { + this.countListParam(); + this.createList(0, new cc.Vec2(0, 0)); + //显示列表的实例不为0个,则需要重新排列item实例数组 + } else { + if (this.type == ListType.Vertical) { + this.itemList.sort((a: any, b: any) => { + return b.y - a.y; + }); + } else if (this.type == ListType.Horizontal) { + this.itemList.sort((a: any, b: any) => { + return a.x - b.x; + }); + } else if (this.type == ListType.Grid) { + if (this.startAxis == StartAxisType.Vertical) { + this.itemList.sort((a: any, b: any) => { + return a.x - b.x; + }); + this.itemList.sort((a: any, b: any) => { + return b.y - a.y; + }); + } else if (this.startAxis == StartAxisType.Horizontal) { + this.itemList.sort((a: any, b: any) => { + return b.y - a.y; + }); + this.itemList.sort((a: any, b: any) => { + return a.x - b.x; + }); + } + } + + this.countListParam(); + + //获取第一个item实例需要显示的数据索引 + var startIndex = this.itemList[0].getComponent(ItemRender).itemIndex; + + if (this.type == ListType.Grid && this.startAxis == StartAxisType.Vertical) { + startIndex += (startIndex + this.spawnCount) % this.gridCol; + } else if (this.type == ListType.Grid && this.startAxis == StartAxisType.Horizontal) { + startIndex += (startIndex + this.spawnCount) % this.gridRow; + } + + //getScrollOffset()和scrollToOffset()的x值是相反的 + var offset: cc.Vec2 = this.scrollView.getScrollOffset(); + offset.x = - offset.x; + + this.createList(startIndex, offset); + } + } + + /**销毁 */ + public onDestroy() { + //清理列表项 + let len = this.itemList.length; + for (let i = 0; i < len; i++) { + if (cc.isValid(this.itemList[i], true)) { + this.itemList[i].destroy(); + } + } + this.itemList.length = 0; + //清理对象池 + len = this.itemPool.length; + for (let i = 0; i < len; i++) { + if (cc.isValid(this.itemPool[i], true)) { + this.itemPool[i].destroy(); + } + } + this.itemPool.length = 0; + //清理列表数据 + this.itemDataList.length = 0; + } +} diff --git a/assets/Script/module/RankList/List.ts.meta b/assets/Script/module/RankList/List.ts.meta new file mode 100644 index 0000000..18cde3b --- /dev/null +++ b/assets/Script/module/RankList/List.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "d54211e0-2d28-4528-88e3-e5fd7c9b59a2", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/RankList/RankManager.ts b/assets/Script/module/RankList/RankManager.ts new file mode 100644 index 0000000..2399053 --- /dev/null +++ b/assets/Script/module/RankList/RankManager.ts @@ -0,0 +1,83 @@ +import List from "./List"; +const { ccclass, property } = cc._decorator; +//排行榜 +@ccclass +export default class RankManager extends cc.Component { + @property(cc.Sprite) //用户头像换图 + phone: cc.Sprite = null; + private rankList: List; //排行榜 + + listData: any; //总列表信息 + selfData: any; //自己信息 + rankNumber: number; //用户自己排名 有可能不在排行榜内99+ + rankTotal: number; //获取排行榜用户数量 现在为100 + + onLoad() { + // this.init(); + } + //初始化数据 + init(data) { + this.rankList = cc.find("ScrollView", this.node).getComponent(List); + this.listData = data; + this.selfData = null; + this.rankNumber = 100; + this.rankTotal = 100; + this.rankList.setData(data); + this.getRank(); + } + + start() { + + } + //调用获取排行榜接口 + getRank() { + let dataFile = { + length: 100 + } + cc.fx.GameTool.getRank(dataFile, data => this.getRankData(data)); + } + //实际设置排行数据 + getRankData(data) { + if (data) { + // console.log(data); + cc.fx.GameTool.getRankData(data, this, 6); + this.setPic(this.selfData.pic); + } + } + //返回按钮 + backClick() { + cc.director.loadScene("LoadScene"); + } + //最上方用户动画 + + //设置头像 处理的逻辑比较多,不用公共类的了 + public setPic(pic) { + this.phone.node.parent.getChildByName("icon").active = false; + this.phone.node.active = false; + fetch(pic) + .then(response => { + return response.headers.get('Content-Length'); + }) + .then(errNo => { + if (errNo == "5093") { + this.phone.node.parent.getChildByName("icon").active = true; + } + }) + .catch(error => { + // console.error('Error fetching X-Info:', error); + }); + var self = this; + cc.assetManager.loadRemote(pic, { ext: '.png' }, (err, texture: cc.Texture2D) => { + + if (texture) { + self.phone.node.active = true; + self.phone.spriteFrame = new cc.SpriteFrame(texture); + } + else { + } + + }) + } + + +} diff --git a/assets/Script/module/RankList/RankManager.ts.meta b/assets/Script/module/RankList/RankManager.ts.meta new file mode 100644 index 0000000..92d275b --- /dev/null +++ b/assets/Script/module/RankList/RankManager.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "acd1851f-b1b6-45c8-932d-4cc28b135b73", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Share.meta b/assets/Script/module/Share.meta new file mode 100644 index 0000000..e87268a --- /dev/null +++ b/assets/Script/module/Share.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "bdc76845-baea-4381-911e-af437cccf839", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Share.zip b/assets/Script/module/Share.zip new file mode 100644 index 0000000..705f190 Binary files /dev/null and b/assets/Script/module/Share.zip differ diff --git a/assets/Script/module/Share.zip.meta b/assets/Script/module/Share.zip.meta new file mode 100644 index 0000000..b160e03 --- /dev/null +++ b/assets/Script/module/Share.zip.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "b42c4fc1-4cd1-4b12-b206-930cea3d49ca", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Share/share.ts b/assets/Script/module/Share/share.ts new file mode 100644 index 0000000..e69de29 diff --git a/assets/Script/module/Share/share.ts.meta b/assets/Script/module/Share/share.ts.meta new file mode 100644 index 0000000..5137d2b --- /dev/null +++ b/assets/Script/module/Share/share.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "7290c680-dfdc-4c59-9736-a614cc2a8bcf", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Storage.meta b/assets/Script/module/Storage.meta new file mode 100644 index 0000000..8f85b4b --- /dev/null +++ b/assets/Script/module/Storage.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "2af8f2ef-b8a0-43ad-a144-ef4a887f2fa9", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Storage/Storage.ts b/assets/Script/module/Storage/Storage.ts new file mode 100644 index 0000000..ea5d843 --- /dev/null +++ b/assets/Script/module/Storage/Storage.ts @@ -0,0 +1,27 @@ +//缓存浏览器数据 +var StorageMessage = { + getStorage : function(key){ + var result = null; + if(cc.sys.localStorage.getItem(key)){ + var result = cc.sys.localStorage.getItem(key); + } + + if(result){ + result = JSON.parse(result); + } + return result; + }, + setStorage : function(key,value){ + //主动拉起分享接口 + var temp = JSON.stringify(value); + cc.sys.localStorage.setItem(key, temp) + }, + removeStorage : function(key){ + //主动删除消息接口 + if(cc.sys.localStorage.getItem(key)){ + cc.sys.localStorage.removeItem(key) + } + }, +}; + +export { StorageMessage }; \ No newline at end of file diff --git a/assets/Script/module/Storage/Storage.ts.meta b/assets/Script/module/Storage/Storage.ts.meta new file mode 100644 index 0000000..fcef259 --- /dev/null +++ b/assets/Script/module/Storage/Storage.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "10029dfc-5454-4977-bd11-8809e8f48cac", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Tool.meta b/assets/Script/module/Tool.meta new file mode 100644 index 0000000..10f9f32 --- /dev/null +++ b/assets/Script/module/Tool.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "2a81f82d-8d16-44af-b947-44eea4dde54f", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/module/Tool/GameTool.ts b/assets/Script/module/Tool/GameTool.ts new file mode 100644 index 0000000..7ef6e61 --- /dev/null +++ b/assets/Script/module/Tool/GameTool.ts @@ -0,0 +1,1531 @@ + +import MapConroler from "../../Map"; +import Freeze from "../../prop/Freeze"; +import SceneManager from "../../SceneManager"; +import { MiniGameSdk } from "../../Sdk/MiniGameSdk"; +import Utils from "../Pay/Utils"; +//@ts-ignore +//最大工具类 各种公共方法,以及处理上传,获取后端接口数据 +var GameTool = { + _startTime: 0, + _endTime: 0, + _totalTime: 0, + + //获取userId + Authentication() { + let name = "user_" + cc.fx.GameConfig.GM_INFO.gameId; + var data = JSON.parse(localStorage.getItem(name)); + if (data == "undifend" || data == null || data == "") { + var urlNow = window.location.href; + if (!this.containsTrain(urlNow)) { + let url = "https://api.sparkus.cn/api/user/auth/login?domain=hui32579WdYPsgYq&callback=" + location.href; + window.location.href = url; + } + } + else { + cc.fx.StorageMessage.setStorage(name, data); + cc.fx.GameConfig.GM_INFO.userId = parseInt(data.userId); + } + }, + + containsTrain(str) { + return /from=train/i.test(str); + }, + + //埋点上传 + setGameData() { + //GAME_DATA 初始化 每次清零 + cc.fx.GameConfig.GAME_DATA = []; + cc.fx.GameConfig.GAME_DATA.push(cc.fx.GameConfig.CLICK_DATA); + cc.fx.GameConfig.CLICK_init(); + let data = cc.fx.GameConfig.GAME_DATA; + let matchId = this.getMatchId(); + let postData = { + "gameId": cc.fx.GameConfig.GM_INFO.gameId, + "userId": cc.fx.GameConfig.GM_INFO.userId, + "scode": cc.fx.GameConfig.GM_INFO.scode, + "matchId": matchId, + "data": data + }; + + // //console.log("上传数据:",postData); + // cc.fx.HttpUtil.uploadUserLogData(postData,function(){}) + }, + //上传排行榜 type为1 + setRank(data) { + //GAME_DATA 初始化 每次清零 + let postData = { + "gameId": cc.fx.GameConfig.GM_INFO.gameId, + "userId": cc.fx.GameConfig.GM_INFO.userId, + "type": 1, + "score": data.score, + "accuracy": data.date, + "success": cc.fx.GameConfig.GM_INFO.success + }; + // cc.fx.HttpUtil.rankData(1,function(){},postData); + }, + //获取排行榜 type为2 + getRank(data, callback) { + let rankLength = data.length; + let postData = { + "gameId": cc.fx.GameConfig.GM_INFO.gameId, + "userId": cc.fx.GameConfig.GM_INFO.userId, + "page": 1, + "pageSize": rankLength + }; + //回调进getRankData + // cc.fx.HttpUtil.rankData(2,data =>{callback(data)},postData); + }, + //获取matchId 用于上传每次点击数据里面记录id方便查询 + getMatchId() { + let matchId = cc.sys.localStorage.getItem("matchId"); + let tempId = matchId; + if (matchId == "undifend" || matchId == null) { + matchId = this.setMatchId(); + } + else { + if (this.containsNanana(matchId) == true) { + matchId = this.setMatchId(); + } + else { + let char = parseInt(tempId.substring(10, tempId.length)); + if (cc.fx.GameConfig.GM_INFO.level == 1) { + char += 1; + matchId = tempId.slice(0, 10) + char + ""; + if (this.containsNanana(matchId)) matchId = this.setMatchId(); + cc.fx.GameConfig.GM_INFO.matchId = matchId; + cc.sys.localStorage.setItem("matchId", matchId); + } + } + } + + if (this.containsNanana(matchId) == true) { + matchId = this.setMatchId(); + } + return matchId; + }, + //检测matchId 如果有缓存以前的nanana数据清除 + containsNanana(str) { + return /na/i.test(str); + }, + //重新设置MatchId + setMatchId() { + // 定义包含可用字符的字符集 + const characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; + // 创建一个数组以保存随机字符 + const uuidArray = []; + // 循环10次 生成10位的UUID + for (let i = 0; i < 10; i++) { + // 生成随机索引,范围是字符集的长度 + const randomIndex = Math.floor(Math.random() * characters.length); + // 从字符集中获取随机字符 + const randomChar = characters.charAt(randomIndex); + // 将字符添加到数组中 + uuidArray.push(randomChar); + } + let data = uuidArray.join('') + 1 + ""; + cc.sys.localStorage.setItem("matchNumber", 1); + cc.sys.localStorage.setItem("matchId", data); + cc.fx.GameConfig.GM_INFO.matchId = data; + return data; + }, + //截取名字 + subName(name, length) { + if (name.length > length) { + name = name.substring(0, 5) + "..." + } + return name; + }, + //设置头像 + setPic(node, pic) { + node.active = false; + let url = pic; + setTimeout(() => { + fetch(url) + .then(response => { + return response.headers.get('Content-Length'); + }) + .then(errNo => { + if (errNo == "5093") { + node.active = true; + } + }) + .catch(error => { + // console.error('Error fetching X-Info:', error); + }); + }, 100); + cc.assetManager.loadRemote(url, { ext: '.png' }, (err, texture: cc.Texture2D) => { + if (texture) { + node.active = true; + node.getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture); + } + else { + // //console.log(err,texture) + } + }) + }, + //第一个参数把目标带进来处理,第二个参数为名字长度,不同场景不同需求 + //名字4短,小排行,名字6长,大排行 + getRankData(data, target, nameLength) { + target.listData = data.data.rank; + // target.selfData = data.data.info; + let rankData = []; + let self = false; + //cc.fx.GameTool.setPic(target.selfNode.getChildByName("pic").getChildByName("icon"), target.selfData.pic); + for (let i = 0; i <= target.listData.length - 1; i++) { + rankData.push({ rank: (i + 1), name: target.listData[i].nickName, total: target.listData[i].score, time: null, pic: target.listData[i].pic }); + if (cc.fx.GameConfig.GM_INFO.userId == target.listData[i].userId) { + self = true; + target.rankNumber = i; + target.selfNode.getChildByName("rankLab").getComponent(cc.Label).string = (i + 1) + ""; + } + if (i == (target.listData.length - 1) && self == false) { + target.rankNumber = i; + target.selfNode.getChildByName("rankLab").getComponent(cc.Label).string = "99+"; + } + } + // target.selfData.nickName = cc.fx.GameTool.subName(target.selfData.nickName, nameLength); + // target.selfNode.getChildByName("nameLab").getComponent(cc.Label).string = target.selfData.nickName; + // target.selfNode.getChildByName("totalLab").getComponent(cc.Label).string = target.selfData.score; + //let timeTemp = cc.fx.GameTool.getTimeShenNong(target.selfData.totleTimes); + // target.selfNode.getChildByName("timeLab").getComponent(cc.Label).string = timeTemp + ""; + switch (target.selfNode.getChildByName("rankLab").getComponent(cc.Label).string) { + case "1": + target.selfNode.getChildByName("rank").getChildByName("one").active = true; + break; + case "2": + target.selfNode.getChildByName("rank").getChildByName("two").active = true; + break; + case "3": + target.selfNode.getChildByName("rank").getChildByName("three").active = true; + break; + } + // 大排行 + if (nameLength == 6) { + // target.rankList.setData(rankData); + // target.selfNode.opacity = 255; + // if (target.selfData.totalSunCount == 0) target.selfNode.opacity = 0; + } + }, + + getSeedRandom: function (min, max) {//包含min 不包含max + // //console.log("随机数:",cc.fx.GameConfig.GM_INFO.currSeed); + max = max || 1; + min = min || 0; + cc.fx.GameConfig.GM_INFO.currSeed = (cc.fx.GameConfig.GM_INFO.currSeed * 9301 + 49297) % 233280; + let rnd = cc.fx.GameConfig.GM_INFO.currSeed / 233280.0; + let tmp = min + rnd * (max - min); + return parseInt(tmp); + }, + //获取关卡配置的那个关卡数 + getCustom(type) { + let custom = cc.fx.StorageMessage.getStorage(cc.fx.storageType.storageTypeCustom); + if (custom == "undifend" || custom == null || custom == "") { + this.setCustom(); + } + else { + cc.fx.GameConfig.GM_INFO_SET("custom", custom[0]); + if (custom[0] != 0 || type == true) { + custom.shift(); + if (custom.length == 0) { + this.setCustom(); + } + else cc.fx.StorageMessage.setStorage(cc.fx.storageType.storageTypeCustom, custom); + } + } + }, + //本地没有存储到配置,或者配置用完,重新创建配置 + setCustom() { + let arrayLength = cc.fx.GameConfig.LEVEL_INFO.length; + let arrayList = []; + for (let i = 1; i < arrayLength; i++) { + arrayList.push(i); + } + arrayList.sort(() => Math.random() - 0.5); + arrayList.unshift(0) + cc.fx.GameConfig.GM_INFO_SET("custom", arrayList[0]); + cc.fx.StorageMessage.setStorage(cc.fx.storageType.storageTypeCustom, arrayList); + }, + + + getSetScreenResolutionFlag: function () { + let size = cc.winSize; + let width = size.width; + let height = size.height; + if ((height / width) > (16.2 / 9)) return false; + return true; + }, + //判断全面屏适配 + setFit: function (canvas) { + let flag = cc.fx.GameTool.getSetScreenResolutionFlag(); + if (flag) { + // //console.log("不是全面屏"); + } else { + // //console.log("是全面屏"); + } + return flag; + }, + //获取游戏信息 + getGameInfo: function (node) { + var jg = false; + return jg; + }, + //设置游戏信息 + setGameInfo: function (pd) { + + }, + + //打字机效果 + typingAni(label, text, cb, target) { + var self = target; + var html = ''; + var arr = text.split(''); + var len = arr.length; + var step = 0; + self.func = () => { + html += arr[step]; + label.string = html; + if (++step == len) { + self.unschedule(self.func); + cb && cb(); + } + } + self.schedule(self.func, 0.1, cc.macro.REPEAT_FOREVER, 0) + }, + + //输入秒,返回需要展示时间格式 + getTimeMargin: (second) => { + let total = 0; + total = second; + let hour = 0; + hour = parseInt((total / 3600) + "");//计算整数小时数 + let afterHour = total - hour * 60 * 60;//取得算出小时数后剩余的秒数 + let min = parseInt((afterHour / 60) + "");//计算整数分 + let m = "" + min; + if (min < 10) m = "0" + min; + let afterMin = total - hour * 60 * 60 - min * 60;//取得算出分后剩余的秒数 + let miao = afterMin + ""; + if (afterMin < 10) miao = "0" + afterMin; + return m + ':' + miao + }, + + //输入秒,返回需要展示时间格式 + getTimeMargin2: (second) => { + // 计算总秒数 + let total = Math.floor(second); + // 计算小时数 + const hours = Math.floor(total / 3600); + total %= 3600; + // 计算分钟数 + const minutes = Math.floor(total / 60); + // 计算剩余秒数 + const seconds = total % 60; + + // 将小时、分钟和秒转换为两位数的字符串 + const hh = String(hours).padStart(2, '0'); + const mm = String(minutes).padStart(2, '0'); + const ss = String(seconds).padStart(2, '0'); + + // 若小时数大于 0,返回包含小时的完整格式,否则只返回分和秒 + return hours > 0 ? `${hh}:${mm}:${ss}` : `${mm}:${ss}`; + }, + + //输入秒,返回需要展示时间格式 + getTimeShenNong: (second) => { + second = parseInt(second / 1000 + ""); + let total = 0; + total = second; + let min = 0; + if (total > 60) { + min = parseInt((total / 60) + "");//计算整数分 + } + let m = min + "'"; + + let afterMin = total - min * 60;//取得算出分后剩余的秒数 + let miao = afterMin + "''"; + return m + miao + }, + + //打乱数组 + shuffleArray: function (array) { + for (let i = array.length - 1; i > 0; i--) { + const j = Math.floor(Math.random() * (i + 1)); + [array[i], array[j]] = [array[j], array[i]]; + } + return array; + }, + + + //增加关卡数 + addLevel(time1, time2) { + cc.fx.GameConfig.GM_INFO.level += 1; + cc.fx.GameTool.maxLevel() + MiniGameSdk.API.setNewCloudlevel(); + const timestamp = Date.now(); + let levelInfo = { + level: cc.fx.GameConfig.GM_INFO.level, + timestamp: timestamp, + } + //console.log("55555存储关卡数据:", time1, time2); + + cc.fx.StorageMessage.setStorage("level", levelInfo); + let is_frenzy = false; + if (MapConroler._instance) { + is_frenzy = MapConroler._instance.is_frenzy; + } + if (time1 != null && time2 != null) { + let data = { + time: time1, + add_Time: time2, + is_frenzy: is_frenzy, + result: "success" + } + cc.fx.GameTool.shushu_Track("finish_stage", data); + let data2 = { + is_frenzy: is_frenzy, + count: cc.fx.GameConfig.GM_INFO.winStreak + } + cc.fx.GameTool.shushu_Track("hammer_frenzy", data2); + MiniGameSdk.API.shushu_SetSuperProperties(null, null); + } + + cc.fx.GameTool.setUserLevel((data) => { + // //console.log("存储结果:",data); + // //console.log("上传",data); + }) + }, + + //关卡上限 + maxLevel() { + let jg = false; + if (cc.fx.GameConfig.GM_INFO.level > 440) { + cc.fx.GameConfig.GM_INFO.level = 441; + jg = true; + } + return jg; + }, + + //改变金币信息 + changeCoin(coin) { + //console.log("changeCoin", coin); + if (coin == undefined) return; + if (coin < 0 && cc.fx.GameConfig.GM_INFO.coin < -coin) { + // //console.log("金币不足",cc.fx.GameConfig.GM_INFO.coin,-coin); + return; + } + cc.fx.GameConfig.GM_INFO.coin += coin; + if (coin > 0) { + // let data = "获得" + (coin) + "金币"; + // MiniGameSdk.API.showToast(data); + } + else { + let data = "消耗" + (-coin) + "金币"; + MiniGameSdk.API.showToast(data); + } + if (cc.fx.GameConfig.GM_INFO.coin < 0) { + cc.fx.GameConfig.GM_INFO.coin = 0; + } + // //console.log("改变的金币:",coin); + // //console.log("自身金币信息:",cc.fx.GameConfig.GM_INFO.coin); + const timestamp = Date.now(); + let coinInfo = { + coin: cc.fx.GameConfig.GM_INFO.coin, + timestamp: timestamp, + } + MiniGameSdk.API.shushu_SetSuperProperties(null, null); + cc.fx.StorageMessage.setStorage("coin", coinInfo); + // //console.log("存储金币数据:",cc.fx.GameConfig.GM_INFO.coin,coinInfo); + cc.fx.GameTool.setUserCoin((data) => { + // //console.log("上传",data); + }) + }, + //@ts-ignore + //获取用户金币数量 + getUserCoin(callback: Function) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + //laf云函数 + Utils.getUserCoin((data) => { + if (data) { + if (callback) callback(data); + } + }) + } + }, + + //改变用户金币 + setUserCoin(callback) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + if (cc.fx.GameConfig.GM_INFO.coin <= 0 || cc.fx.GameConfig.GM_INFO.coin == undefined) { + cc.fx.GameConfig.GM_INFO.coin = 0; + } + //laf云函数 + Utils.setUserCoin((data) => { + }) + } + }, + + + //获取用户关卡数 + getUserLevel(callback: Function) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + //laf云函数 + Utils.getUserLevel((data) => { + if (data) { + if (callback) callback(data); + } + }) + } + }, + + //进游戏处理 体力值情况 + getHealth(callback: Function) { + let health = cc.fx.StorageMessage.getStorage("health"); + const timestamp = Date.now(); + cc.fx.GameConfig.GM_INFO.hp = cc.fx.GameConfig.GM_INFO.hp_Max; + //没有存储过体力值 + if (health == null || health == undefined || health == "") { + //console.log("没存储过体力值,初进"); + cc.fx.GameConfig.GM_INFO.hp = cc.fx.GameConfig.GM_INFO.hp_Max; + cc.fx.GameTool.getUserHealth((res) => { + //console.log("体力接口返回结果", data); + if (res.code == 1) { + cc.fx.GameConfig.GM_INFO.hp = res.data.healthAmount; + cc.fx.GameConfig.GM_INFO.min_Time = res.data.timestamp; + let healthInfo = { + "health": cc.fx.GameConfig.GM_INFO.hp, + "timestamp": res.data.timestamp + } + MiniGameSdk.API.shushu_SetSuperProperties(null, null); + cc.fx.StorageMessage.setStorage("health", healthInfo); + } + else { + cc.fx.GameTool.setUserHealth(0, () => { + }); + } + if (callback) callback(); + }) + } + else { + //console.log("有存储过体力值:", health); + cc.fx.GameConfig.GM_INFO.hp = health.health; + //console.log("体力值读取完毕", cc.fx.GameConfig.GM_INFO.hp); + if (health.health < 0) { + //console.log("体力值异常,归零"); + cc.fx.GameConfig.GM_INFO.hp = 0; + cc.fx.GameConfig.GM_INFO.min_Time = 0; + cc.fx.GameTool.setUserHealth(0, () => { + if (callback) callback(); + }); + } + else if (health.health < cc.fx.GameConfig.GM_INFO.hp_Max) { + // 30分钟的毫秒数 + const thirtyMinutes = 30 * 60 * 1000; + const elapsedTime = timestamp - health.timestamp; + // 计算恢复的体力值 + const recoveredHealth = Math.min(cc.fx.GameConfig.GM_INFO.hp_Max - health.health, Math.floor(elapsedTime / thirtyMinutes)); + if (recoveredHealth > 0) { + health.health += recoveredHealth; + // 更新 health.timestamp + health.timestamp += recoveredHealth * thirtyMinutes; + cc.fx.GameTool.setUserHealth(recoveredHealth, () => { + if (callback) callback(); + }, true); + // MiniGameSdk.API.showToast("恢复1点体力值"); + //console.log(`体力值恢复 ${recoveredHealth} 点,当前体力值: ${cc.fx.GameConfig.GM_INFO.hp}`); + // 如果体力增加后仍未满,更新计时 + if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) { + const remainingTime = Math.ceil((thirtyMinutes - ((timestamp - health.timestamp) % thirtyMinutes)) / 1000); + cc.fx.GameConfig.GM_INFO.min_Time = remainingTime; + // 更新本地存储的体力信息 + let healthInfo = { + "health": cc.fx.GameConfig.GM_INFO.hp, + "timestamp": health.timestamp + } + cc.fx.StorageMessage.setStorage("health", healthInfo); + } + } else { + // 计算距离下一次恢复的剩余时间 + const remainingTime = Math.ceil((thirtyMinutes - (elapsedTime % thirtyMinutes)) / 1000); + //console.log(`体力值未满,待恢复,距离下一次恢复还剩 ${remainingTime} 秒`); + cc.fx.GameConfig.GM_INFO.min_Time = remainingTime; + if (callback) callback(); + } + } + else { + //console.log("体力值已满"); + if (callback) callback(); + } + } + }, + + //获取用户体力值 + getUserHealth(callback: Function) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + console.log("即将进入体力获取接口"); + //laf云函数 + Utils.getUserHealth((res) => { + if (res.code == 1) { + if (callback) callback(res); + } + }) + } + }, + + //设置用户体力值 有可能加,有可能定时器减 + setUserHealth(health, callback, update) { + if (health > 0) { + if (cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) { + cc.fx.GameConfig.GM_INFO.hp += health; + if (cc.fx.GameConfig.GM_INFO.hp > cc.fx.GameConfig.GM_INFO.hp_Max) { + cc.fx.GameConfig.GM_INFO.hp = cc.fx.GameConfig.GM_INFO.hp_Max; + } + } + } + else { + cc.fx.GameConfig.GM_INFO.hp += health; + if (cc.fx.GameConfig.GM_INFO.hp < 0) + cc.fx.GameConfig.GM_INFO.hp = 0; + } + + // else MiniGameSdk.API.showToast("体力值恢复"); + const timestamp = Date.now(); + let healthInfo = { + "health": cc.fx.GameConfig.GM_INFO.hp, + "timestamp": timestamp + } + + //如果消耗之前不是满体力,说明已经在恢复期,并不用修改时间 + if (health < 0 && cc.fx.GameConfig.GM_INFO.hp != cc.fx.GameConfig.GM_INFO.hp_Max - 1) { + let oldTime = cc.fx.StorageMessage.getStorage("health").timestamp; + healthInfo = { + "health": cc.fx.GameConfig.GM_INFO.hp, + "timestamp": oldTime + } + } + // 体力为满的,health没变化,则刷新体力时间为0 + else if (cc.fx.GameConfig.GM_INFO.hp == cc.fx.GameConfig.GM_INFO.hp_Max && health == 0) { + healthInfo = { + "health": cc.fx.GameConfig.GM_INFO.hp, + "timestamp": 0 + } + } + + // 增加体力,且增加后体力未满 + else if (health > 0 && cc.fx.GameConfig.GM_INFO.hp != cc.fx.GameConfig.GM_INFO.hp_Max) { + let oldTime = cc.fx.StorageMessage.getStorage("health").timestamp; + if (update) { + oldTime = timestamp; + } + healthInfo = { + "health": cc.fx.GameConfig.GM_INFO.hp, + "timestamp": oldTime + } + } + else { + healthInfo = { + "health": cc.fx.GameConfig.GM_INFO.hp, + "timestamp": timestamp + } + } + + cc.fx.StorageMessage.setStorage("health", healthInfo); + MiniGameSdk.API.shushu_SetSuperProperties(null, null); + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + //laf云函数 + Utils.setUserHealth(healthInfo.timestamp, (data) => { + if (callback) { + callback(data); + } + }) + } + }, + + //购买行为 + buyReview(coin, callback: Function) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + // //console.log("实际即将消耗金币:",coin); + // this.changeCoin(coin); + callback(); + } + }, + + //更改用户道具数 + buyProp(propid, callback: Function) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + + let num = 3; + let cost = 600; + + if (propid == 2003) { + cost = 900; + num = 3; + } + else if (propid == 2002) { + num = 1; + } + //console.log("_____________新版本", num); + cc.fx.GameTool.changeCoin(-cost); + const dataTemp = { + change_reason: "商城购买道具消耗", + id: (1001 + ""), + num: -cost + } + cc.fx.GameTool.shushu_Track("resource_cost", dataTemp); + + let _id = ""; + let propNumber = 0; + if (propid == 2001) { + _id = "freeze_in_game"; + cc.fx.GameConfig.GM_INFO.freezeAmount += num; + propNumber = cc.fx.GameConfig.GM_INFO.freezeAmount; + } + else if (propid == 2002) { + _id = "hammer_in_game"; + cc.fx.GameConfig.GM_INFO.hammerAmount += num; + propNumber = cc.fx.GameConfig.GM_INFO.hammerAmount; + } + else if (propid == 2003) { + _id = "wand_in_game"; + cc.fx.GameConfig.GM_INFO.magicAmount += num; + propNumber = cc.fx.GameConfig.GM_INFO.magicAmount; + } + + //console.log("购买道具:", num); + cc.fx.GameTool.setUserProp(propid, propNumber, (data) => { + }) + + const data = { + change_reason: "game", + id: propid, + num: num, + compensate: false + } + cc.fx.GameTool.shushu_Track("resource_get", data); + + const buyData = { + item_id: _id, + item_num: num, + item_price: cost, + cost_type: "gold" + } + //console.log("____________即将上传Shop_buy", buyData); + cc.fx.GameTool.shushu_Track("shop_buy", buyData); + + callback(); + } + }, + + + //改变用户关卡 + setUserLevel(callback) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + //laf云函数 + Utils.setUserLevel((data) => { + }) + } + }, + + //获取用户关卡数 + getUserProp(callback: Function) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + //laf云函数 + Utils.getUserProp((data) => { + if (callback) { + callback(data); + } + }) + } + }, + + //改变用户道具 + setUserProp(propid, amount, callback) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + let newPropData = null; + if (propid == 0) { + newPropData = { + freeze: cc.fx.GameConfig.GM_INFO.freezeAmount, + hammer: cc.fx.GameConfig.GM_INFO.hammerAmount, + magic_wand: cc.fx.GameConfig.GM_INFO.magicAmount, + } + } + else if (propid == 2001) { + newPropData = amount; + } + else if (propid == 2002) { + newPropData = amount; + } + else if (propid == 2003) { + newPropData = amount; + } + + Utils.setUserProp(propid, newPropData, (data) => { + }) + } + }, + + // 检查是否有足够的硬币 + consumeCoins(requiredCoins: number, propName: string, amount: number, callback) { + + + }, + + // 设置用户信息 + setUserInfo(register, callback: Function) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + const time = cc.fx.GameTool.formatDate(new Date()); + let userInfo = {} + console.log("源数据:", cc.fx.GameConfig.GM_INFO.useravatarIcon, cc.fx.GameConfig.GM_INFO.useravaterkuang); + let useravatar = cc.fx.GameConfig.GM_INFO.useravatarIcon; + console.log(cc.fx.GameTool.getCharAtPosition(useravatar, 5)); + if (useravatar.length < 10) { + useravatar = cc.fx.GameTool.getCharAtPosition(useravatar, 5); + } + let useravaterkuang = cc.fx.GameConfig.GM_INFO.useravaterkuang; + useravaterkuang = (parseInt(cc.fx.GameTool.getCharAtPosition(useravaterkuang, 6)) - 1) + ""; + console.log("处理后的数据", useravatar, useravaterkuang); + if (register == true) { + userInfo = { + // 这里填写要存储的用户数据 + username: cc.fx.GameConfig.GM_INFO.username, //用户名称 + useravatar: useravatar, //用户头像 + useravatarIcon: useravaterkuang, //用户头像框 + register_time: time + } + } + else if (register == false) { + userInfo = { + // 这里填写要存储的用户数据 + username: cc.fx.GameConfig.GM_INFO.username, //用户名称 + useravatar: useravatar, //用户头像 + useravatarIcon: useravaterkuang, //用户头像框 + } + } + else { + userInfo = { + // 这里填写要存储的用户数据 + username: cc.fx.GameConfig.GM_INFO.username, //用户名称 + useravatar: useravatar, //用户头像 + useravatarIcon: useravaterkuang, //用户头像框 + } + } + console.log("上传头像昵称22222", userInfo); + Utils.setUserData(userInfo, (data) => { + }) + } + }, + + //商城购买 + shopBuy(productId, compensate) { + let coin = 0; + let price = 0; + let getCoin = 0; + + var rewardData = null; + //console.log(productId); + //console.log("发放奖励", productId); + switch (productId) { + case "gold_1": + cc.fx.GameTool.changeCoin(1200); + coin = 1200; + price = 600; + // MiniGameSdk.API.showToast("充值成功,获得1200金币"); + rewardData = [ + { type: "coin", count: coin }, + ] + break; + case "gold_2": + cc.fx.GameTool.changeCoin(8000); + coin = 8000; + price = 3600; + // MiniGameSdk.API.showToast("充值成功,获得8000金币"); + rewardData = [ + { type: "coin", count: coin }, + ] + break; + case "gold_3": + cc.fx.GameTool.changeCoin(16000); + coin = 16000; + price = 6800; + // MiniGameSdk.API.showToast("充值成功,获得16000金币"); + rewardData = [ + { type: "coin", count: coin }, + ] + break; + case "gold_4": + cc.fx.GameTool.changeCoin(32000); + coin = 32000; + price = 12800; + // MiniGameSdk.API.showToast("充值成功,获得32000金币"); + rewardData = [ + { type: "coin", count: coin }, + ] + break; + case "gold_5": + cc.fx.GameTool.changeCoin(100000); + coin = 100000; + price = 32800; + // MiniGameSdk.API.showToast("充值成功,获得100000金币"); + rewardData = [ + { type: "coin", count: coin }, + ] + break; + case "gold_6": + cc.fx.GameTool.changeCoin(240000); + coin = 240000; + price = 64800; + // MiniGameSdk.API.showToast("充值成功,获得240000金币"); + rewardData = [ + { type: "coin", count: coin }, + ] + break; + case "unlimited_health_bundle_10": + cc.fx.GameTool.changeCoin(2500); + coin = 2500; + price = 1000; + this.setUserPowerTime(3600); + // MiniGameSdk.API.showToast("获得无限体力小组合包"); + rewardData = [ + { type: "coin", count: coin }, + { type: "infinite_health", count: 3600 }, + ] + break; + case "unlimited_health_bundle_20": + cc.fx.GameTool.changeCoin(5000); + coin = 5000; + price = 2000; + let propData = { + "freeze": 2, + "hammer": 2, + "magic_wand": 2, + "price": price + } + this.getShopProp(propData, compensate); + this.setUserPowerTime(7200); + // MiniGameSdk.API.showToast("获得无限体力大组合包"); + rewardData = [ + { type: "coin", count: coin }, + { type: "freeze", count: 2 }, + { type: "hammer", count: 2 }, + { type: "magic", count: 2 }, + { type: "infinite_health", count: 7200 }, + ] + break; + case "unlimited_health_bundle_30": + cc.fx.GameTool.changeCoin(7500); + coin = 7500; + price = 3000; + let propData2 = { + "freeze": 5, + "hammer": 5, + "magic_wand": 5, + "price": price + } + this.getShopProp(propData2, compensate); + this.setUserPowerTime(14400); + // MiniGameSdk.API.showToast("获得无限体力超组合包"); + rewardData = [ + { type: "coin", count: coin }, + { type: "freeze", count: 5 }, + { type: "hammer", count: 5 }, + { type: "magic", count: 5 }, + { type: "infinite_health", count: 14400 }, + ] + break; + case "month_Card": + cc.fx.GameTool.changeCoin(6000); + coin = 6000; + price = 3000; + // MiniGameSdk.API.showToast("充值成功,获得240000金币"); + rewardData = [ + { type: "coin", count: coin }, + ] + break; + case "reborn_Gift": + cc.fx.GameTool.changeCoin(1000); + coin = 1000; + price = 600; + rewardData = [ + { type: "coin", count: coin }, + { type: "freeze", count: 1 }, + { type: "hammer", count: 1 }, + { type: "magic", count: 1 }, + ] + let propData3 = { + "freeze": 1, + "hammer": 1, + "magic_wand": 1, + "price": price + } + this.getShopProp(propData3, compensate); + break; + case "starter_pack": + cc.fx.GameTool.changeCoin(3000); + coin = 3000; + price = 300; + let propData4 = { + "freeze": 5, + "hammer": 5, + "magic_wand": 5, + "price": price + } + this.getShopProp(propData4, compensate); + rewardData = [ + { type: "coin", count: coin }, + { type: "freeze", count: 5 }, + { type: "hammer", count: 5 }, + { type: "magic", count: 5 } + ] + break; + } + + + if (MapConroler._instance != null) { + //console.log("應該下發獎勵:", rewardData); + MapConroler._instance.SceneManager.openRewardWindow(rewardData); + } + + else { + const canvasTemp = cc.find("Canvas"); // 假设 Canvas 节点 + if (canvasTemp) { + const JiaZai = canvasTemp.getComponent("JiaZai"); + if (JiaZai) { + JiaZai.openRewardWindow(rewardData); + } + } + } + + + const dataTemp = { + change_reason: "shop", + id: "1001", + num: coin, + compensate: compensate + } + cc.fx.GameTool.shushu_Track("resource_get", dataTemp); + + const buyData = { + item_id: productId, + item_num: coin, + item_price: price, + cost_type: "cash", + compensate: compensate + } + cc.fx.GameTool.shushu_Track("shop_buy", buyData); + MiniGameSdk.API.shushu_SetSuperProperties(null, true); + }, + + formatDate(date: Date): string { + const year = date.getFullYear(); + const month = String(date.getMonth() + 1).padStart(2, '0'); + const day = String(date.getDate()).padStart(2, '0'); + const hours = String(date.getHours()).padStart(2, '0'); + const minutes = String(date.getMinutes()).padStart(2, '0'); + const seconds = String(date.getSeconds()).padStart(2, '0'); + const milliseconds = String(date.getMilliseconds()).padStart(3, '0'); + + return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}.${milliseconds}`; + }, + + //获取时间戳 + getTime() { + const timestamp = (new Date().getTime()) + return timestamp; + }, + pushLister: function () { + + }, + removeAllLister: function () { + + }, + //上报数据 + shushu_Track: function (name, data) { + let eventData = {} + switch (name) { + case "login": + eventData = { + register_time: data.register_time, + } + break; + case "register": + eventData = { + register_time: data.register_time, + } + break; + case "enter_stage": + eventData = { + stage_id: (cc.fx.GameConfig.GM_INFO.level + 1), + is_frenzy: data.is_frenzy, + } + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + eventData = { + stage_id: cc.fx.GameConfig.GM_INFO.otherLevel, + } + } + break; + case "finish_stage": + eventData = { + stage_id: (cc.fx.GameConfig.GM_INFO.level + 1), + stage_duration: data.time, + added_time: data.add_Time, + is_frenzy: data.is_frenzy, + result: data.result + } + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + eventData = { + stage_id: cc.fx.GameConfig.GM_INFO.otherLevel, + stage_duration: data.time, + added_time: data.add_Time, + result: data.result + } + } + break; + case "resource_get": + eventData = { + change_reason: data.change_reason, //获得来源 + change_num: data.num, //获得数量 + resource_id: data.id, //道具id + compensate: data.compensate || false, //是否是补发 + } + break; + case "resource_cost": + eventData = { + change_reason: data.change_reason, //获得来源 + change_num: data.num, //获得数量 + resource_id: data.id //道具id + } + break; + case "shop_buy": + eventData = { + item_id: data.item_id, + item_num: data.item_num, + item_price: data.item_price, + cost_type: data.cost_type, + } + break; + case "init_order": //发起充值时 + eventData = { + order_id: data.outTradeNo, + pay_amount: data.price, + payment_name: data.payment_name, + payment_num: data.payment_num, + payment_type: data.type, + } + break; + case "payment": //发起充值时 + eventData = { + order_id: data.outTradeNo, + pay_amount: data.pay_amount, + payment_name: data.payment_name, + payment_num: data.payment_num, + payment_type: data.type, + } + break; + case "payment_fail": //发起充值时 + eventData = { + order_id: data.outTradeNo, + pay_amount: data.pay_amount, + payment_name: data.payment_name, + payment_num: data.payment_num, + payment_type: data.type, + fail_reason: data.fail_reason, + } + break; + case "stage_help": //帮助通关时 + eventData = { + identity: data.identity, //发起者为helped 帮助者为helper + helpedId: data.helpedId, //被帮助者uid + level: data.level, //被帮助关卡等级 + success: data.success || null, //被帮助关卡是否成功 + } + break; + case "hammer_frenzy": + eventData = { + is_frenzy: data.is_frenzy, + count: data.count + } + break; + case "daily_task": + eventData = { + task_id: data.id, + task_status: data.status + } + break; + } + if (name == "stage_help") { + console.log("准备上报完成", data); + console.log(eventData); + // MiniGameSdk.API.showToast("准备上报完成游戏"); + } + // MiniGameSdk.API.shushu_Track(name,eventData); + MiniGameSdk.API.shushu_Track(name, eventData); + }, + + //获取微信小游戏版本号 + getWechatGameVersion: function () { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + //@ts-ignore + const accountInfo = wx.getAccountInfoSync(); + const miniProgram = accountInfo.miniProgram; + switch (miniProgram.envVersion) { + case 'develop': + return '开发版'; + case 'trial': + return '体验版'; + case 'release': + return '正式版'; + default: + return '未知版本'; + } + } + }, + + //微信小游戏根据openId将用户分组,有可能会两分,三分,六分 + setWechatGameGroup: function (type: 2 | 3 | 6) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + //@ts-ignore + if (cc.fx.GameConfig.GM_INFO.openid) { + const openid = cc.fx.GameConfig.GM_INFO.openid; + const lastChar = openid[openid.length - 1]; + const charCode = lastChar.charCodeAt(0); + let groupNumber: number; + //console.log("openid尾数____________________:", charCode); + + // 根据 type 参数计算分组编号 + switch (type) { + case 2: + groupNumber = charCode % 2; + break; + case 3: + groupNumber = charCode % 3; + break; + case 6: + groupNumber = charCode % 6; + break; + default: + //console.log('type 参数值无效,必须为 2、3 或 6'); + return; + } + //console.log("type____________________:", type); + //console.log("分组编号____________________:", groupNumber); + return groupNumber; + } + } + else return 1; + }, + + + //购买行为,获得道具 + getShopProp(propData, compensate) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + const num = propData.freeze; + //console.log("_________道具增加的数量为:", num); + cc.fx.GameConfig.GM_INFO.freezeAmount += propData.freeze; + cc.fx.GameConfig.GM_INFO.hammerAmount += propData.hammer; + cc.fx.GameConfig.GM_INFO.magicAmount += propData.magic_wand; + cc.fx.GameTool.setUserProp(0, num, (data) => { + }) + const data1 = { + change_reason: "shop", + id: 2001, + num: propData.freeze, + compensate: compensate + } + cc.fx.GameTool.shushu_Track("resource_get", data1); + const data2 = { + change_reason: "shop", + id: 2002, + num: propData.hammer, + compensate: compensate + } + cc.fx.GameTool.shushu_Track("resource_get", data2); + const data3 = { + change_reason: "shop", + id: 2003, + num: propData.magic_wand, + compensate: compensate + } + cc.fx.GameTool.shushu_Track("resource_get", data3); + const buyData1 = { + item_id: "freeze_in_game", + item_num: propData.freeze, + item_price: propData.price, + cost_type: "cash" + } + + cc.fx.GameTool.shushu_Track("shop_buy", buyData1); + const buyData2 = { + item_id: "hammer_in_game", + item_num: propData.hammer, + item_price: propData.price, + cost_type: "cash" + } + + cc.fx.GameTool.shushu_Track("shop_buy", buyData2); + const buyData3 = { + item_id: "wand_in_game", + item_num: propData.magic_wand, + item_price: propData.price, + cost_type: "cash" + } + cc.fx.GameTool.shushu_Track("shop_buy", buyData3); + } + }, + + + //购买无限体力 + setUserPowerTime(time) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + let nowTime = Math.floor(Date.now() / 1000); + let powerTime = cc.fx.StorageMessage.getStorage("userPowerTime"); + if (powerTime == "undifend" || powerTime == null || powerTime == "" || powerTime == 0) { + powerTime = Math.floor(Date.now() / 1000) + time; + } else { + if (nowTime >= powerTime) { + powerTime = nowTime + time; + } + else { + powerTime = powerTime + time; + } + } + cc.fx.GameConfig.GM_INFO.userPowerTime = powerTime; + cc.fx.StorageMessage.setStorage("userPowerTime", powerTime); + Utils.setUserPowerTime(powerTime, (data) => { + //console.log("购买无限体力同步:", data); + }) + } + }, + //判断是否有无限体力//返回true有,false没有 + getUserPowerTime() { + if (cc.fx.GameConfig.GM_INFO.userPowerTime > 0) { + let nowTime = Math.floor(Date.now() / 1000); + if (nowTime >= cc.fx.GameConfig.GM_INFO.userPowerTime) { + cc.fx.GameConfig.GM_INFO.userPowerTime = 0; + cc.fx.StorageMessage.setStorage("userPowerTime", 0); + Utils.setUserPowerTime(0, (data) => { + //console.log("购买无限体力同步:", data); + }) + return false; + } else { + return true; + } + } + else { + return false; + } + }, + + //判断月卡过期 + checkExpiration() { + let dateStr = cc.fx.StorageMessage.getStorage("mCardDate"); + //如果过期返回 true ,没过期返回 false + if (dateStr) { + //将字符串转换为时间戳 + let dateTime = new Date(dateStr).getTime(); + //当前时间转换为时间戳 + let currentTime = new Date().getTime(); + // console.log("月卡过期时间", dateTime, "当前时间", currentTime,); + if (dateTime > currentTime) { + cc.fx.GameConfig.GM_INFO.hp_Max = 7; + cc.fx.GameConfig.GM_INFO.doubleCoin = 2; + return true; + } else { + cc.fx.GameConfig.GM_INFO.hp_Max = 5; + cc.fx.GameConfig.GM_INFO.doubleCoin = 1; + return false; + } + + } else { + cc.fx.GameConfig.GM_INFO.hp_Max = 5; + cc.fx.GameConfig.GM_INFO.doubleCoin = 1; + cc.fx.StorageMessage.setStorage("mCardDate", 0); + return false; + + } + }, + + checkStarter_pack() { + let dateStr = cc.fx.StorageMessage.getStorage("starter_pack"); + }, + + //获取月卡有效期距离今天的天数 + getMonthlyCardValidityDays(): Promise<{ days: number, time: number }> { + console.log("________________2"); + return new Promise((resolve, reject) => { + Utils.getMonthlyCard((data) => { + console.log("月卡返回时间:", data); + if (data) { + if (data.code === 1) { + const validityTime = data.data.monthCardTime; // 后端返回的到期时间戳(毫秒) + const today = new Date(); + today.setHours(0, 0, 0, 0); + const todayMidnight = today.getTime(); + const expiryDate = new Date(validityTime); + expiryDate.setHours(0, 0, 0, 0); + const expiryMidnight = expiryDate.getTime(); + const diffMs = expiryMidnight - todayMidnight; + const days = Math.floor(diffMs / 86400000); + const remainingDays = Math.max(0, days); + cc.fx.GameConfig.GM_INFO.monthTime = remainingDays; + let obj = { + days: remainingDays, + time: validityTime, + } + resolve(obj); + + } else { + // resolve(0); // 或 reject(data) 根据需要 + } + } + else { + // resolve(0); // 或 reject(data) 根据需要 + } + }); + }); + }, + + // 设置用户信息 + setUserAvatar(callback: Function) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + let useravatar = cc.fx.GameConfig.GM_INFO.useravatarIcon; + if (useravatar.length < 10) { + useravatar = cc.fx.GameTool.getCharAtPosition(useravatar, 5); + } + let useravaterkuang = cc.fx.GameConfig.GM_INFO.useravaterkuang; + console.log(cc.fx.GameTool.getCharAtPosition(useravaterkuang, 6)); + useravaterkuang = (parseInt(cc.fx.GameTool.getCharAtPosition(useravaterkuang, 6)) - 1) + ""; + let userInfo = { + // 这里填写要存储的用户数据 + username: cc.fx.GameConfig.GM_INFO.username, //用户名称 + useravatar: useravatar, //用户头像 + useravatarIcon: useravaterkuang, //用户头像框 + } + console.log("上传头像昵称", userInfo); + Utils.setUserData(userInfo, (data) => { + }) + } + }, + + getUserAvatar(callBack: Function) { + //@ts-ignore + if (typeof wx === 'undefined') { + // this.showRanks(); // 非微信环境直接显示 + return; + } + console.log('______________点击获取用户信息'); + let user_Info = cc.fx.StorageMessage.getStorage("user_Info"); + if (cc.fx.GameConfig.GM_INFO.wxUserInfo == true) { + console.log("________授权过用户头像昵称"); + if (user_Info != null && user_Info != undefined && user_Info != "") { + cc.fx.GameConfig.GM_INFO.useravatar = user_Info.useravatar; // 用户头像 URL + cc.fx.GameConfig.GM_INFO.username = user_Info.username; // 用户昵称 + console.log("缓存有用户头像昵称,直接用"); + setTimeout(() => { + if (callBack) callBack(false); + }, 200); + } else { + console.log("缓存没有用户头像昵称,重新获取"); + //@ts-ignore + wx.getUserInfo({ + success: (res) => { + const userInfo = res.userInfo; + cc.fx.GameConfig.GM_INFO.useravatar = userInfo.avatarUrl; // 用户头像 URL + cc.fx.GameConfig.GM_INFO.username = userInfo.nickName; // 用户昵称 + const user_Info = { + username: cc.fx.GameConfig.GM_INFO.username, + useravatar: cc.fx.GameConfig.GM_INFO.useravatar, + } + console.log('用户已授权', res.userInfo); + cc.fx.StorageMessage.setStorage('user_Info', user_Info); + cc.fx.GameTool.setUserInfo(false, (data) => { + console.log("设置用户信息成功__________", data); + }); + setTimeout(() => { + if (callBack) callBack(false); + }, 200); + }, + fail: (err) => { + console.error('获取用户信息失败', err); + if (callBack) callBack(false); + } + }); + } + } + else { + console.log("________没有授权过用户头像昵称"); + MiniGameSdk.API.getWechatUserInfoAuth(callBack); + } + + }, + + + getDailyQuestsInfo(callBack: Function) { + Utils.getDailyQuestInfo((data) => { + if (callBack) callBack(data); + }) + }, + + setDailyQuestInfo(callBack: Function) { + Utils.setDailyQuestInfo((data) => { + if (callBack) callBack(data); + }) + }, + + setWinStreak(type) { + if (type == "sucess") { + if (cc.fx.GameConfig.GM_INFO.winStreak < 10) { + cc.fx.GameConfig.GM_INFO.winStreak += 1; + if (cc.fx.GameConfig.GM_INFO.winStreak == 10) { + cc.fx.GameConfig.GM_INFO.winStreakFirst = true; + } + cc.fx.StorageMessage.setStorage("winStreak", cc.fx.GameConfig.GM_INFO.winStreak); + Utils.setWinStreak((data) => { + }) + } + } else if (type == "fail") { + if (cc.fx.GameConfig.GM_INFO.winStreak == 10) { + cc.fx.GameConfig.GM_INFO.winStreak = 0; + cc.fx.StorageMessage.setStorage("winStreak", cc.fx.GameConfig.GM_INFO.winStreak); + Utils.setWinStreak((data) => { + + }) + } + } + }, + + //判断本地缓存关卡等级是否大于服务器存储 + //返回true本地缓存大于服务器存储,false本地缓存小于等于服务器存储 + // compareLevel() { + // if (cc.fx.GameConfig.GM_INFO.level < cc.fx.StorageMessage.getStorage("level")) { + + // } + // } + + // 取出字符串中指定位置的字符 + getCharAtPosition(str: string, position: number): string | null { + if (position >= 0 && position < str.length) { + return str[position]; + } + return null; + }, + + + + +}; +export { GameTool }; \ No newline at end of file diff --git a/assets/Script/module/Tool/GameTool.ts.meta b/assets/Script/module/Tool/GameTool.ts.meta new file mode 100644 index 0000000..1ffcdae --- /dev/null +++ b/assets/Script/module/Tool/GameTool.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "43bfc27a-ff6e-45b3-87c7-504d0f781397", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/monthlyCard.ts b/assets/Script/monthlyCard.ts new file mode 100644 index 0000000..5a461cb --- /dev/null +++ b/assets/Script/monthlyCard.ts @@ -0,0 +1,466 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html + +import JiaZai from "./JiaZai"; +import Utils from "./module/Pay/Utils"; +import NumberToImage from "./NumberToImage"; +import SceneManager from "./SceneManager"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + + @property(cc.Node) + monthCardTime: cc.Node = null; + //月卡按钮切换 + @property(cc.Node) + monthCardBtn: cc.Node = null; + //月卡按钮 + @property(cc.Node) + monthCardBtn2: cc.Node = null; + public juwai = false; + btn_Touch: boolean = false; + + // LIFE-CYCLE CALLBACKS: + private onShowListener: () => void; + private iosPrice: number = 0; + private iosProductId: string = ""; + private iosCount: number = 1; + public home: number = 0; + + onLoad() { + this.btn_Touch = true; + // 检测微信小游戏切到后台 + this.home = 0; + } + + onShow() { + console.log("后台进入前台,monthlcard"); + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + console.log("从后台进入前台订单号:", cc.fx.GameConfig.GM_INFO.iosMonthOrder); + if (cc.fx.GameConfig.GM_INFO.iosMonthOrder != null && cc.fx.GameConfig.GM_INFO.iosMonthOrder != "") { + console.log("有苹果订单号,开始轮训"); + const iosMonthOrder = cc.fx.GameConfig.GM_INFO.iosMonthOrder; + this.openLoad(); + this.btn_Touch = true; + Utils.getIosPayInfo(iosMonthOrder, + (data) => { + console.log("月卡获得轮训结果:", data); + const iosID = data.data?.payment_name || this.iosProductId; + let iosAmount = data.data?.goodsPrice || this.iosPrice; + iosAmount = parseInt(iosAmount); + if (data.code == 1) { + console.log("购买成功"); + // const dataSuccess = { + // outTradeNo: iosMonthOrder, + // pay_amount: iosAmount, + // payment_name: iosID, + // payment_num: this.iosCount, + // type: "ios", + // } + // cc.fx.GameTool.shushu_Track("payment", dataSuccess); + let name = "购买金币道具:" + iosID; + console.log("引力付费透传", iosAmount, iosMonthOrder, name); + MiniGameSdk.API.yinli_Pay(iosAmount, iosMonthOrder, name) + + console.log("_________正式发货"); + MiniGameSdk.API.showToast("充值成功"); + + if (iosID == "month_Card") { + this.setReward(iosID); + } + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + else if (this.node.parent.getComponent("SceneManager")) { + this.node.parent.getComponent("SceneManager").updateCoin(); + } + //console.log("充值成功获得金币"); + } + else if (data.code == 0) { + console.log("用户自己取消充值"); + MiniGameSdk.API.showToast("充值失败"); + this.closeLoad(); + this.btn_Touch = true; + const dataFail = { + outTradeNo: iosMonthOrder, + pay_amount: iosAmount, + payment_name: iosID, + payment_num: this.iosCount, + type: "ios", + fail_reason: "用户取消充值", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + cc.fx.GameConfig.GM_INFO.iosMonthOrder = null; + } + else if (data.code == 2) { + this.closeLoad(); + this.btn_Touch = true; + console.log("轮训超时"); + MiniGameSdk.API.showToast("请检查网络,如充值成功,请重新登录领取", 4); + // MiniGameSdk.API.showToast("订单已关闭"); + const dataFail = { + outTradeNo: iosMonthOrder, + pay_amount: iosAmount, + payment_name: iosID, + payment_num: this.iosCount, + type: "ios", + fail_reason: "用户充值后,轮训结果超时", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.openConfirmBox(); + } + }) + } + } + + } + + start() { + let isExpired = cc.fx.GameTool.checkExpiration(); + if (isExpired == false) { + this.monthCardBtn.active = true; + this.monthCardBtn2.active = false; + } else { + this.monthCardBtn.active = false; + this.monthCardBtn2.active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.monthTime, 35, 20, "month_", this.monthCardTime, true); + + } + } + init() { + let isExpired = cc.fx.GameTool.checkExpiration(); + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + // 定义监听函数 + this.onShowListener = () => { + console.log("微信小游戏切到前台,monthCard"); + this.onShow(); + }; + //@ts-ignore + wx.onShow(this.onShowListener); + } + this.btn_Touch = true; + if (isExpired) { + this.monthCardBtn.active = false; + this.monthCardBtn2.active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.monthTime, 35, 20, "month_", this.monthCardTime, true); + } else { + this.monthCardBtn.active = true; + this.monthCardBtn2.active = false; + } + } + + //购买月卡 + buyMonthCard(id) { + Utils.setMonthlyCard(0, (data) => { + console.log("购买月卡", data.code); + if (data.code == 1) { + this.setReward(id); + // let rewardData = [ + // { type: "coin", count: 6000 }, + // ] + + } + }) + // update (dt) {} + } + + setReward(id) { + cc.fx.GameConfig.GM_INFO.iosMonthOrder = null; + this.closeLoad(); + this.btn_Touch = true; + cc.fx.GameTool.shopBuy(id, false); + cc.fx.GameConfig.GM_INFO.hp_Max = 7; + cc.fx.GameConfig.GM_INFO.hp = 7; + cc.fx.GameConfig.GM_INFO.doubleCoin = 2; + this.home = 1; + cc.fx.GameTool.getMonthlyCardValidityDays().then(days => { + cc.fx.GameConfig.GM_INFO.monthTime = days.days; + //本地储存当前服务器时间 + let dateStr = new Date(days.time); + cc.fx.StorageMessage.setStorage("mCardDate", dateStr); + NumberToImage.numberToImageNodes(days.days, 35, 20, "month_", this.monthCardTime, true); + + }); + // cc.fx.GameTool.changeCoin(6000); + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + console.log("获取到JiaZai组件", jiazaiComp); + setTimeout(() => { + jiazaiComp.setHealthInfo(false); + jiazaiComp.startTimeCutDown(); + jiazaiComp.updateCoin(); + + }, 300); + } else { + console.log("无法获取JiaZai组件"); + } + + this.monthCardBtn.active = false; + this.monthCardBtn2.active = true; + this.monthCardTime.active = true; + cc.fx.GameTool.setUserHealth(0, (data) => { + cc.fx.GameTool.getHealth(null); + }) + let shop = cc.find("Canvas/shop"); + if (shop) { + let shopComp = shop.getComponent("shop"); + if (shopComp) { + shopComp.openShop(); + } + } + + } + + closeMonthCard() { + // this.init(); + //获取商城界面更新图标方法 + let shop = cc.find("Canvas/shop"); + if (shop) { + let shopComp = shop.getComponent("shop"); + if (shopComp) { + shopComp.openShop(); + } + } + + // 移除 wx.onShow 监听器 + if (cc.sys.platform === cc.sys.WECHAT_GAME && this.onShowListener) { + console.log("月卡关闭监听"); + //@ts-ignore + wx.offShow(this.onShowListener); + + } + //jiazai + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + let isExpired = cc.fx.GameTool.checkExpiration(); + if (jiazaiComp && this.home == 1 && isExpired) { + this.home = 0; + jiazaiComp.rewarded(); + console.log("123iiiii222") + } + if (jiazaiComp) { + console.log("22222222") + jiazaiComp.onGames(); + + } + + this.node.active = false; + } + + buyProduct(event, customData) { + if (!this.btn_Touch) { + return; + } + this.btn_Touch = false; + const productId = customData; + let id = "10011"; + let price = 100; + let count = 1; + id = productId; + switch (productId) { + case "month_Card": + price = 3000; + break; + } + console.log("获得商品id:", id, count, price); + // 判断设备系统 + let systemType = "Android"; + try { + //@ts-ignore + const systemInfo = wx.getSystemInfoSync(); + if (systemInfo.platform === 'ios') { + systemType = "ios"; + } + } catch (e) { + console.error('获取系统信息失败', e); + } + + if (systemType == "ios") { + // MiniGameSdk.API.showToast("IOS系统暂不支持支付"); + // this.btn_Touch = true; + this.openLoad(); + this.btn_Touch = true; + let iosPayInfo = { + price: price, + payment_name: productId, + payment_count: 1, + } + this.iosPrice = price; + this.iosProductId = productId; + this.iosCount = 1; + Utils.GoKEFu(iosPayInfo, (res) => { + if (res == "success") { + console.log("客服回话成功"); + } + else { + console.log("客服回话失败"); + this.closeLoad(); + } + }); + } + else { + // MiniGameSdk.API.showToast("充值成功"); + // cc.fx.GameTool.shopBuy(productId, false); + // setTimeout(() => { + // if (productId == "unlimited_health_bundle_1" || + // productId == "unlimited_health_bundle_2" || + // productId == "unlimited_health_bundle_3" + // ) { + // console.log("触发————————updatePower"); + // this.updatePower(); + // } + // }, 500); + + this.openLoad(); + this.btn_Touch = true; + //console.log("7.14_____________________", "调用充值接口"); + Utils.buyProp(id, count, price, systemType, productId, (res) => { + //console.log("获得充值结果", res); + if (res == null) { + MiniGameSdk.API.showToast("充值失败"); + this.btn_Touch = true; + const dataFail = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "网络异常,没有拉起支付", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.closeLoad(); + return; + } + else if (res.err) { + MiniGameSdk.API.showToast("充值失败"); + //console.log(res); + this.btn_Touch = true; + let name = "支付拉起失败"; + if (res.errCode == -2) { + name = "用户取消充值"; + } + const dataFail = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: name, + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.closeLoad(); + return; + } + else { + Utils.getPayInfo((data) => { + //console.log("7.14_______________充值成功,准备轮训"); + //console.log("获得轮训结果:", data); + this.closeLoad(); + if (data.data.pay_state == 1) { + this.btn_Touch = true; + MiniGameSdk.API.showToast("取消充值"); + const dataFail2 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "用户取消支付", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail2); + } + else if (data.data.pay_state == 2) { + this.btn_Touch = true; + // const dataSuccess = { + // outTradeNo: Utils.outTradeNo, + // pay_amount: price, + // payment_name: productId, + // payment_num: 1, + // type: systemType, + // } + // cc.fx.GameTool.shushu_Track("payment", dataSuccess); + let name = "购买金币道具:" + productId; + console.log("引力付费透传", price, Utils.outTradeNo, name); + MiniGameSdk.API.yinli_Pay(price, Utils.outTradeNo, name) + console.log("7.14_______________充值成功,轮训成功,准备发货"); + Utils.setPayInfo( + (res) => { + console.log("设置轮训结果:", res); + if (res.code === 1) { + console.log("7.14_________正式发货"); + MiniGameSdk.API.showToast("充值成功"); + + if (productId == "month_Card") { + this.buyMonthCard(productId); + } + //console.log("充值成功获得金币"); + } + else { + MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放"); + const dataFail4 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "成功付款,但是发货时请求服务器失败,充值成功未发货", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail4); + } + + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + else if (this.node.parent.getComponent("SceneManager")) { + this.node.parent.getComponent("SceneManager").updateCoin(); + } + }, Utils.outTradeNo) + } + else { + + const dataFail3 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "拉起支付后,付款时网络异常付款失败", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail3); + this.btn_Touch = true; + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + else if (this.node.parent.getComponent("SceneManager")) { + this.node.parent.getComponent("SceneManager").updateCoin(); + } + } + }) + } + }); + } + } + openLoad() { + this.node.getChildByName("Loading").active = true; + this.node.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + } + + openConfirmBox() { + this.closeLoad(); + this.node.getChildByName("ConfirmBox").active = true; + } + + closeLoad() { + this.node.getChildByName("Loading").active = false; + } + + onDestroy() { + + } +} diff --git a/assets/Script/monthlyCard.ts.meta b/assets/Script/monthlyCard.ts.meta new file mode 100644 index 0000000..1810809 --- /dev/null +++ b/assets/Script/monthlyCard.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "191eda8d-68a7-4fb4-9880-e3f712b01d4d", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/peizhi.ts b/assets/Script/peizhi.ts new file mode 100644 index 0000000..83407a6 --- /dev/null +++ b/assets/Script/peizhi.ts @@ -0,0 +1,82 @@ + + +const {ccclass, property, requireComponent} = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + + + @property(cc.Node) + node1: cc.Node = null; + + @property(cc.Node) + node2: cc.Node = null; + + @property(cc.Node) + node3: cc.Node = null; + + @property(false) + localTest: boolean = false; + + @property("") + clientTestVersion: string = "1.0.0"; + + @property(cc.Label) + testVersion: cc.Label = null; + + start () { + + // cc.fx.AudioManager.Instance.init(); + // this.testVersion.string = this.clientTestVersion; + + // cc.director.loadScene("GameScene"); + + // cc.director.preloadScene("GameScene", ()=>{ + // // debugger; + + // }) + } + + //判断来源 + containsTrain(str) { + + return /from=train/i.test(str); + } + + //开始游戏,跳转至引导页面 + startGame(){ + cc.director.loadScene("GameScene"); + // cc.director.loadScene("GuideScene"); + } + //备用,用来测试跳转 指定关卡 + clickBtn(event,data){ + cc.fx.GameConfig.GM_INFO.custom = parseInt(data); + cc.director.loadScene("GameScene"); + } + //打开排行榜 + openRank(){ + cc.director.loadScene("RankScene"); + } + + + protected update(dt: number): void { + } + +// 3月17日 - 3月21日 工作完成内容 + +// 1:游戏框架搭建 +// 2:制作18个基础方块预制体 (方块可编辑颜色与道具和状态) +// 3:完成地图的搭建,可配置8*8以内,任意组合,包括可缺口和障碍物配置 +// 4:完成地图墙面建立,根据 ↑3上面构建的地图自动生成墙体。 +// 5:做完方块的基础移动,跟随手指,遇到方块或者墙壁或者障碍物阻碍移动。 +// 6:方块的自动落点做完11个基础方块的(未做完还差11个) + +// 3月24日 - 3月28日 预计完成目标 + +// 1:完成全部方块的落点。 +// 2:完成门的搭建,门可选颜色,可选开关或者星星等特殊状态 +// 3:完成方块通过门的游戏逻辑,使游戏可以最基础运行玩起来 +// 4:出5关版本,配合小白备案审核。 +// 5:根据方块,地图,以及道具,制作地图编辑器 (方块和地图制作的时候都已经考虑到编辑器的需求了) +// 优先制作,后续开发拓展玩法功能时,小白可同步进行制作关卡。 +} diff --git a/assets/Script/peizhi.ts.meta b/assets/Script/peizhi.ts.meta new file mode 100644 index 0000000..9191325 --- /dev/null +++ b/assets/Script/peizhi.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "7d8008d1-2a44-467e-a492-ddf8527addba", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/position.ts b/assets/Script/position.ts new file mode 100644 index 0000000..34a53db --- /dev/null +++ b/assets/Script/position.ts @@ -0,0 +1 @@ +var _PROP_INFO = [{"pos1": {"x": -60,"y": 60,"z": 0},"pos2": {"x": -16.442,"y": 30,"z": 0},"pos3": {"x": -34.362,"y": 13.246,"z": 0},"pos4": {"x": -17,"y": 12,"z": 0}},{"pos1": {"x": -126,"y": 63,"z": 0},"pos2": {"x": -25.792,"y": 34.675,"z": 0},"pos3": {"x": -94.792,"y": 21.675,"z": 0},"pos4": {"x": -20,"y": 13,"z": 0}},{"pos1": {"x": -60,"y": 125,"z": 0},"pos2": {"x": -12.792,"y": 92.675,"z": 0},"pos3": {"x": -27.792,"y": 23.675,"z": 0},"pos4": {"x": -14,"y": 24,"z": 0}},{"pos1": {"x": -185,"y": 63,"z": 0},"pos2": {"x": -34.792,"y": 37.675,"z": 0},"pos3": {"x": -154.792,"y": 23.675,"z": 0},"pos4": {"x": -22,"y": 16,"z": 0}},{"pos1": {"x": -57,"y": 178,"z": 0},"pos2": {"x": -17.792,"y": 166.675,"z": 0},"pos3": {"x": -31.792,"y": 33.675,"z": 0},"pos4": {"x": -14,"y": 37,"z": 0}},{"pos1": {"x": -123,"y": 127,"z": 0},"pos2": {"x": -25.792,"y": 99.675,"z": 0},"pos3": {"x": -97.792,"y": 27.675,"z": 0},"pos4": {"x": -27,"y": 19,"z": 0}},{"pos1": {"x": -62,"y": 181,"z": 0},"pos2": {"x": -24.792,"y": 275.675,"z": 0},"pos3": {"x": -31.792,"y": 35.675,"z": 0},"pos4": {"x": -7,"y": 39,"z": 0}},{"pos1": {"x": -181,"y": 180,"z": 0},"pos2": {"x": -31.792,"y": 163.675,"z": 0},"pos3": {"x": -33.792,"y": 34.675,"z": 0},"pos4": {"x": -18,"y": 25,"z": 0}},{"pos1": {"x": -182,"y": 182,"z": 0},"pos2": {"x": -25.792,"y": 38.675,"z": 0},"pos3": {"x": -153.792,"y": 34.675,"z": 0},"pos4": {"x": -23,"y": 14,"z": 0}},{"pos1": {"x": -186,"y": 61,"z": 0},"pos2": {"x": -37.792,"y": 37.675,"z": 0},"pos3": {"x": -36.792,"y": 26.675,"z": 0},"pos4": {"x": -24,"y": 17,"z": 0}},{"pos1": {"x": -62,"y": 177,"z": 0},"pos2": {"x": 93.208,"y": 276.675,"z": 0},"pos3": {"x": -33.792,"y": 34.675,"z": 0},"pos4": {"x": 3,"y": 31,"z": 0}},{"pos1": {"x": 58,"y": 179,"z": 0},"pos2": {"x": 205.225,"y": 154.034,"z": 0},"pos3": {"x": -29.642,"y": 25.691,"z": 0},"pos4": {"x": 7.218,"y": 29.765,"z": 0}},{"pos1": {"x": -57,"y": 182,"z": 0},"pos2": {"x": -25.792,"y": 37.675,"z": 0},"pos3": {"x": -35.792,"y": 33.675,"z": 0},"pos4": {"x": -14,"y": 12,"z": 0}},{"pos1": {"x": -180,"y": 62,"z": 0},"pos2": {"x": -35.792,"y": 36.675,"z": 0},"pos3": {"x": -271.792,"y": 24.675,"z": 0},"pos4": {"x": -17,"y": 20,"z": 0}},{"pos1": {"x": -62,"y": 178,"z": 0},"pos2": {"x": 87.208,"y": 164.675,"z": 0},"pos3": {"x": -31.792,"y": 35.675,"z": 0},"pos4": {"x": -6,"y": 24,"z": 0}},{"pos1": {"x": -176,"y": 60,"z": 0},"pos2": {"x": -33.792,"y": 38.675,"z": 0},"pos3": {"x": -154.792,"y": 29.675,"z": 0},"pos4": {"x": -29,"y": 16,"z": 0}},{"pos1": {"x": -60,"y": 181,"z": 0},"pos2": {"x": 95.208,"y": 155.675,"z": 0},"pos3": {"x": -30.792,"y": 36.675,"z": 0},"pos4": {"x": -12,"y": 32,"z": 0}},{"pos1": {"x": -63,"y": 178,"z": 0},"pos2": {"x": -21.792,"y": 156.675,"z": 0},"pos3": {"x": -31.792,"y": 37.675,"z": 0},"pos4": {"x": -12,"y": 32,"z": 0}},{"pos1": {"x": -60,"y": 183,"z": 0},"pos2": {"x": 88.208,"y": 162.675,"z": 0},"pos3": {"x": -29.792,"y": 41.675,"z": 0},"pos4": {"x": -12,"y": 18,"z": 0}},{"pos1": {"x": -64,"y": 58,"z": 0},"pos2": {"x": -26.792,"y": 32.675,"z": 0},"pos3": {"x": -34.792,"y": 23.675,"z": 0},"pos4": {"x": -12,"y": 18,"z": 0}},{"pos1": {"x": -184,"y": 62,"z": 0},"pos2": {"x": -25.792,"y": 34.675,"z": 0},"pos3": {"x": -155.792,"y": 25.675,"z": 0},"pos4": {"x": -18,"y": 26,"z": 0}},{"pos1": {"x": -57,"y": 190,"z": 0},"pos2": {"x": 95.208,"y": 158.675,"z": 0},"pos3": {"x": -33.792,"y": 29.675,"z": 0},"pos4": {"x": -18,"y": 26,"z": 0}},{"pos1": {"x": -71,"y": 184,"z": 0},"pos2": {"x": -25.792,"y": 156.675,"z": 0},"pos3": {"x": -35.792,"y": 27.675,"z": 0},"pos4": {"x": -25,"y": 40,"z": 0}}]; \ No newline at end of file diff --git a/assets/Script/position.ts.meta b/assets/Script/position.ts.meta new file mode 100644 index 0000000..90341ad --- /dev/null +++ b/assets/Script/position.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "e0e349ff-f854-45e4-9764-50b9babdd4f4", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop.meta b/assets/Script/prop.meta new file mode 100644 index 0000000..72dbc56 --- /dev/null +++ b/assets/Script/prop.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "7929eb2c-aa5c-4d48-bceb-0312f46aede8", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop/Adhesive.ts b/assets/Script/prop/Adhesive.ts new file mode 100644 index 0000000..250e73f --- /dev/null +++ b/assets/Script/prop/Adhesive.ts @@ -0,0 +1,54 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "../Map"; + +const { ccclass, property } = cc._decorator; + + + +@ccclass +export default class Adhesive extends cc.Component { + static _instance: any; + time: number = 60; + pos: any = { x: 0, y: 0 }; + target: any; + + onLoad() { + this.pos.x = this.pos.y = 0; + this.target = null; + } + + start() { + } + + init(node) { + this.pos.x = node.x - this.node.x; + this.pos.y = node.y - this.node.y; + this.target = node; + } + + remove() { + this.target = null; + for (let j = 0; j < this.node.children.length; j++) { + if (this.node.children[j].active == true) { + this.node.children[j].getComponent(sp.Skeleton).setAnimation(0, "animation", false); + } + } + setTimeout(() => { + this.node.active = false; + }, 2000); + } + + + update(dt) { + if (this.target != null) { + this.node.x = this.target.x - this.pos.x; + this.node.y = this.target.y - this.pos.y; + } + } +} diff --git a/assets/Script/prop/Adhesive.ts.meta b/assets/Script/prop/Adhesive.ts.meta new file mode 100644 index 0000000..9f89bd0 --- /dev/null +++ b/assets/Script/prop/Adhesive.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "5fc5bcf5-695e-4f28-8049-421f7d8e99b6", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop/Boom.ts b/assets/Script/prop/Boom.ts new file mode 100644 index 0000000..0b1c15e --- /dev/null +++ b/assets/Script/prop/Boom.ts @@ -0,0 +1,94 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "../Map"; +import NumberToImage from "../NumberToImage"; + +const { ccclass, property } = cc._decorator; + + + +@ccclass +export default class Boom extends cc.Component { + static _instance: any; + time: number = 60; + over: boolean = false; + + // mapInfo: number[][] = []; + + onLoad() { + this.over = false; + } + + start() { + this.over = false; + } + + init(time) { + if (time) this.time = time; + this.node.getChildByName("time").active = true; + NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("time"), false); + // this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + } + + startBoom() { + if (MapConroler._instance.iceTrue() == true) return; + if (MapConroler._instance.pause == true) return; + this.schedule(this.updateTime, 1); + } + + destroyBoom(type) { + if (this.over) return; + this.over = true; + this.unschedule(this.updateTime); + if (this.node.parent) this.node.parent.getComponent("Block").resetFreeze(); + this.node.active = false; + this.node.destroy(); + } + + stopBoom() { + this.unschedule(this.updateTime); + } + + + + updateTime() { + if (MapConroler._instance.iceTrue() == true) return; + if (MapConroler._instance.pause == true) return; + this.time--; + NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("time"), false); + if (this.time <= 0) { + // 创建模拟触摸事件对象 + const mockTouchEvent = { + getLocation: () => { + // 获取父节点的位置作为触摸落点 + const parentPos = this.node.parent.getPosition(); + return parentPos; + } + }; + + // 触发父节点 Block 的 touchEnd 事件 + this.node.parent.getComponent("Block").touchEnd(mockTouchEvent); + this.unschedule(this.updateTime); + this.node.getChildByName("time").active = false; + MapConroler._instance.failLevel("boom"); + this.node.getChildByName("zhandan").active = true; + this.node.getChildByName("bg").active = false; + const skeleton = this.node.getChildByName("zhandan").getComponent(sp.Skeleton); + skeleton.setAnimation(1, "eff", false); + // 监听动画完成事件,销毁自身爆炸节点 + skeleton.setCompleteListener(() => { + // 动画播放完成后销毁节点 + this.destroyBoom(true); + }); + + // this.node.destroy(); + } + } + + // update (dt) {} +} diff --git a/assets/Script/prop/Boom.ts.meta b/assets/Script/prop/Boom.ts.meta new file mode 100644 index 0000000..93e8062 --- /dev/null +++ b/assets/Script/prop/Boom.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "3c749884-1309-4030-a3f2-8c6124c14da5", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop/Floor.ts b/assets/Script/prop/Floor.ts new file mode 100644 index 0000000..aedc75c --- /dev/null +++ b/assets/Script/prop/Floor.ts @@ -0,0 +1,80 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "../Map"; +import NumberToImage from "../NumberToImage"; + +const { ccclass, property } = cc._decorator; + + + +@ccclass +export default class Floor extends cc.Component { + static _instance: any; + time: number = 60; + + @property(cc.Material) + floor: cc.Material = null; + + @property(cc.Prefab) + ice: cc.Prefab = null; + + // mapInfo: number[][] = []; + + onLoad() { + + } + + start() { + + } + + init(time, type) { + if (time) this.time = time; + this.node.getChildByName("time").active = true; + NumberToImage.numberToImageNodes(this.time, 30, 25, "level_", this.node.getChildByName("time"), false); + // this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + + } + + reduce(number) { + // debugger; + this.time -= number; + if (this.time <= 0) this.time = 0 + NumberToImage.numberToImageNodes(this.time, 30, 25, "level_", this.node.getChildByName("time"), false); + // this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + if (this.time <= 0) { + this.node.getChildByName("bingkuai").active = true; + const skeleton = this.node.getChildByName("bingkuai").getComponent(sp.Skeleton); + skeleton.setAnimation(1, "bingkuai", false); + this.node.getChildByName("icon").active = true; + this.node.getChildByName("time").active = false; + cc.tween(this.node.getChildByName("icon")) + .to(0.5, { opacity: 0 }) + .start(); + + // this.node.getChildByName("icon").getComponent(cc.Sprite).setMaterial(0,this.Floor); + // this.node.children.forEach(element => { + // element.destroy(); + // }); + setTimeout(() => { + if (this.node.parent) this.node.parent.getComponent("Block").resetFloor(); + }, 300); + + setTimeout(() => { + if (this.node) { + this.node.destroy(); + this.node.removeFromParent(); + } + + }, 600); + } + } + + + // update (dt) {} +} diff --git a/assets/Script/prop/Floor.ts.meta b/assets/Script/prop/Floor.ts.meta new file mode 100644 index 0000000..cdea839 --- /dev/null +++ b/assets/Script/prop/Floor.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "880725ef-44c2-4e28-ab93-81a5e2ea42a5", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop/Freeze.ts b/assets/Script/prop/Freeze.ts new file mode 100644 index 0000000..952ae03 --- /dev/null +++ b/assets/Script/prop/Freeze.ts @@ -0,0 +1,76 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "../Map"; +import NumberToImage from "../NumberToImage"; + +const { ccclass, property } = cc._decorator; + + + +@ccclass +export default class Freeze extends cc.Component { + static _instance: any; + time: number = 60; + + @property(cc.Material) + freeze: cc.Material = null; + + @property(cc.Prefab) + ice: cc.Prefab = null; + + // mapInfo: number[][] = []; + + onLoad() { + + } + + start() { + + } + + init(time, type) { + if (time) this.time = time; + this.node.getChildByName("time").active = true; + NumberToImage.numberToImageNodes(this.time, 40, 25, "ice_", this.node.getChildByName("time"), false); + // this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + + } + + reduce(number) { + this.time -= number; + if (this.time <= 0) this.time = 0 + NumberToImage.numberToImageNodes(this.time, 40, 25, "ice_", this.node.getChildByName("time"), false); + // this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + if (this.time <= 0) { + this.node.getChildByName("bingkuai").active = true; + const skeleton = this.node.getChildByName("bingkuai").getComponent(sp.Skeleton); + skeleton.setAnimation(1, "bingkuai", false); + this.node.getChildByName("icon").active = true; + this.node.getChildByName("time").active = false; + cc.tween(this.node.getChildByName("icon")) + .to(0.5, { opacity: 0 }) + .start(); + + // this.node.getChildByName("icon").getComponent(cc.Sprite).setMaterial(0,this.freeze); + // this.node.children.forEach(element => { + // element.destroy(); + // }); + setTimeout(() => { + if (this.node) { + if (this.node.parent) this.node.parent.getComponent("Block").resetFreeze(); + this.node.destroy(); + this.node.removeFromParent(); + } + + }, 500); + } + } + + + // update (dt) {} +} diff --git a/assets/Script/prop/Freeze.ts.meta b/assets/Script/prop/Freeze.ts.meta new file mode 100644 index 0000000..56848cf --- /dev/null +++ b/assets/Script/prop/Freeze.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "ad8cb6f3-0a88-4247-9ba2-7ecb1d4537fe", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop/Key.ts b/assets/Script/prop/Key.ts new file mode 100644 index 0000000..8cdbc64 --- /dev/null +++ b/assets/Script/prop/Key.ts @@ -0,0 +1,48 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "../Map"; + +const {ccclass, property} = cc._decorator; + + + +@ccclass +export default class Key extends cc.Component { + static _instance: any; + time: number = 60; + + // mapInfo: number[][] = []; + + onLoad () { + + } + + start () { + } + + init(time){ + if(time) this.time = time; + this.node.getChildByName("time").active = true; + this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + this.schedule(this.updateTime, 1); + } + + + updateTime(){ + this.time --; + this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + if(this.time <= 0){ + this.unschedule(this.updateTime); + this.node.destroy(); + MapConroler._instance.failLevel(); + // this.node.destroy(); + } + } + + // update (dt) {} +} diff --git a/assets/Script/prop/Key.ts.meta b/assets/Script/prop/Key.ts.meta new file mode 100644 index 0000000..4420dd6 --- /dev/null +++ b/assets/Script/prop/Key.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "92465aa7-5132-43c3-9493-ab5b7ba1e968", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop/Lock.ts b/assets/Script/prop/Lock.ts new file mode 100644 index 0000000..35a821e --- /dev/null +++ b/assets/Script/prop/Lock.ts @@ -0,0 +1,47 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "../Map"; +import NumberToImage from "../NumberToImage"; + +const { ccclass, property } = cc._decorator; + + + +@ccclass +export default class Lock extends cc.Component { + static _instance: any; + time: number = 0; + + // mapInfo: number[][] = []; + + onLoad() { + + } + + start() { + } + + init(time) { + if (time) this.time = time; + this.node.getChildByName("time").active = true; + NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("time"), false); + + } + + reduce() { + this.time -= 1; + NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("time"), false); + if (this.time <= 0) { + if (this.node.parent) this.node.parent.getComponent("Block").type = 0; + this.node.destroy(); + this.node.removeFromParent(); + } + } + + // update (dt) {} +} diff --git a/assets/Script/prop/Lock.ts.meta b/assets/Script/prop/Lock.ts.meta new file mode 100644 index 0000000..29c6ded --- /dev/null +++ b/assets/Script/prop/Lock.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "41cb8ba0-2d20-47ff-968d-867b09e655fb", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/prop/Star.ts b/assets/Script/prop/Star.ts new file mode 100644 index 0000000..04140ad --- /dev/null +++ b/assets/Script/prop/Star.ts @@ -0,0 +1,50 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import MapConroler from "../Map"; + +const {ccclass, property} = cc._decorator; + + + +@ccclass +export default class Star extends cc.Component { + static _instance: any; + time: number = 60; + + // mapInfo: number[][] = []; + @property(cc.SpriteAtlas) + star_SpriteFrame: cc.SpriteAtlas = null; + + onLoad () { + + } + + start () { + } + + init(time){ + if(time) this.time = time; + this.node.getChildByName("time").active = true; + this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + this.schedule(this.updateTime, 1); + } + + + updateTime(){ + this.time --; + this.node.getChildByName("time").getComponent(cc.Label).string = this.time.toString(); + if(this.time <= 0){ + this.unschedule(this.updateTime); + this.node.destroy(); + MapConroler._instance.failLevel(); + // this.node.destroy(); + } + } + + // update (dt) {} +} diff --git a/assets/Script/prop/Star.ts.meta b/assets/Script/prop/Star.ts.meta new file mode 100644 index 0000000..0fe791b --- /dev/null +++ b/assets/Script/prop/Star.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "d773d6d6-5bab-40cf-a17e-6742f7217531", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/ranking.ts b/assets/Script/ranking.ts new file mode 100644 index 0000000..1844201 --- /dev/null +++ b/assets/Script/ranking.ts @@ -0,0 +1,326 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html + +import Utils from "./module/Pay/Utils"; +import NumberToImage from "./NumberToImage"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class ranking extends cc.Component { + @property(cc.SpriteAtlas) + ui: cc.SpriteAtlas = null; + @property(cc.Node) + subContextView: cc.Node = null; + @property(cc.Node) + closeButton: cc.Node = null; + @property(cc.Node) + btnRanks: cc.Node = null; + @property(cc.Node) + selfNode: cc.Node = null; + @property(cc.SpriteFrame) + defaultsprite: cc.SpriteFrame = null; + private isShow: boolean = true; + wordRank: any[]; + selfInfo: any; + rankNumber: number = 0; + _touchCancle: boolean = false; + // LIFE-CYCLE CALLBACKS: + onLoad() { + this.wordRank = []; + this.selfInfo = null; + this.rankNumber = 0; + this._touchCancle = false; + } + start() { + } + + init() { + this.openLoad(); + this.btnRanks.active = true; + let user_Info = cc.fx.StorageMessage.getStorage("user_Info"); + if (user_Info != null && user_Info != undefined && user_Info != "") { + cc.fx.GameConfig.GM_INFO.username = user_Info.username; + cc.fx.GameConfig.GM_INFO.useravatar = user_Info.useravatar; + setTimeout(() => { + if (!this.node.getChildByName("friend").active) { + this.onRanksBtnClicked(); + this.node.getChildByName("friend").active = false; + this.node.getChildByName("word").active = true; + this.node.getChildByName("word_rank").active = true; + this.closeFriend(); + } + else { + + this._touchCancle = true; + this.openFriend(); + this.closeWord(); + } + }, 0); + } + else { + this.onRanksBtnClicked(); + } + // this.openWord(); + } + + showRanks() { + if (typeof wx === 'undefined') { + return; + } + this.closeLoad(); + // 设置容器可见 + this.node.getChildByName("rank").active = true; + this.subContextView.active = true; + console.log("展示排行榜"); + // 设置随机数(把这个当做玩家每局结算时的分数) + + this.subContextView.getComponent(cc.SubContextView).updateSubContextViewport(); + setTimeout(() => { + console.log('显示排行榜'); + //@ts-ignore + wx.getOpenDataContext().postMessage({ + message: cc.fx.GameConfig.GM_INFO.openid + }); + //@ts-ignore + wx.getOpenDataContext().postMessage({ + message: parseInt(cc.fx.GameConfig.GM_INFO.level) + }); + this.subContextView.getComponent(cc.SubContextView).updateSubContextViewport(); + }, 200); + }; + + requestFriendInfo() { + + } + + + onRanksBtnClicked() { + if (typeof wx === 'undefined') { + this.showRanks(); // 非微信环境直接显示 + return; + } + cc.fx.GameTool.getUserAvatar(() => { + this.showWord(true); // ✅ 授权成功,显示排行榜 + this.isShow = false; + }) + + } + protected update(dt: number): void { + // if (this.isShow) { + // this.onRanksBtnClicked(); + // } + } + + closeRanks() { + // console.log('关闭排行榜'); + this.subContextView.getComponent(cc.SubContextView).updateSubContextViewport(); + this.closeButton.active = false; + // 设置容器不可见,即关闭排行榜,并让开放域清空排名信息 + this.node.getChildByName("rank").active = false; + this.subContextView.active = false; + //@ts-ignore + wx.getOpenDataContext().postMessage({ + message: 'close' + }); + } + + closeFriend() { + // console.log('关闭好有排行榜'); + this.subContextView.getComponent(cc.SubContextView).updateSubContextViewport(); + //@ts-ignore + wx.getOpenDataContext().postMessage({ + message: 'close' + }); + // 设置容器不可见,即关闭排行榜,并让开放域清空排名信息 + this.node.getChildByName("rank").active = false; + this.subContextView.active = false; + + } + + closeWord() { + // console.log('关闭世界排行榜'); + this.node.getChildByName("word_rank").active = false; + } + + openFriend() { + if (!this._touchCancle) { + return; + } + console.log("进入好友排行榜"); + if (cc.fx.GameConfig.GM_INFO.wxFriend == true) { + console.log("已经授权过好友信息"); + this.showRanks(); + } + else { + console.log("未授权过好友信息"); + MiniGameSdk.API.getWechatFriend((data) => { + console.log("获取好友信息成功?", data); + if (data == true) + this.showRanks(); + }) + } + this.node.getChildByName("friend").active = true; + this.node.getChildByName("word").active = false; + this.closeWord(); + } + + openWord() { + if (!this._touchCancle) { + return; + } + this.node.getChildByName("friend").active = false; + this.node.getChildByName("word").active = true; + this.node.getChildByName("word_rank").active = true; + this.closeFriend(); + this.showWord(false); + } + + showWord(type) { + // console.log("__________进入世界排行榜了"); + if (type) { + this.wordRank = []; + + Utils.getRank((data) => { + this.closeLoad(); + if (data.code == 1) { + // console.log("获取排行榜数据", data.data.rank); + this.wordRank = data.data.rank; + this.rankNumber = data.data.index; + for (let i = 0; i < this.wordRank.length; i++) { + this.wordRank[i].rank = i + 1; + } + this.node.getChildByName("word_rank").active = true; + this.setSelfInfo(); + this.node.getChildByName("word_rank").getComponent("RankManager").init(this.wordRank); + } + else { + MiniGameSdk.API.showToast('网络异常,获取排行榜数据失败'); + this.btnRanks.active = false; + } + }) + } + else { + // console.log("_______________", this.wordRank.length); + } + + } + + openLoad() { + this.node.parent.getChildByName("Loading").active = true; + this.node.parent.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.parent.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + } + + closeLoad() { + this.node.parent.getChildByName("Loading").active = false; + this._touchCancle = true; + } + + setSelfInfo() { + this.selfNode.opacity = 0; + this.selfInfo = null; + for (let i = 0; i < this.wordRank.length; i++) { + if (this.wordRank[i]._id == cc.fx.GameConfig.GM_INFO.uid) { + this.selfInfo = this.wordRank[i]; + if (this.selfInfo.useravatar == "0" || this.selfInfo.useravatar == "1" || this.selfInfo.useravatar == "2" + || this.selfInfo.useravatar == "3") { + this.selfInfo.useravatar = "icon_" + this.selfInfo.useravatar; + } + this.selfInfo.useravatarIcon = "kuang_" + (parseInt(this.selfInfo.useravatarIcon) + 1); + console.log("我自己的信息", this.selfInfo); + + } + } + if (this.selfInfo == null) { + if (this.rankNumber == -1 || this.rankNumber == 0) { + this.rankNumber = 9999; + } + this.selfInfo = { + useravatarIcon: cc.fx.GameConfig.GM_INFO.useravaterkuang, + useravatar: cc.fx.GameConfig.GM_INFO.useravatarIcon, + username: cc.fx.GameConfig.GM_INFO.username, + levelAmount: cc.fx.GameConfig.GM_INFO.level, + rank: this.rankNumber + } + this.selfInfo.useravatar = cc.fx.GameConfig.GM_INFO.useravatarIcon; + this.selfInfo.useravatarIcon = cc.fx.GameConfig.GM_INFO.useravaterkuang; + } + + let useravatarIcon = this.selfInfo.useravatarIcon; + console.log("自己的头像框", useravatarIcon); + this.selfNode.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(useravatarIcon); + this.selfInfo.username = cc.fx.GameTool.subName(this.selfInfo.username, 7); + let name = this.selfInfo.username; + if (name == "user") name = "匿名玩家"; + this.selfNode.getChildByName("nameLab").getComponent(cc.Label).string = name + ""; + + NumberToImage.numberToImageNodes3((this.selfInfo.rank), 43, 15, "rank_", this.selfNode.getChildByName("rankLab"), true); + NumberToImage.numberToImageNodes3(this.selfInfo.levelAmount, 43, 15, "level_", this.selfNode.getChildByName("totalLab"), true); + if (this.selfInfo.rank == 9999) { + this.selfNode.getChildByName("rankLab").scaleX = 0.75; + this.selfNode.getChildByName("rankLab").scaleY = 0.75; + this.selfNode.getChildByName("add").active = true; + } + else this.selfNode.getChildByName("add").active = false; + // this.node.getChildByName("timeLab").getComponent(cc.Label).string = timeTemp + ""; + this.selfNode.getChildByName("rank").getChildByName("one").active = false; + this.selfNode.getChildByName("rank").getChildByName("two").active = false; + this.selfNode.getChildByName("rank").getChildByName("three").active = false; + if (this.selfInfo.rank == 1) { + this.selfNode.getChildByName("rank").getChildByName("one").active = true; + this.selfNode.getChildByName("rankLab").active = false; + } + else if (this.selfInfo.rank == 2) { + this.selfNode.getChildByName("rank").getChildByName("two").active = true; + this.selfNode.getChildByName("rankLab").active = false; + } + else if (this.selfInfo.rank == 3) { + this.selfNode.getChildByName("rank").getChildByName("three").active = true; + this.selfNode.getChildByName("rankLab").active = false; + } else { + this.selfNode.getChildByName("rankLab").active = true; + } + console.log("自己的他头像:", this.selfInfo.useravatar); + if (this.selfInfo.useravatar == "" || this.selfInfo.useravatar == null || this.selfInfo.useravatar == undefined + ) { + this.selfNode.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite; + } + else if (this.selfInfo.useravatar == "icon_0" || this.selfInfo.useravatar == "icon_1" || this.selfInfo.useravatar == "icon_2" + || this.selfInfo.useravatar == "icon_3") { + let useravatar = this.selfInfo.useravatar; + this.selfNode.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatar); + } + else this.setPic(); + this.selfNode.opacity = 255; + } + + public setPic() { + // console.log("设置头像:", this.selfInfo.useravatar); + // this.node.getChildByName("pic").getChildByName("icon").active = false; + this.selfNode.getChildByName("pic").active = false; + var self = this; + let url = this.selfInfo.useravatar; + + cc.assetManager.loadRemote(url, { ext: '.png' }, (err, texture: cc.Texture2D) => { + if (texture) { + this.selfNode.getChildByName("pic").active = true; + var sprite = this.selfNode.getChildByName("pic").getComponent(cc.Sprite); + sprite.spriteFrame = new cc.SpriteFrame(texture); + // console.log(this.data.rank,"设置头像成功",err); + } + else { + // console.log("设置头像失败",url); + // console.log(err, texture) + } + }) + } + + // update (dt) {} +} diff --git a/assets/Script/ranking.ts.meta b/assets/Script/ranking.ts.meta new file mode 100644 index 0000000..567dbad --- /dev/null +++ b/assets/Script/ranking.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "8353385a-ecbd-479f-8129-fabbd1df3e64", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/setUi.ts b/assets/Script/setUi.ts new file mode 100644 index 0000000..f3b814a --- /dev/null +++ b/assets/Script/setUi.ts @@ -0,0 +1,276 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +import JiaZai from "./JiaZai"; +import MapConroler from "./Map"; +import SceneManager from "./SceneManager"; +import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + + +const { ccclass, property } = cc._decorator; + + +@ccclass +export default class setUi extends cc.Component { + static _instance: any; + time: number = 0; + + @property(cc.Node) + music: cc.Node = null; + + @property(cc.Node) + effect: cc.Node = null; + + @property(cc.Node) + vibrate: cc.Node = null; + + @property(cc.Node) + exit: cc.Node = null; + + @property(cc.Node) + win: cc.Node = null; + + musicState: boolean = true; + effectState: boolean = true; + vibrateState: boolean = true; + onLoad() { + this.musicState = cc.fx.GameConfig.GM_INFO.musicOpen; + this.effectState = cc.fx.GameConfig.GM_INFO.effectOpen; + this.vibrateState = cc.fx.GameConfig.GM_INFO.vibrateOpen; + if (this.musicState == true) { + this.music.children[0].active = true; + } else { + this.music.children[1].active = true; + } + if (this.effectState == true) { + this.effect.children[0].active = true; + } else { + this.effect.children[1].active = true; + } + if (this.vibrateState == true) { + this.vibrate.children[0].active = true; + } else { + this.vibrate.children[1].active = true; + } + } + + start() { + } + + + clickMusic() { + if (this.musicState) { + this.musicState = false; + cc.fx.GameConfig.GM_INFO.musicOpen = this.musicState; + + this.setMusicConfig(); + this.music.children[0].active = false; + this.music.children[1].active = true; + //如果音乐关闭了,则停止音乐 + cc.fx.AudioManager._instance.stopMusic(); + } + else { + this.musicState = true; + cc.fx.GameConfig.GM_INFO.musicOpen = this.musicState; + this.setMusicConfig(); + this.music.children[0].active = true; + this.music.children[1].active = false; + cc.fx.AudioManager._instance.playMusicGame(); + } + } + + setMusicConfig() { + let audioInfo = { + "musicOpen": cc.fx.GameConfig.GM_INFO.musicOpen, //音乐 + "effectOpen": cc.fx.GameConfig.GM_INFO.effectOpen, //音效 + "vibrateOpen": cc.fx.GameConfig.GM_INFO.vibrateOpen, //震动 + } + cc.fx.StorageMessage.setStorage("music", audioInfo); + } + + clickEffect() { + if (this.effectState) { + this.effectState = false; + cc.fx.GameConfig.GM_INFO.effectOpen = this.effectState; + this.setMusicConfig(); + this.effect.children[0].active = false; + this.effect.children[1].active = true; + } + else { + this.effectState = true; + cc.fx.GameConfig.GM_INFO.effectOpen = this.effectState; + this.setMusicConfig(); + this.effect.children[0].active = true; + this.effect.children[1].active = false; + + + } + } + + clickVibrate() { + if (this.vibrateState) { + this.vibrateState = false; + cc.fx.GameConfig.GM_INFO.vibrateOpen = this.vibrateState; + this.setMusicConfig(); + this.vibrate.children[0].active = false; + this.vibrate.children[1].active = true; + + } + else { + this.vibrateState = true; + cc.fx.GameConfig.GM_INFO.vibrateOpen = this.vibrateState; + this.setMusicConfig(); + this.vibrate.children[0].active = true; + this.vibrate.children[1].active = false; + + + } + } + syncToggleState() { + + } + + //退出游戏 + clickExit() { + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + if (MapConroler._instance.gameStart == false) { + MapConroler._instance.returnHome(); + } + else { + if (MapConroler._instance.powerState == false) { + let pauseNode = null; + if (cc.fx.GameConfig.GM_INFO.winStreak < 10 || cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + this.exit.active = true; + pauseNode = this.exit; + } + else { + this.win.active = true; + pauseNode = this.win; + } + + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + pauseNode.getChildByName("Health").getChildByName("queding").active = false; + } + else { + if (cc.fx.GameConfig.GM_INFO.winStreak >= 10 && cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + let pauseNode = null; + this.win.active = true; + pauseNode = this.win; + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + pauseNode.getChildByName("Health").getChildByName("queding").active = true; + } + else { + MapConroler._instance.returnHome(); + } + } + } + } + + returnHome() { + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + cc.fx.GameTool.setWinStreak("fail"); + } + + MapConroler._instance.returnHome(); + } + + //重开游戏 + clickRestart(event, customEventData) { + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + //当游戏没开始前,可直接重开 + if (MapConroler._instance.gameStart == false) { + MapConroler._instance.againLevel(); + } + //游戏开始后 + else { + //没有无限体力 + if (MapConroler._instance.powerState == false) { + //首页重开按钮 + if (customEventData != "hp") { + let pauseNode = null; + if (cc.fx.GameConfig.GM_INFO.winStreak < 10 || cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + this.exit.active = true; + pauseNode = this.exit; + } + else { + this.win.active = true; + pauseNode = this.win; + } + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + pauseNode.getChildByName("Health").getChildByName("queding").active = true; + } + else { + if (cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + cc.fx.GameTool.setWinStreak("fail"); + } + MapConroler._instance.againLevel(); + } + } + //有无限体力 + else { + if (customEventData != "hp") { + if (cc.fx.GameConfig.GM_INFO.winStreak >= 10 && cc.fx.GameConfig.GM_INFO.otherLevel == 0) { + let pauseNode = null; + this.win.active = true; + pauseNode = this.win; + pauseNode.scale = 0.3; + cc.tween(pauseNode) + .to(0.2, { scale: 1.05 }, { easing: 'backOut' }) + .to(0.15, { scale: 1.0 }, { easing: 'sineOut' }) + .start(); + pauseNode.getChildByName("Health").getChildByName("queding").active = true; + } + else { + MapConroler._instance.againLevel(); + } + } + else { + cc.fx.GameTool.setWinStreak("fail"); + MapConroler._instance.againLevel(); + } + } + } + } + + //取消 + cancelExit() { + this.exit.active = false; + this.win.active = false; + // 获取场景中的 pause 组件 + // const pauseTs = cc.find("Canvas"); + // if (pauseTs) { + // const pause = pauseTs.getComponent(SceneManager); + // if (pause) { + // pause.closePause(); + // } else { + // console.warn("pause 组件未找到"); + // } + // } else { + // console.warn("pause 节点未找到"); + // } + } + //关闭ui + closeUi() { + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + cc.fx.AudioManager._instance.playEffect("anniu_little", null); + this.node.active = false; + } + + // update (dt) {} +} diff --git a/assets/Script/setUi.ts.meta b/assets/Script/setUi.ts.meta new file mode 100644 index 0000000..8777381 --- /dev/null +++ b/assets/Script/setUi.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "19d95d9d-e645-41ac-b4b3-00819e12514a", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/Script/tdanalytics.mg.cocoscreator.min.js b/assets/Script/tdanalytics.mg.cocoscreator.min.js new file mode 100644 index 0000000..566f889 --- /dev/null +++ b/assets/Script/tdanalytics.mg.cocoscreator.min.js @@ -0,0 +1 @@ +"use strict";function _typeof(e){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,t){for(var i=0;i>6|192,63&s|128):String.fromCharCode(s>>12|224,s>>6&63|128,63&s|128),null!==o&&(n>18&63,i=a>>12&63,n=a>>6&63,a=63&a,l[o++]=r.charAt(t)+r.charAt(i)+r.charAt(n)+r.charAt(a),sthis.timeout}}]),r}(),HttpTaskDebug=function(){function o(e,t,i,n,a,r,s){_classCallCheck(this,o),this.data=e,this.serverDebugUrl=t,this.callback=s,this.tryCount=_.isNumber(i)?i:1,this.timeout=_.isNumber(n)?n:3e3,this.dryrun=a,this.deviceId=r,this.taClassName="HttpTaskDebug"}return _createClass(o,[{key:"run",value:function(){var t=this,e="appid="+this.data["#app_id"]+"&source=client&dryRun="+this.dryrun+"&deviceId="+this.deviceId+"&data="+encodeURIComponent(JSON.stringify(this.data.data[0])),i=_.createExtraHeaders();i["content-type"]="application/x-www-form-urlencoded";var n=PlatformAPI.request({url:this.serverDebugUrl,method:"POST",data:e,header:i,success:function(e){t.onSuccess(e),clearTimeout(a)},fail:function(e){t.onFailed(e),clearTimeout(a)}}),a=setTimeout(function(){(_.isObject(n)||_.isPromise(n))&&_.isFunction(n.abort)&&n.abort()},this.timeout)}},{key:"onSuccess",value:function(e){if(_.isObject(e)&&200===e.statusCode){var t;if((_.isUndefined(e.data)||_.isUndefined(e.data.errorLevel))&&(e.data={errorLevel:0}),0===e.data.errorLevel)t="Verify data success.";else if(1===e.data.errorLevel){for(var i=e.data.errorProperties,n="",a=0;ae)return!0;return!1}},{key:"resetTimeout",value:function(){this.isRunning=!1,delete this.runTime}}]),e}(),senderQueue=new SenderQueue,DEFAULT_CONFIG={name:"thinkingdata",is_plugin:!1,maxRetries:3,sendTimeout:3e3,enablePersistence:!0,asyncPersistence:!1,enableLog:!0,strict:!1,debugMode:"none",enableCalibrationTime:!1,enableBatch:!1,disablePresetProperties:[],cloudEnv:"online",reportingToTencentSdk:3},systemInformation={properties:{},disableList:[],initDisableList:function(e){this.disableList=e,this.disableList.includes("#lib")||(this.properties["#lib"]=Config.LIB_NAME),this.disableList.includes("#lib_version")||(this.properties["#lib_version"]=Config.LIB_VERSION)},initDeviceId:function(e){_.isString(e)&&(this.disableList.includes("#device_id")||(this.properties["#device_id"]=e))},getSystemInfo:function(e){var n=this;PlatformAPI.onNetworkStatusChange(function(e){n.disableList.includes("#network_type")||(n.properties["#network_type"]=e.networkType)}),PlatformAPI.getNetworkType({success:function(e){n.disableList.includes("#network_type")||(n.properties["#network_type"]=e.networkType)},complete:function(){PlatformAPI.getSystemInfo({success:function(e){var t=e.system?e.system.replace(/\s+/g," ").split(" "):[],i={};n.disableList.includes("#manufacturer")||(i["#manufacturer"]=e.brand),n.disableList.includes("#device_model")||(i["#device_model"]=e.model),n.disableList.includes("#screen_width")||(i["#screen_width"]=Number(e.screenWidth)),n.disableList.includes("#screen_height")||(i["#screen_height"]=Number(e.screenHeight)),n.disableList.includes("#os")||(i["#os"]=t[0]),n.disableList.includes("#os_version")||(i["#os_version"]=t[1]),n.disableList.includes("#mp_platform")||(i["#mp_platform"]=e.mp_platform),n.disableList.includes("#system_language")||(i["#system_language"]=e.systemLanguage),n.disableList.includes("#app_version")||(i["#app_version"]=e.appVersion),_.extend(n.properties,i),_.setMpPlatform(e.mp_platform)},complete:function(){e()}})}})}},ThinkingDataPersistence=function(){function e(t,i){var n=this;_classCallCheck(this,e),this.enabled=t.enablePersistence,this.enabled?(t.isChildInstance?(this.name=t.persistenceName+"_"+t.name,this.nameOld=t.persistenceNameOld+"_"+t.name):(this.name=t.persistenceName,this.nameOld=t.persistenceNameOld),t.asyncPersistence?(this._state={},PlatformAPI.getStorage(this.name,!0,function(e){_.isEmptyObject(e)?PlatformAPI.getStorage(n.nameOld,!0,function(e){n._state=_.extend2Layers({},e,n._state),n._init(t,i),n._save()}):(n._state=_.extend2Layers({},e,n._state),n._init(t,i),n._save())})):(this._state=PlatformAPI.getStorage(this.name)||{},_.isEmptyObject(this._state)&&(this._state=PlatformAPI.getStorage(this.nameOld)||{}),this._init(t,i))):(this._state={},this._init(t,i))}return _createClass(e,[{key:"_init",value:function(e,t){this.getDistinctId()||this.setDistinctId(_.UUID()),e.isChildInstance||(this.getDeviceId()||this._setDeviceId(_.UUID()),systemInformation.initDeviceId(this.getDeviceId())),this.initComplete=!0,"function"==typeof t&&t(),this._save()}},{key:"_save",value:function(){this.enabled&&this.initComplete&&PlatformAPI.setStorage(this.name,JSON.stringify(this._state))}},{key:"_set",value:function(e,t){var i,n=this;"string"==typeof e?(i={})[e]=t:"object"===_typeof(e)&&(i=e),_.each(i,function(e,t){n._state[t]=e}),this._save()}},{key:"_get",value:function(e){return this._state[e]}},{key:"setEventTimer",value:function(e,t){var i=this._state.event_timers||{};i[e]=t,this._set("event_timers",i)}},{key:"removeEventTimer",value:function(e){var t=(this._state.event_timers||{})[e];return _.isUndefined(t)||(delete this._state.event_timers[e],this._save()),t}},{key:"getDeviceId",value:function(){return this._state.device_id}},{key:"_setDeviceId",value:function(e){this.getDeviceId()?logger$1.warn("cannot modify the device id."):this._set("device_id",e)}},{key:"getDistinctId",value:function(){return this._state.distinct_id}},{key:"setDistinctId",value:function(e){this._set("distinct_id",e)}},{key:"getAccountId",value:function(){return this._state.account_id}},{key:"setAccountId",value:function(e){this._set("account_id",e)}},{key:"getSuperProperties",value:function(){return this._state.props||{}}},{key:"setSuperProperties",value:function(e,t){e=t?e:_.extend(this.getSuperProperties(),e);this._set("props",e)}}]),e}(),dataStoragePrefix="ta_mpsdk_",tabStoragePrefix="tab_tampsdk_",BatchConsumer=function(){function r(e,t){_classCallCheck(this,r),this.config=e,this.ta=t,this.timer=null,this.batchConfig=_.extend({size:6,interval:6e3,maxLimit:500},this.config.batchConfig),this.batchConfig.size<1&&(this.batchConfig.size=1),30this.maxLimit&&this.batchList.shift(),this.batchList.push(e),this.dataHasChange=!0,this.batchList.length>this.batchConfig.size&&this.batchSend()}},{key:"flush",value:function(){clearTimeout(this.timer),this.batchSend(),this.loopSend()}},{key:"batchSend",value:function(){var t,i,n,e=_.getCurrentTimeStamp();0!==this.dataSendTimeStamp&&e-this.dataSendTimeStamp + + + + frames + + 1color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,129} + spriteSourceSize + {122,129} + textureRect + {{1738,632},{122,129}} + textureRotated + + + 1color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,130} + spriteSourceSize + {244,130} + textureRect + {{1135,1732},{244,130}} + textureRotated + + + 1color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{1,753},{244,371}} + textureRotated + + + 1color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{979,371},{366,254}} + textureRotated + + + 1color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{491,747},{246,370}} + textureRotated + + + 1color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,249} + spriteSourceSize + {363,249} + textureRect + {{1,1499},{363,249}} + textureRotated + + + 1color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{1355,1},{364,251}} + textureRotated + + + 1color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{991,1110},{364,252}} + textureRotated + + + 1color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{610,372},{243,368}} + textureRotated + + + 1color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{503,1491},{242,369}} + textureRotated + + + 1color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,1},{364,374}} + textureRotated + + + 1color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{1381,1614},{246,248}} + textureRotated + + + 1color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {127,254} + spriteSourceSize + {127,254} + textureRect + {{1135,1476},{127,254}} + textureRotated + + + 1color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1629,1613},{244,249}} + textureRotated + + + 1color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1489,388},{247,252}} + textureRotated + + + 1color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1392,1360},{244,251}} + textureRotated + + + 1color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{1608,254},{362,132}} + textureRotated + + + 1color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{739,742},{122,368}} + textureRotated + + + 1color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{1245,1105},{242,253}} + textureRotated + + + 1color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{367,1},{241,371}} + textureRotated + + + 1color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{747,1481},{364,252}} + textureRotated + + + 1color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{247,753},{242,371}} + textureRotated + + + 1color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{739,1112},{367,250}} + textureRotated + + + 2color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,129} + spriteSourceSize + {122,129} + textureRect + {{1613,642},{122,129}} + textureRotated + + + 2color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,132} + spriteSourceSize + {242,132} + textureRect + {{1738,388},{242,132}} + textureRotated + + + 2color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{1,1126},{244,371}} + textureRotated + + + 2color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{1099,1},{366,254}} + textureRotated + + + 2color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{491,1119},{246,370}} + textureRotated + + + 2color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,249} + spriteSourceSize + {363,249} + textureRect + {{252,1499},{363,249}} + textureRotated + + + 2color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{1608,1},{364,251}} + textureRotated + + + 2color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1235,369},{364,252}} + textureRotated + + + 2color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{854,1},{243,368}} + textureRotated + + + 2color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{610,1},{242,369}} + textureRotated + + + 2color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,377},{364,374}} + textureRotated + + + 2color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{1638,1275},{246,248}} + textureRotated + + + 2color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,252} + spriteSourceSize + {126,252} + textureRect + {{1264,1360},{126,252}} + textureRotated + + + 2color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1735,1022},{244,249}} + textureRotated + + + 2color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1613,773},{247,252}} + textureRotated + + + 2color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1489,1022},{244,251}} + textureRotated + + + 2color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{1001,1476},{362,132}} + textureRotated + + + 2color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{855,371},{122,368}} + textureRotated + + + 2color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{1369,735},{242,253}} + textureRotated + + + 2color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{367,374},{241,371}} + textureRotated + + + 2color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1115,739},{364,252}} + textureRotated + + + 2color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{247,1126},{242,371}} + textureRotated + + + 2color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{863,741},{367,250}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + block1.png + size + {1980,1863} + smartupdate + $TexturePacker:SmartUpdate:a495f8472a71da3fff0071a482909898:29d8229d770b0a4627c568eb508e6bc5:9b5b023f7f6f9071cb5681292f2fb482$ + textureFileName + block1.png + + + diff --git a/assets/TextureBlock/block/block1.plist.meta b/assets/TextureBlock/block/block1.plist.meta new file mode 100644 index 0000000..a94ecc5 --- /dev/null +++ b/assets/TextureBlock/block/block1.plist.meta @@ -0,0 +1,1071 @@ +{ + "ver": "1.2.6", + "uuid": "04e50346-1a72-40e7-84f4-34fc35145f86", + "importer": "asset", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "size": { + "width": 1980, + "height": 1863 + }, + "type": "Texture Packer", + "subMetas": { + "1color0.png": { + "ver": "1.0.6", + "uuid": "484dbc77-00d3-454e-87aa-055b96dd8d46", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1738, + "trimY": 632, + "width": 122, + "height": 129, + "rawWidth": 122, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color1.png": { + "ver": "1.0.6", + "uuid": "9aba5c4c-b3c7-4e91-b979-fa16c13fe729", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1135, + "trimY": 1732, + "width": 244, + "height": 130, + "rawWidth": 244, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color10.png": { + "ver": "1.0.6", + "uuid": "bb9fd4cb-4c29-4471-8d5c-d9fc8f86f6f6", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 753, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color11.png": { + "ver": "1.0.6", + "uuid": "e6f157f7-f4e0-4942-bfa3-b4866574f127", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 979, + "trimY": 371, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color12.png": { + "ver": "1.0.6", + "uuid": "d7f4bb1b-5474-4b5b-9cc2-a0bdbb49b6cb", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 491, + "trimY": 747, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color13.png": { + "ver": "1.0.6", + "uuid": "dca74947-13f9-4220-bdff-17a28e0d4999", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1499, + "width": 363, + "height": 249, + "rawWidth": 363, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color14.png": { + "ver": "1.0.6", + "uuid": "1948fca7-16b4-4313-9e61-b9f68efc3fcd", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1355, + "trimY": 1, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color15.png": { + "ver": "1.0.6", + "uuid": "faed485e-7757-40a7-8158-4014f458a82c", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 991, + "trimY": 1110, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color16.png": { + "ver": "1.0.6", + "uuid": "544c5789-8369-4baf-99a2-31bb504b468b", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 610, + "trimY": 372, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color17.png": { + "ver": "1.0.6", + "uuid": "8e056c70-2bbe-445d-92ca-2c4e98a5b3a4", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 503, + "trimY": 1491, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color18.png": { + "ver": "1.0.6", + "uuid": "adad5a91-8552-40a8-9d88-1e742a1c5009", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color19.png": { + "ver": "1.0.6", + "uuid": "4e175f5f-3472-4277-acd5-0330b084c36b", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1381, + "trimY": 1614, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color2.png": { + "ver": "1.0.6", + "uuid": "f7e9e0c4-70be-4dd7-a67d-4cff78376d2c", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1135, + "trimY": 1476, + "width": 127, + "height": 254, + "rawWidth": 127, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color20.png": { + "ver": "1.0.6", + "uuid": "0a7a2f9a-4f12-4e47-9cd3-831535802fee", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1629, + "trimY": 1613, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color21.png": { + "ver": "1.0.6", + "uuid": "c2b8e707-ab74-439c-b7b0-e1f383407f85", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1489, + "trimY": 388, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color22.png": { + "ver": "1.0.6", + "uuid": "972a2e6f-a5b3-45d7-ba22-508eae71f5b5", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1392, + "trimY": 1360, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color3.png": { + "ver": "1.0.6", + "uuid": "0fd38e8a-b928-461d-81ea-fb544c903017", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1608, + "trimY": 254, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color4.png": { + "ver": "1.0.6", + "uuid": "7687fb22-6551-43f2-927b-352586501f37", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 739, + "trimY": 742, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color5.png": { + "ver": "1.0.6", + "uuid": "c4db4837-1695-42f8-90c2-5ec30f902582", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1245, + "trimY": 1105, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color6.png": { + "ver": "1.0.6", + "uuid": "0c27f4b3-4ca6-480d-a4f5-55edc1e011e2", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 1, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color7.png": { + "ver": "1.0.6", + "uuid": "a077e9f3-10f2-490c-b9b4-6bec8e0e897c", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 747, + "trimY": 1481, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color8.png": { + "ver": "1.0.6", + "uuid": "aa264c21-190c-4c36-96fa-393e854fa3f0", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 247, + "trimY": 753, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color9.png": { + "ver": "1.0.6", + "uuid": "8836b9d9-6202-4826-80b0-9517e3d4da01", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 739, + "trimY": 1112, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color0.png": { + "ver": "1.0.6", + "uuid": "5cd2a348-a7c0-4162-a148-632fc61bbcdc", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1613, + "trimY": 642, + "width": 122, + "height": 129, + "rawWidth": 122, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color1.png": { + "ver": "1.0.6", + "uuid": "7ac4c56d-885d-4f49-a813-d0ff73da1b56", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1738, + "trimY": 388, + "width": 242, + "height": 132, + "rawWidth": 242, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color10.png": { + "ver": "1.0.6", + "uuid": "75d0e4d5-4ab4-4bbe-8bb6-f3717bc24afa", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1126, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color11.png": { + "ver": "1.0.6", + "uuid": "90656372-aa0b-45d4-8485-8acd3b873898", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1099, + "trimY": 1, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color12.png": { + "ver": "1.0.6", + "uuid": "c7da77ca-03f3-408b-8041-49030852a17c", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 491, + "trimY": 1119, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color13.png": { + "ver": "1.0.6", + "uuid": "28b6331e-76aa-4940-8298-040ac5439528", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 252, + "trimY": 1499, + "width": 363, + "height": 249, + "rawWidth": 363, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color14.png": { + "ver": "1.0.6", + "uuid": "720146df-661b-4c34-8cd0-f1685c1bb1e8", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1608, + "trimY": 1, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color15.png": { + "ver": "1.0.6", + "uuid": "09d2921a-bea0-4c5c-8c19-ecb3fcaa6c77", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1235, + "trimY": 369, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color16.png": { + "ver": "1.0.6", + "uuid": "12ff97a7-2455-4ede-bc0e-3ed8513f8a33", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 854, + "trimY": 1, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color17.png": { + "ver": "1.0.6", + "uuid": "e0cea42c-c2d8-4c33-b937-f28383f68ca7", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 610, + "trimY": 1, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color18.png": { + "ver": "1.0.6", + "uuid": "510a3f1d-4c6d-4d82-b205-53bddd24d726", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 377, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color19.png": { + "ver": "1.0.6", + "uuid": "74e18259-b6e8-4b94-b156-24eee6d4297e", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1638, + "trimY": 1275, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color2.png": { + "ver": "1.0.6", + "uuid": "b2fd944d-7c56-47c7-9bfb-672f58d8436a", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1264, + "trimY": 1360, + "width": 126, + "height": 252, + "rawWidth": 126, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color20.png": { + "ver": "1.0.6", + "uuid": "c7b60fc5-beb5-42ed-a977-8c19baaed561", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1735, + "trimY": 1022, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color21.png": { + "ver": "1.0.6", + "uuid": "44c256ea-e560-4324-ad4b-c5a04c1c8614", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1613, + "trimY": 773, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color22.png": { + "ver": "1.0.6", + "uuid": "68145127-573b-4dcf-a4c6-a75ad856b172", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1489, + "trimY": 1022, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color3.png": { + "ver": "1.0.6", + "uuid": "54c5a7f2-8b58-4d1e-94ff-084051283982", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1001, + "trimY": 1476, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color4.png": { + "ver": "1.0.6", + "uuid": "91f69588-9c00-42af-885b-d9441c58aa26", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 855, + "trimY": 371, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color5.png": { + "ver": "1.0.6", + "uuid": "ba2575da-d8e5-427e-a0c2-4f4617631b33", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1369, + "trimY": 735, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color6.png": { + "ver": "1.0.6", + "uuid": "c9068b8a-ae7a-4221-9764-321212763d23", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 374, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color7.png": { + "ver": "1.0.6", + "uuid": "37375cbd-42f7-4ed2-9fc8-d66189c03e8e", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1115, + "trimY": 739, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color8.png": { + "ver": "1.0.6", + "uuid": "1a10b4ab-1059-449c-ad2d-2b9bb0c9a8dd", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 247, + "trimY": 1126, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color9.png": { + "ver": "1.0.6", + "uuid": "bdecda80-f0a2-4221-b3df-539f2b74d9e8", + "importer": "sprite-frame", + "rawTextureUuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 863, + "trimY": 741, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block1.png b/assets/TextureBlock/block/block1.png new file mode 100644 index 0000000..1fb335c Binary files /dev/null and b/assets/TextureBlock/block/block1.png differ diff --git a/assets/TextureBlock/block/block1.png.meta b/assets/TextureBlock/block/block1.png.meta new file mode 100644 index 0000000..6b9263f --- /dev/null +++ b/assets/TextureBlock/block/block1.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "4415f278-50b1-46b5-bdf1-0dd7fa4b461b", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1980, + "height": 1863, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block2.plist b/assets/TextureBlock/block/block2.plist new file mode 100644 index 0000000..901a84d --- /dev/null +++ b/assets/TextureBlock/block/block2.plist @@ -0,0 +1,716 @@ + + + + + frames + + 3color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,129} + spriteSourceSize + {122,129} + textureRect + {{367,626},{122,129}} + textureRotated + + + 3color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,130} + spriteSourceSize + {244,130} + textureRect + {{1618,1488},{244,130}} + textureRotated + + + 3color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{255,1126},{244,371}} + textureRotated + + + 3color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{367,1},{366,254}} + textureRotated + + + 3color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{1104,1},{246,370}} + textureRotated + + + 3color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,249} + spriteSourceSize + {364,249} + textureRect + {{255,1499},{364,249}} + textureRotated + + + 3color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{1118,747},{364,251}} + textureRotated + + + 3color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1,1487},{364,252}} + textureRotated + + + 3color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{500,631},{243,368}} + textureRotated + + + 3color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{501,1001},{242,369}} + textureRotated + + + 3color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,1},{364,374}} + textureRotated + + + 3color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{738,1751},{246,248}} + textureRotated + + + 3color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {127,254} + spriteSourceSize + {127,254} + textureRect + {{609,1743},{127,254}} + textureRotated + + + 3color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1484,1114},{244,249}} + textureRotated + + + 3color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1505,500},{247,252}} + textureRotated + + + 3color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1238,1751},{244,251}} + textureRotated + + + 3color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,131} + spriteSourceSize + {364,131} + textureRect + {{999,253},{364,131}} + textureRotated + + + 3color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {124,372} + spriteSourceSize + {124,372} + textureRect + {{619,257},{124,372}} + textureRotated + + + 3color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{1119,1507},{242,253}} + textureRotated + + + 3color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{257,753},{241,371}} + textureRotated + + + 3color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1,1121},{364,252}} + textureRotated + + + 3color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{1132,503},{242,371}} + textureRotated + + + 3color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{367,257},{367,250}} + textureRotated + + + 4color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,129} + spriteSourceSize + {122,129} + textureRect + {{1622,1360},{122,129}} + textureRotated + + + 4color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,132} + spriteSourceSize + {242,132} + textureRect + {{365,1865},{242,132}} + textureRotated + + + 4color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{745,1106},{244,371}} + textureRotated + + + 4color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{1,753},{366,254}} + textureRotated + + + 4color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{1476,1},{246,370}} + textureRotated + + + 4color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,249} + spriteSourceSize + {363,249} + textureRect + {{1484,749},{363,249}} + textureRotated + + + 4color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{1118,1000},{364,251}} + textureRotated + + + 4color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1132,249},{364,252}} + textureRotated + + + 4color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{750,1352},{243,368}} + textureRotated + + + 4color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{506,1372},{242,369}} + textureRotated + + + 4color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,377},{364,374}} + textureRotated + + + 4color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{988,1751},{246,248}} + textureRotated + + + 4color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,252} + spriteSourceSize + {126,252} + textureRect + {{1368,1360},{126,252}} + textureRotated + + + 4color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {267,249} + spriteSourceSize + {267,249} + textureRect + {{1498,249},{267,249}} + textureRotated + + + 4color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1119,1253},{247,252}} + textureRotated + + + 4color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1491,1743},{244,251}} + textureRotated + + + 4color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{1,1865},{362,132}} + textureRotated + + + 4color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{995,1352},{122,368}} + textureRotated + + + 4color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{1374,1488},{242,253}} + textureRotated + + + 4color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{745,619},{241,371}} + textureRotated + + + 4color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{745,253},{364,252}} + textureRotated + + + 4color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{745,862},{242,371}} + textureRotated + + + 4color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{735,1},{367,250}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + block2.png + size + {1847,1998} + smartupdate + $TexturePacker:SmartUpdate:c375922dd62a4e0dc828762d721e0609:cda55c709f6f7c51db3abfef4db83f07:b8372d9f4803f4b0c7c9cf8e2a3e483f$ + textureFileName + block2.png + + + diff --git a/assets/TextureBlock/block/block2.plist.meta b/assets/TextureBlock/block/block2.plist.meta new file mode 100644 index 0000000..bae431f --- /dev/null +++ b/assets/TextureBlock/block/block2.plist.meta @@ -0,0 +1,1071 @@ +{ + "ver": "1.2.6", + "uuid": "0320e925-da03-488f-9e62-0018a6fdbb83", + "importer": "asset", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "size": { + "width": 1847, + "height": 1998 + }, + "type": "Texture Packer", + "subMetas": { + "3color0.png": { + "ver": "1.0.6", + "uuid": "6968e608-f89b-4baf-87bd-8d00ca2df04c", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 626, + "width": 122, + "height": 129, + "rawWidth": 122, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color1.png": { + "ver": "1.0.6", + "uuid": "646e885c-31d7-491a-bf3d-82cff1d03358", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1618, + "trimY": 1488, + "width": 244, + "height": 130, + "rawWidth": 244, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color10.png": { + "ver": "1.0.6", + "uuid": "f023d7e7-4b8d-4121-bfcb-a7bdc1910d82", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 255, + "trimY": 1126, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color11.png": { + "ver": "1.0.6", + "uuid": "f2f121ca-70d9-42ab-8496-4541f41ef87f", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 1, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color12.png": { + "ver": "1.0.6", + "uuid": "132cce5e-a9d4-4bb1-822b-fef93e18363b", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1104, + "trimY": 1, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color13.png": { + "ver": "1.0.6", + "uuid": "e78f6b2a-4aee-4e43-b273-8983cc142c88", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 255, + "trimY": 1499, + "width": 364, + "height": 249, + "rawWidth": 364, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color14.png": { + "ver": "1.0.6", + "uuid": "a8535d16-a56b-4889-ba8e-17cd328da7a7", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1118, + "trimY": 747, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color15.png": { + "ver": "1.0.6", + "uuid": "1d4bfe70-0070-425c-ae35-964acd57c9fa", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1487, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color16.png": { + "ver": "1.0.6", + "uuid": "81eee753-2d81-4e6f-905a-11cc30ab4fc3", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 500, + "trimY": 631, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color17.png": { + "ver": "1.0.6", + "uuid": "19de4673-0c3a-4d77-859c-2c45b235a7c1", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 501, + "trimY": 1001, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color18.png": { + "ver": "1.0.6", + "uuid": "c018221c-cf8f-49f6-b19e-23770b1aacb3", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color19.png": { + "ver": "1.0.6", + "uuid": "9e871faa-7638-414d-97b5-dac1fc31834b", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 738, + "trimY": 1751, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color2.png": { + "ver": "1.0.6", + "uuid": "3d881291-5c76-4673-af76-6bb089cab3b0", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 609, + "trimY": 1743, + "width": 127, + "height": 254, + "rawWidth": 127, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color20.png": { + "ver": "1.0.6", + "uuid": "5a4a86d1-c45d-41f6-802e-f54ab6ba6e41", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1484, + "trimY": 1114, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color21.png": { + "ver": "1.0.6", + "uuid": "0a133619-1261-48c8-ac49-edf4c73497de", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1505, + "trimY": 500, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color22.png": { + "ver": "1.0.6", + "uuid": "2c51c40c-c0df-4fc7-83f6-e328d0fbd771", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1238, + "trimY": 1751, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color3.png": { + "ver": "1.0.6", + "uuid": "6305d6fb-4fbe-4774-99ad-730e094663c4", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 999, + "trimY": 253, + "width": 364, + "height": 131, + "rawWidth": 364, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color4.png": { + "ver": "1.0.6", + "uuid": "1839bf6d-6ae0-42bc-a05b-be919f902903", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 619, + "trimY": 257, + "width": 124, + "height": 372, + "rawWidth": 124, + "rawHeight": 372, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color5.png": { + "ver": "1.0.6", + "uuid": "01e15be4-413b-421c-aa33-a8ebd30b1e69", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1119, + "trimY": 1507, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color6.png": { + "ver": "1.0.6", + "uuid": "211af905-b3b5-4500-8376-0ec00a400422", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 257, + "trimY": 753, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color7.png": { + "ver": "1.0.6", + "uuid": "c2fc9f6e-768e-4d7a-8104-f2dad80d77d1", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1121, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color8.png": { + "ver": "1.0.6", + "uuid": "f7cafeb2-c30a-4fe1-917f-7efe41e260b3", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1132, + "trimY": 503, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color9.png": { + "ver": "1.0.6", + "uuid": "0e316350-3ce1-4d98-abc2-891fdfe18799", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 257, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color0.png": { + "ver": "1.0.6", + "uuid": "8c17e858-2f3d-4648-a174-a03182f572f3", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1622, + "trimY": 1360, + "width": 122, + "height": 129, + "rawWidth": 122, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color1.png": { + "ver": "1.0.6", + "uuid": "5f328629-b0ad-4dc4-b7d7-f1a01cf727a9", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 365, + "trimY": 1865, + "width": 242, + "height": 132, + "rawWidth": 242, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color10.png": { + "ver": "1.0.6", + "uuid": "763ede67-d085-4342-b14d-92649f403f9c", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 745, + "trimY": 1106, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color11.png": { + "ver": "1.0.6", + "uuid": "1f080651-965c-40ed-b149-71da06d52d2d", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 753, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color12.png": { + "ver": "1.0.6", + "uuid": "7417801e-ef36-4048-97db-ab63b805ffc9", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1476, + "trimY": 1, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color13.png": { + "ver": "1.0.6", + "uuid": "e3992f23-5fba-44d6-808b-ea562a706cfd", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1484, + "trimY": 749, + "width": 363, + "height": 249, + "rawWidth": 363, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color14.png": { + "ver": "1.0.6", + "uuid": "1632332f-ad1f-4392-8031-e9e15ab0e8fd", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1118, + "trimY": 1000, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color15.png": { + "ver": "1.0.6", + "uuid": "05beb06f-0209-44b6-be79-afd7517da549", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1132, + "trimY": 249, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color16.png": { + "ver": "1.0.6", + "uuid": "be3979be-7e67-4bb4-9878-14fa7dd71f87", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 750, + "trimY": 1352, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color17.png": { + "ver": "1.0.6", + "uuid": "e813db74-9fa8-40f3-bcb2-e2011267629d", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 506, + "trimY": 1372, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color18.png": { + "ver": "1.0.6", + "uuid": "ad9353e5-ea5a-4974-8cd5-058ba95c9efe", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 377, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color19.png": { + "ver": "1.0.6", + "uuid": "fd29c637-6e0d-4da6-837d-0008cf74708c", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 988, + "trimY": 1751, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color2.png": { + "ver": "1.0.6", + "uuid": "1952c468-d176-4d0a-8a0c-8f94c7513c70", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1368, + "trimY": 1360, + "width": 126, + "height": 252, + "rawWidth": 126, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color20.png": { + "ver": "1.0.6", + "uuid": "e056e9f0-3dde-4b59-ad02-a79fc4f7facb", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1498, + "trimY": 249, + "width": 267, + "height": 249, + "rawWidth": 267, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color21.png": { + "ver": "1.0.6", + "uuid": "0e9ec246-9951-4281-8a0b-49e80b649248", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1119, + "trimY": 1253, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color22.png": { + "ver": "1.0.6", + "uuid": "1584dd6d-467d-4826-98ce-4f8ac3adccaa", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1491, + "trimY": 1743, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color3.png": { + "ver": "1.0.6", + "uuid": "a141033d-2dc6-4b16-a304-c0fa5c742ef8", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1865, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color4.png": { + "ver": "1.0.6", + "uuid": "5e82167c-7711-444b-a73b-b453af5ea0f1", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 995, + "trimY": 1352, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color5.png": { + "ver": "1.0.6", + "uuid": "d50abdb1-9c50-42de-bb9e-c57db54394aa", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1374, + "trimY": 1488, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color6.png": { + "ver": "1.0.6", + "uuid": "f1fa97cb-8192-4737-9c51-2591857ab2c5", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 745, + "trimY": 619, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color7.png": { + "ver": "1.0.6", + "uuid": "bb290434-0fd4-4070-83cc-7f37cca70baf", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 745, + "trimY": 253, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color8.png": { + "ver": "1.0.6", + "uuid": "d6193b6d-1a0b-4a25-811e-2ef22dab52f7", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 745, + "trimY": 862, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color9.png": { + "ver": "1.0.6", + "uuid": "24e7352d-078d-4e18-8b13-a3f8033e83ed", + "importer": "sprite-frame", + "rawTextureUuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 735, + "trimY": 1, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block2.png b/assets/TextureBlock/block/block2.png new file mode 100644 index 0000000..eae61ca Binary files /dev/null and b/assets/TextureBlock/block/block2.png differ diff --git a/assets/TextureBlock/block/block2.png.meta b/assets/TextureBlock/block/block2.png.meta new file mode 100644 index 0000000..742e11e --- /dev/null +++ b/assets/TextureBlock/block/block2.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "e401e735-bc45-4c02-ab15-ac8f4afbed44", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1847, + "height": 1998, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block3.plist b/assets/TextureBlock/block/block3.plist new file mode 100644 index 0000000..82b5863 --- /dev/null +++ b/assets/TextureBlock/block/block3.plist @@ -0,0 +1,716 @@ + + + + + frames + + 5color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {124,134} + spriteSourceSize + {124,134} + textureRect + {{367,626},{124,134}} + textureRotated + + + 5color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,130} + spriteSourceSize + {244,130} + textureRect + {{1017,1367},{244,130}} + textureRotated + + + 5color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{255,1126},{244,371}} + textureRotated + + + 5color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{367,1},{366,254}} + textureRotated + + + 5color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{1104,1},{246,370}} + textureRotated + + + 5color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,249} + spriteSourceSize + {363,249} + textureRect + {{255,1499},{363,249}} + textureRotated + + + 5color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{1241,503},{364,251}} + textureRotated + + + 5color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1,1487},{364,252}} + textureRotated + + + 5color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{500,756},{243,368}} + textureRotated + + + 5color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{988,996},{242,369}} + textureRotated + + + 5color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,1},{364,374}} + textureRotated + + + 5color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{1603,1128},{246,248}} + textureRotated + + + 5color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {127,254} + spriteSourceSize + {127,254} + textureRect + {{1,1864},{127,254}} + textureRotated + + + 5color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1602,1376},{244,249}} + textureRotated + + + 5color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{773,1744},{247,252}} + textureRotated + + + 5color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1607,622},{244,251}} + textureRotated + + + 5color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{506,1499},{362,132}} + textureRotated + + + 5color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{619,257},{122,368}} + textureRotated + + + 5color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{773,1489},{242,253}} + textureRotated + + + 5color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{257,753},{241,371}} + textureRotated + + + 5color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1,1121},{364,252}} + textureRotated + + + 5color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{997,253},{242,371}} + textureRotated + + + 5color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{367,257},{367,250}} + textureRotated + + + 6color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,129} + spriteSourceSize + {122,129} + textureRect + {{745,1358},{122,129}} + textureRotated + + + 6color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,130} + spriteSourceSize + {244,130} + textureRect + {{1404,1377},{244,130}} + textureRotated + + + 6color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{1607,249},{244,371}} + textureRotated + + + 6color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{1,753},{366,254}} + textureRotated + + + 6color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{1476,1},{246,370}} + textureRotated + + + 6color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,249} + spriteSourceSize + {364,249} + textureRect + {{745,619},{364,249}} + textureRotated + + + 6color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{1241,756},{364,251}} + textureRotated + + + 6color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1241,249},{364,252}} + textureRotated + + + 6color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{996,626},{243,368}} + textureRotated + + + 6color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{1232,1009},{242,369}} + textureRotated + + + 6color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,377},{364,374}} + textureRotated + + + 6color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{1276,1623},{246,248}} + textureRotated + + + 6color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {127,254} + spriteSourceSize + {127,254} + textureRect + {{257,1864},{127,254}} + textureRotated + + + 6color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1524,1623},{244,249}} + textureRotated + + + 6color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1027,1621},{247,252}} + textureRotated + + + 6color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1607,875},{244,251}} + textureRotated + + + 6color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,131} + spriteSourceSize + {364,131} + textureRect + {{640,1499},{364,131}} + textureRotated + + + 6color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{1232,1253},{122,368}} + textureRotated + + + 6color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{1149,1377},{242,253}} + textureRotated + + + 6color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{745,985},{241,371}} + textureRotated + + + 6color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{743,253},{364,252}} + textureRotated + + + 6color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{501,1126},{242,371}} + textureRotated + + + 6color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{735,1},{367,250}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + block3.png + size + {1852,1992} + smartupdate + $TexturePacker:SmartUpdate:fd57c4336bb7768df2cb492582ee183a:d6f27a13ecc4d9f9a7da537592ae9058:9d0f309529eccaeb5fff24ada0715678$ + textureFileName + block3.png + + + diff --git a/assets/TextureBlock/block/block3.plist.meta b/assets/TextureBlock/block/block3.plist.meta new file mode 100644 index 0000000..4d00205 --- /dev/null +++ b/assets/TextureBlock/block/block3.plist.meta @@ -0,0 +1,1071 @@ +{ + "ver": "1.2.6", + "uuid": "8f9cd656-30c2-4d3f-88dd-ef00d02b3f3e", + "importer": "asset", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "size": { + "width": 1852, + "height": 1992 + }, + "type": "Texture Packer", + "subMetas": { + "5color0.png": { + "ver": "1.0.6", + "uuid": "9f9939e8-bd89-4c54-9358-d6c8bad81d70", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 626, + "width": 124, + "height": 134, + "rawWidth": 124, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color1.png": { + "ver": "1.0.6", + "uuid": "45776d68-06c9-41e1-8d9a-b38322842b50", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1017, + "trimY": 1367, + "width": 244, + "height": 130, + "rawWidth": 244, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color10.png": { + "ver": "1.0.6", + "uuid": "fa06e9d1-fede-45ed-ae7e-d9dc3b3cdcf6", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 255, + "trimY": 1126, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color11.png": { + "ver": "1.0.6", + "uuid": "8d883e44-31ae-4a1c-8e11-8cfba9c1b94d", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 1, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color12.png": { + "ver": "1.0.6", + "uuid": "f5d6db19-18fb-4621-9eb7-db0deafbdbfb", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1104, + "trimY": 1, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color13.png": { + "ver": "1.0.6", + "uuid": "b0201acd-00b5-48f6-9514-bf5afe276726", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 255, + "trimY": 1499, + "width": 363, + "height": 249, + "rawWidth": 363, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color14.png": { + "ver": "1.0.6", + "uuid": "1f9f1b7c-001c-438b-a9d6-7e67ed4e04b0", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1241, + "trimY": 503, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color15.png": { + "ver": "1.0.6", + "uuid": "d9352fae-7bed-48aa-9b11-65c35f7b73a0", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1487, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color16.png": { + "ver": "1.0.6", + "uuid": "a89b3324-18db-4945-9d5b-f62b117608ae", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 500, + "trimY": 756, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color17.png": { + "ver": "1.0.6", + "uuid": "dc4dd0fe-b1b3-4c61-ac59-0fc93c236a37", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 988, + "trimY": 996, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color18.png": { + "ver": "1.0.6", + "uuid": "8d778d34-7f4f-43ac-9fd9-9ace14a6e864", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color19.png": { + "ver": "1.0.6", + "uuid": "1d87cbc3-baea-492c-86e6-d89ff915ce29", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1603, + "trimY": 1128, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color2.png": { + "ver": "1.0.6", + "uuid": "034bbe38-c396-4c96-a828-56b684a15dc5", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1864, + "width": 127, + "height": 254, + "rawWidth": 127, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color20.png": { + "ver": "1.0.6", + "uuid": "c6ea099b-cd07-4136-868b-51df3d28b12e", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1602, + "trimY": 1376, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color21.png": { + "ver": "1.0.6", + "uuid": "8f3889e6-2b43-4ff1-a086-df1f16489ee2", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 773, + "trimY": 1744, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color22.png": { + "ver": "1.0.6", + "uuid": "a54308a6-c218-487d-818d-c306a87cf3e8", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1607, + "trimY": 622, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color3.png": { + "ver": "1.0.6", + "uuid": "ebecc558-7d14-4588-a502-3878ed2e6460", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 506, + "trimY": 1499, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color4.png": { + "ver": "1.0.6", + "uuid": "b81a12b7-e43b-431d-99e4-a841caa759b6", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 619, + "trimY": 257, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color5.png": { + "ver": "1.0.6", + "uuid": "a9665540-a25e-4f4a-b045-894b83c440f1", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 773, + "trimY": 1489, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color6.png": { + "ver": "1.0.6", + "uuid": "5148835f-7817-4059-be9b-9c6241746c7a", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 257, + "trimY": 753, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color7.png": { + "ver": "1.0.6", + "uuid": "1adcd96c-6af0-48f3-a4e9-d2378953671d", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1121, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color8.png": { + "ver": "1.0.6", + "uuid": "d8d48f62-54d4-4a2b-b59d-ec76727e5fc3", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 997, + "trimY": 253, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color9.png": { + "ver": "1.0.6", + "uuid": "8a7aafdf-325c-4b60-b89b-22b57bc3b067", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 257, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color0.png": { + "ver": "1.0.6", + "uuid": "57d6a2e3-617d-4b3e-9514-8291935feea3", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 745, + "trimY": 1358, + "width": 122, + "height": 129, + "rawWidth": 122, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color1.png": { + "ver": "1.0.6", + "uuid": "a4e199d4-4713-488a-be56-0514e3df0f4a", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1404, + "trimY": 1377, + "width": 244, + "height": 130, + "rawWidth": 244, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color10.png": { + "ver": "1.0.6", + "uuid": "90d2772a-2b1d-4dd4-bc83-e9fc9c5cd74a", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1607, + "trimY": 249, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color11.png": { + "ver": "1.0.6", + "uuid": "88c9c207-bc54-4132-9120-b3bc8bfb5a94", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 753, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color12.png": { + "ver": "1.0.6", + "uuid": "4309a12b-9dbf-4fb5-b904-a7cac8ee025a", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1476, + "trimY": 1, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color13.png": { + "ver": "1.0.6", + "uuid": "349e5568-d2de-4a75-a7ed-c22b680f4fe0", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 745, + "trimY": 619, + "width": 364, + "height": 249, + "rawWidth": 364, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color14.png": { + "ver": "1.0.6", + "uuid": "9e449ee2-759a-4497-a4ea-2ee29f3a5ee2", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1241, + "trimY": 756, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color15.png": { + "ver": "1.0.6", + "uuid": "79385194-71d2-4619-abc8-7ebf58529b01", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1241, + "trimY": 249, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color16.png": { + "ver": "1.0.6", + "uuid": "3c0ed1d0-77b4-4496-b565-a2f8d9f4a70c", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 996, + "trimY": 626, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color17.png": { + "ver": "1.0.6", + "uuid": "7b688c4f-6941-426d-ad55-f872dfbb43d0", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1232, + "trimY": 1009, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color18.png": { + "ver": "1.0.6", + "uuid": "aaad2974-b4bd-4162-9c48-5dcc38f8f0fe", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 377, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color19.png": { + "ver": "1.0.6", + "uuid": "8d88202c-d805-4a0c-9954-a56a1e11d3a8", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1276, + "trimY": 1623, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color2.png": { + "ver": "1.0.6", + "uuid": "1125dba9-5c2b-4d2f-a558-698535ce0d0f", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 257, + "trimY": 1864, + "width": 127, + "height": 254, + "rawWidth": 127, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color20.png": { + "ver": "1.0.6", + "uuid": "2ee11b31-38d2-4b0c-9523-695e3103eeb3", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1524, + "trimY": 1623, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color21.png": { + "ver": "1.0.6", + "uuid": "804b6c87-505c-4f9f-b9c3-b9bbdab79719", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1027, + "trimY": 1621, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color22.png": { + "ver": "1.0.6", + "uuid": "52cdb5a5-2928-4c14-8759-40b78cfb3ba6", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1607, + "trimY": 875, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color3.png": { + "ver": "1.0.6", + "uuid": "8054417d-78d5-4e62-8263-399d1ec9d0da", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 640, + "trimY": 1499, + "width": 364, + "height": 131, + "rawWidth": 364, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color4.png": { + "ver": "1.0.6", + "uuid": "5c768943-46dc-453b-9457-3dfb98ed3fd8", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1232, + "trimY": 1253, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color5.png": { + "ver": "1.0.6", + "uuid": "d580c618-7f10-4052-84ad-c88bf4ae94f4", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1149, + "trimY": 1377, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color6.png": { + "ver": "1.0.6", + "uuid": "ab5a074f-5210-4113-8949-5f22d6658ba4", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 745, + "trimY": 985, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color7.png": { + "ver": "1.0.6", + "uuid": "44dcb2ae-8598-4cd2-8e71-a1dabba47012", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 743, + "trimY": 253, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color8.png": { + "ver": "1.0.6", + "uuid": "840ce9dc-788b-4eed-98b2-6ec6eebf29f3", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 501, + "trimY": 1126, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color9.png": { + "ver": "1.0.6", + "uuid": "e9a052bd-8d60-42e9-98d7-2671bc1d87db", + "importer": "sprite-frame", + "rawTextureUuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 735, + "trimY": 1, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block3.png b/assets/TextureBlock/block/block3.png new file mode 100644 index 0000000..896c96b Binary files /dev/null and b/assets/TextureBlock/block/block3.png differ diff --git a/assets/TextureBlock/block/block3.png.meta b/assets/TextureBlock/block/block3.png.meta new file mode 100644 index 0000000..778a70b --- /dev/null +++ b/assets/TextureBlock/block/block3.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "d4dfa9d3-985d-4d58-9c06-fc12d3df7d28", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1852, + "height": 1992, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block4.plist b/assets/TextureBlock/block/block4.plist new file mode 100644 index 0000000..e232636 --- /dev/null +++ b/assets/TextureBlock/block/block4.plist @@ -0,0 +1,716 @@ + + + + + frames + + 7color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {124,134} + spriteSourceSize + {124,134} + textureRect + {{1865,494},{124,134}} + textureRotated + + + 7color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,132} + spriteSourceSize + {242,132} + textureRect + {{1746,765},{242,132}} + textureRotated + + + 7color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{1,752},{244,371}} + textureRotated + + + 7color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{1,1498},{366,254}} + textureRotated + + + 7color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{367,1},{246,370}} + textureRotated + + + 7color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,249} + spriteSourceSize + {363,249} + textureRect + {{1241,736},{363,249}} + textureRotated + + + 7color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{1112,1},{364,251}} + textureRotated + + + 7color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{987,740},{364,252}} + textureRotated + + + 7color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{615,1},{243,368}} + textureRotated + + + 7color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{611,373},{242,369}} + textureRotated + + + 7color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,1},{364,374}} + textureRotated + + + 7color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{1235,1472},{246,248}} + textureRotated + + + 7color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,252} + spriteSourceSize + {126,252} + textureRect + {{1492,987},{126,252}} + textureRotated + + + 7color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1483,1361},{244,249}} + textureRotated + + + 7color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1633,245},{247,252}} + textureRotated + + + 7color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1483,1115},{244,251}} + textureRotated + + + 7color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{1365,1},{362,132}} + textureRotated + + + 7color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{739,744},{122,368}} + textureRotated + + + 7color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{1633,1},{242,253}} + textureRotated + + + 7color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{247,1125},{241,371}} + textureRotated + + + 7color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{977,1109},{364,252}} + textureRotated + + + 7color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{247,752},{242,371}} + textureRotated + + + 7color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{855,371},{367,250}} + textureRotated + + + 8color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {124,133} + spriteSourceSize + {124,133} + textureRect + {{1865,630},{124,133}} + textureRotated + + + 8color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,132} + spriteSourceSize + {242,132} + textureRect + {{1746,899},{242,132}} + textureRotated + + + 8color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{1,1125},{244,371}} + textureRotated + + + 8color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{369,1498},{366,254}} + textureRotated + + + 8color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,369} + spriteSourceSize + {246,369} + textureRect + {{491,745},{246,369}} + textureRotated + + + 8color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,248} + spriteSourceSize + {363,248} + textureRect + {{1361,367},{363,248}} + textureRotated + + + 8color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,250} + spriteSourceSize + {364,250} + textureRect + {{1231,1106},{364,250}} + textureRotated + + + 8color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{982,1475},{364,251}} + textureRotated + + + 8color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,367} + spriteSourceSize + {243,367} + textureRect + {{737,1486},{243,367}} + textureRotated + + + 8color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,368} + spriteSourceSize + {242,368} + textureRect + {{733,1116},{242,368}} + textureRotated + + + 8color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,373} + spriteSourceSize + {364,373} + textureRect + {{1,377},{364,373}} + textureRotated + + + 8color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,247} + spriteSourceSize + {246,247} + textureRect + {{1729,1607},{246,247}} + textureRotated + + + 8color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,251} + spriteSourceSize + {126,251} + textureRect + {{1746,1033},{126,251}} + textureRotated + + + 8color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,248} + spriteSourceSize + {244,248} + textureRect + {{1483,1607},{244,248}} + textureRotated + + + 8color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1611,494},{247,252}} + textureRotated + + + 8color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1736,1286},{244,251}} + textureRotated + + + 8color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{1499,1},{362,132}} + textureRotated + + + 8color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,367} + spriteSourceSize + {122,367} + textureRect + {{863,740},{122,367}} + textureRotated + + + 8color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,252} + spriteSourceSize + {242,252} + textureRect + {{1492,743},{242,252}} + textureRotated + + + 8color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{490,1125},{241,371}} + textureRotated + + + 8color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1107,370},{364,252}} + textureRotated + + + 8color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,370} + spriteSourceSize + {242,370} + textureRect + {{367,373},{242,370}} + textureRotated + + + 8color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{860,1},{367,250}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + block4.png + size + {1990,1856} + smartupdate + $TexturePacker:SmartUpdate:ac86bff9ab146dd484c246bb42bce098:8ff809e16bf6e3499952db1af0021844:b57e56512c4dc3f4983c649e034380da$ + textureFileName + block4.png + + + diff --git a/assets/TextureBlock/block/block4.plist.meta b/assets/TextureBlock/block/block4.plist.meta new file mode 100644 index 0000000..50cf772 --- /dev/null +++ b/assets/TextureBlock/block/block4.plist.meta @@ -0,0 +1,1071 @@ +{ + "ver": "1.2.6", + "uuid": "e29d7af1-7e79-4793-b052-bfeb02003e1b", + "importer": "asset", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "size": { + "width": 1990, + "height": 1856 + }, + "type": "Texture Packer", + "subMetas": { + "7color0.png": { + "ver": "1.0.6", + "uuid": "368687e8-0dec-463d-a660-b0e0c634db2b", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1865, + "trimY": 494, + "width": 124, + "height": 134, + "rawWidth": 124, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color1.png": { + "ver": "1.0.6", + "uuid": "fec87c38-a592-4561-a090-176907768dc7", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1746, + "trimY": 765, + "width": 242, + "height": 132, + "rawWidth": 242, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color10.png": { + "ver": "1.0.6", + "uuid": "a4f64335-9bc2-4742-b52c-c7fb29128930", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 752, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color11.png": { + "ver": "1.0.6", + "uuid": "afdc7b7c-0c3f-43cf-8532-af4304724ec2", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1498, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color12.png": { + "ver": "1.0.6", + "uuid": "7a4ed798-76d4-48cb-849e-ebdd2757d87d", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 1, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color13.png": { + "ver": "1.0.6", + "uuid": "66a4a65d-5f4c-4fc3-8ccf-d8e5ea9e038d", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1241, + "trimY": 736, + "width": 363, + "height": 249, + "rawWidth": 363, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color14.png": { + "ver": "1.0.6", + "uuid": "1f1d4c77-cd0e-40c1-996d-8f2952d5903e", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1112, + "trimY": 1, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color15.png": { + "ver": "1.0.6", + "uuid": "ee0a0248-4b3a-4905-b2d3-8e6c1b2786ea", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 987, + "trimY": 740, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color16.png": { + "ver": "1.0.6", + "uuid": "8b8c9ae0-67d7-4141-a5a8-7eb5c361738a", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 615, + "trimY": 1, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color17.png": { + "ver": "1.0.6", + "uuid": "bb05e924-41fd-4cf3-80bd-32927d288c75", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 611, + "trimY": 373, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color18.png": { + "ver": "1.0.6", + "uuid": "59e56081-7877-4ba6-8156-5eb77885df52", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color19.png": { + "ver": "1.0.6", + "uuid": "8cec0b06-5d31-4eef-9aa4-36ac0210be97", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1235, + "trimY": 1472, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color2.png": { + "ver": "1.0.6", + "uuid": "760520e4-6f4a-4778-b5f5-c85ed990726b", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1492, + "trimY": 987, + "width": 126, + "height": 252, + "rawWidth": 126, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color20.png": { + "ver": "1.0.6", + "uuid": "66107652-742a-4053-b677-bacc8b8d67cb", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1483, + "trimY": 1361, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color21.png": { + "ver": "1.0.6", + "uuid": "dbfb78cd-0f07-437a-bf4f-8913fad82f36", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1633, + "trimY": 245, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color22.png": { + "ver": "1.0.6", + "uuid": "a3eb3136-4cb8-41cf-a690-4897df684228", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1483, + "trimY": 1115, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color3.png": { + "ver": "1.0.6", + "uuid": "7df250f1-15de-4868-b3df-376f6e062691", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1365, + "trimY": 1, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color4.png": { + "ver": "1.0.6", + "uuid": "86961592-c07f-4e2a-87a4-56668038af26", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 739, + "trimY": 744, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color5.png": { + "ver": "1.0.6", + "uuid": "c01e1438-c126-4d23-a48b-4fcdafbdd7da", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1633, + "trimY": 1, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color6.png": { + "ver": "1.0.6", + "uuid": "6cb2fc72-7035-491b-b386-cf374174b4f0", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 247, + "trimY": 1125, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color7.png": { + "ver": "1.0.6", + "uuid": "ae7a4b3d-1110-4ec8-9cbb-62aff8c40944", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 977, + "trimY": 1109, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color8.png": { + "ver": "1.0.6", + "uuid": "fa56afe8-0a1b-4174-a6f8-56dafa5c2d4a", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 247, + "trimY": 752, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color9.png": { + "ver": "1.0.6", + "uuid": "19f7191d-00d1-4c9a-8c22-7be1fef9d496", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 855, + "trimY": 371, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color0.png": { + "ver": "1.0.6", + "uuid": "9004b23a-dc2b-49c0-b142-d4550115e808", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1865, + "trimY": 630, + "width": 124, + "height": 133, + "rawWidth": 124, + "rawHeight": 133, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color1.png": { + "ver": "1.0.6", + "uuid": "6b0f29c9-57df-44b7-8872-e5ae19c8eb2a", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1746, + "trimY": 899, + "width": 242, + "height": 132, + "rawWidth": 242, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color10.png": { + "ver": "1.0.6", + "uuid": "3439a168-a989-40fb-a31d-424bfe66c649", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1125, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color11.png": { + "ver": "1.0.6", + "uuid": "369ef201-9b5e-4a67-85ff-197303d26584", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 369, + "trimY": 1498, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color12.png": { + "ver": "1.0.6", + "uuid": "f225fe32-9b14-4e0f-a7ad-bc557000d8c5", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 491, + "trimY": 745, + "width": 246, + "height": 369, + "rawWidth": 246, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color13.png": { + "ver": "1.0.6", + "uuid": "0b29a61e-3a9c-4ee4-a840-43252f122659", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1361, + "trimY": 367, + "width": 363, + "height": 248, + "rawWidth": 363, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color14.png": { + "ver": "1.0.6", + "uuid": "1b0fe2b1-3234-4381-a69d-7d1d3579e99e", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1231, + "trimY": 1106, + "width": 364, + "height": 250, + "rawWidth": 364, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color15.png": { + "ver": "1.0.6", + "uuid": "cb4237e0-565d-464b-a8f1-02a43c464af1", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 982, + "trimY": 1475, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color16.png": { + "ver": "1.0.6", + "uuid": "5e68e561-95a3-4303-afc1-9e2ad9740cdc", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 737, + "trimY": 1486, + "width": 243, + "height": 367, + "rawWidth": 243, + "rawHeight": 367, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color17.png": { + "ver": "1.0.6", + "uuid": "cd176903-fe15-4e13-b391-57cf48bc740a", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 733, + "trimY": 1116, + "width": 242, + "height": 368, + "rawWidth": 242, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color18.png": { + "ver": "1.0.6", + "uuid": "35cc00e5-3bf5-4a0e-a1e1-1a779afd12b0", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 377, + "width": 364, + "height": 373, + "rawWidth": 364, + "rawHeight": 373, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color19.png": { + "ver": "1.0.6", + "uuid": "d3a93b07-d501-447a-83f7-bfbc1d1a375b", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1729, + "trimY": 1607, + "width": 246, + "height": 247, + "rawWidth": 246, + "rawHeight": 247, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color2.png": { + "ver": "1.0.6", + "uuid": "629301fc-0d1a-46a2-a6ae-bbda48cfa783", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1746, + "trimY": 1033, + "width": 126, + "height": 251, + "rawWidth": 126, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color20.png": { + "ver": "1.0.6", + "uuid": "197a4048-fef9-41f5-a92a-8f34d52932ea", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1483, + "trimY": 1607, + "width": 244, + "height": 248, + "rawWidth": 244, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color21.png": { + "ver": "1.0.6", + "uuid": "96e4a59e-765f-468c-87f3-4596963bd0a8", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1611, + "trimY": 494, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color22.png": { + "ver": "1.0.6", + "uuid": "8af575ae-167a-41a9-afbc-9798cf94a6f0", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1736, + "trimY": 1286, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color3.png": { + "ver": "1.0.6", + "uuid": "6bf1e7cf-2c15-48ea-b4e5-7e6255c2e514", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1499, + "trimY": 1, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color4.png": { + "ver": "1.0.6", + "uuid": "2dda3f6e-92a9-4804-bc5a-b5a7642dd24c", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 863, + "trimY": 740, + "width": 122, + "height": 367, + "rawWidth": 122, + "rawHeight": 367, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color5.png": { + "ver": "1.0.6", + "uuid": "87bfd185-b1ac-4c92-a6d2-aaa13a6af739", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1492, + "trimY": 743, + "width": 242, + "height": 252, + "rawWidth": 242, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color6.png": { + "ver": "1.0.6", + "uuid": "925dd4c4-219c-4f8f-8bbf-84a43ee77352", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 490, + "trimY": 1125, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color7.png": { + "ver": "1.0.6", + "uuid": "ef8d85af-e7cf-406d-8651-d884b15d0a12", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1107, + "trimY": 370, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color8.png": { + "ver": "1.0.6", + "uuid": "425edf91-1be3-4888-8675-ff2c79701bd2", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 373, + "width": 242, + "height": 370, + "rawWidth": 242, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color9.png": { + "ver": "1.0.6", + "uuid": "b4a55590-ea72-44e6-98f9-3aa5c242e4ec", + "importer": "sprite-frame", + "rawTextureUuid": "48449cea-32d6-42d9-8499-1fd116440432", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 860, + "trimY": 1, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block4.png b/assets/TextureBlock/block/block4.png new file mode 100644 index 0000000..af5c925 Binary files /dev/null and b/assets/TextureBlock/block/block4.png differ diff --git a/assets/TextureBlock/block/block4.png.meta b/assets/TextureBlock/block/block4.png.meta new file mode 100644 index 0000000..d995c18 --- /dev/null +++ b/assets/TextureBlock/block/block4.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "48449cea-32d6-42d9-8499-1fd116440432", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1990, + "height": 1856, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block5.plist b/assets/TextureBlock/block/block5.plist new file mode 100644 index 0000000..95fc746 --- /dev/null +++ b/assets/TextureBlock/block/block5.plist @@ -0,0 +1,716 @@ + + + + + frames + + 10color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,129} + spriteSourceSize + {122,129} + textureRect + {{1141,1748},{122,129}} + textureRotated + + + 10color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,132} + spriteSourceSize + {242,132} + textureRect + {{988,995},{242,132}} + textureRotated + + + 10color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{1126,1},{244,371}} + textureRotated + + + 10color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{1107,739},{366,254}} + textureRotated + + + 10color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{1119,491},{246,370}} + textureRotated + + + 10color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,249} + spriteSourceSize + {363,249} + textureRect + {{252,1606},{363,249}} + textureRotated + + + 10color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{508,1240},{364,251}} + textureRotated + + + 10color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1,1240},{364,252}} + textureRotated + + + 10color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{1491,734},{243,368}} + textureRotated + + + 10color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{1499,245},{242,369}} + textureRotated + + + 10color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{377,1},{364,374}} + textureRotated + + + 10color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{1253,1244},{246,248}} + textureRotated + + + 10color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,252} + spriteSourceSize + {126,252} + textureRect + {{1148,1494},{126,252}} + textureRotated + + + 10color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1527,1725},{244,249}} + textureRotated + + + 10color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{771,1494},{247,252}} + textureRotated + + + 10color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1501,1479},{244,251}} + textureRotated + + + 10color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{637,1606},{362,132}} + textureRotated + + + 10color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{371,610},{122,368}} + textureRotated + + + 10color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{761,1239},{242,253}} + textureRotated + + + 10color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{374,367},{241,371}} + textureRotated + + + 10color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{367,986},{364,252}} + textureRotated + + + 10color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{1126,247},{242,371}} + textureRotated + + + 10color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{370,734},{367,250}} + textureRotated + + + 9color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,129} + spriteSourceSize + {122,129} + textureRect + {{1017,1748},{122,129}} + textureRotated + + + 9color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,130} + spriteSourceSize + {244,130} + textureRect + {{771,1748},{244,130}} + textureRotated + + + 9color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{753,1},{244,371}} + textureRotated + + + 9color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{739,739},{366,254}} + textureRotated + + + 9color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{747,491},{246,370}} + textureRotated + + + 9color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,249} + spriteSourceSize + {363,249} + textureRect + {{1,1606},{363,249}} + textureRotated + + + 9color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{255,1240},{364,251}} + textureRotated + + + 9color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1,986},{364,252}} + textureRotated + + + 9color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{1499,489},{243,368}} + textureRotated + + + 9color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{1499,1},{242,369}} + textureRotated + + + 9color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,1},{364,374}} + textureRotated + + + 9color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{1005,1244},{246,248}} + textureRotated + + + 9color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,252} + spriteSourceSize + {126,252} + textureRect + {{1020,1494},{126,252}} + textureRotated + + + 9color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1276,1725},{244,249}} + textureRotated + + + 9color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1122,995},{247,252}} + textureRotated + + + 9color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1501,1233},{244,251}} + textureRotated + + + 9color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{503,1606},{362,132}} + textureRotated + + + 9color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{1,610},{122,368}} + textureRotated + + + 9color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{733,995},{242,253}} + textureRotated + + + 9color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{1,367},{241,371}} + textureRotated + + + 9color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{1475,979},{364,252}} + textureRotated + + + 9color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{753,247},{242,371}} + textureRotated + + + 9color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{1,734},{367,250}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + block5.png + size + {1869,1970} + smartupdate + $TexturePacker:SmartUpdate:be14e4849a26c9a3b2e7b24db7f77cc8:13c5cb9a509d700086fce82f6b00db15:c5d130618fc3f8af20f4f47359e7e7d7$ + textureFileName + block5.png + + + diff --git a/assets/TextureBlock/block/block5.plist.meta b/assets/TextureBlock/block/block5.plist.meta new file mode 100644 index 0000000..3474d16 --- /dev/null +++ b/assets/TextureBlock/block/block5.plist.meta @@ -0,0 +1,1071 @@ +{ + "ver": "1.2.6", + "uuid": "4f97daea-3e76-4e62-b579-e2b6b25bffd2", + "importer": "asset", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "size": { + "width": 1869, + "height": 1970 + }, + "type": "Texture Packer", + "subMetas": { + "10color0.png": { + "ver": "1.0.6", + "uuid": "63f40320-b461-40f8-975d-f38da3c4db06", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1141, + "trimY": 1748, + "width": 122, + "height": 129, + "rawWidth": 122, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color1.png": { + "ver": "1.0.6", + "uuid": "80a6246e-c238-4993-9e6c-aabe75c36f37", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 988, + "trimY": 995, + "width": 242, + "height": 132, + "rawWidth": 242, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color10.png": { + "ver": "1.0.6", + "uuid": "7a722a30-d8ee-4995-b35b-486ea49f0923", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1126, + "trimY": 1, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color11.png": { + "ver": "1.0.6", + "uuid": "8fad4d1a-89aa-432f-91dc-f35c88ad34b3", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1107, + "trimY": 739, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color12.png": { + "ver": "1.0.6", + "uuid": "dfbf175c-7d26-4c72-ac66-1738f947485c", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1119, + "trimY": 491, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color13.png": { + "ver": "1.0.6", + "uuid": "6b5801a3-f0f4-458c-91cb-969f9b11aa46", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 252, + "trimY": 1606, + "width": 363, + "height": 249, + "rawWidth": 363, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color14.png": { + "ver": "1.0.6", + "uuid": "a4b90d37-c8dd-4dbe-b2cd-4f862fd0b36d", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 508, + "trimY": 1240, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color15.png": { + "ver": "1.0.6", + "uuid": "9b6a4a65-26d6-437d-9980-3013503333f7", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1240, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color16.png": { + "ver": "1.0.6", + "uuid": "a5253033-86ec-426e-ba55-508d65308e7e", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1491, + "trimY": 734, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color17.png": { + "ver": "1.0.6", + "uuid": "7df1094b-c6e4-4361-8f1b-38a4015dfd82", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1499, + "trimY": 245, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color18.png": { + "ver": "1.0.6", + "uuid": "3ee620cd-9d54-4f7d-bad5-136b184f79f4", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 377, + "trimY": 1, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color19.png": { + "ver": "1.0.6", + "uuid": "2129ef1b-719b-4562-9214-76366b84ceff", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1253, + "trimY": 1244, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color2.png": { + "ver": "1.0.6", + "uuid": "044a8251-2e83-4a71-a7d8-c7a8ee984b28", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1148, + "trimY": 1494, + "width": 126, + "height": 252, + "rawWidth": 126, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color20.png": { + "ver": "1.0.6", + "uuid": "c11c8ea6-e734-4551-b847-e5b28dc74993", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1527, + "trimY": 1725, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color21.png": { + "ver": "1.0.6", + "uuid": "0d03f0a1-73a1-487f-8d1b-8d4ebc0997a0", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 771, + "trimY": 1494, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color22.png": { + "ver": "1.0.6", + "uuid": "31e6de1f-1c6f-470a-aaab-7c8bf341f5e2", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1501, + "trimY": 1479, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color3.png": { + "ver": "1.0.6", + "uuid": "edc8d704-42d2-4b31-a971-0875e3ab3bac", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 637, + "trimY": 1606, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color4.png": { + "ver": "1.0.6", + "uuid": "4bc053fc-ad66-428e-9933-9055ea77a64d", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 371, + "trimY": 610, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color5.png": { + "ver": "1.0.6", + "uuid": "d2eaf066-7163-4141-8bd4-f81168d69837", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 761, + "trimY": 1239, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color6.png": { + "ver": "1.0.6", + "uuid": "509792c9-b71f-43c4-9b47-0d2fc3b6db2e", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 374, + "trimY": 367, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color7.png": { + "ver": "1.0.6", + "uuid": "aa71fce1-8cf9-47f9-af07-4ce7c188b897", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 986, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color8.png": { + "ver": "1.0.6", + "uuid": "bdc41334-d22d-4278-8e91-3c8c3d378867", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1126, + "trimY": 247, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color9.png": { + "ver": "1.0.6", + "uuid": "72db5553-2cc8-4f19-a625-ab049ddf4c6c", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 370, + "trimY": 734, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color0.png": { + "ver": "1.0.6", + "uuid": "744ab82d-9a0f-40e6-b787-a633ddfa4919", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1017, + "trimY": 1748, + "width": 122, + "height": 129, + "rawWidth": 122, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color1.png": { + "ver": "1.0.6", + "uuid": "611cc7d6-67d8-46ba-ae76-12794bbc17a5", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 771, + "trimY": 1748, + "width": 244, + "height": 130, + "rawWidth": 244, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color10.png": { + "ver": "1.0.6", + "uuid": "aef51f67-da34-4d9d-a748-26f0da232b8a", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 753, + "trimY": 1, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color11.png": { + "ver": "1.0.6", + "uuid": "74497d80-6332-4791-b44f-c6cfd545ed59", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 739, + "trimY": 739, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color12.png": { + "ver": "1.0.6", + "uuid": "3d679401-094f-44f0-b546-46f923fc935d", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 747, + "trimY": 491, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color13.png": { + "ver": "1.0.6", + "uuid": "1e390cb6-5d73-46bb-a4fa-46668aa25dcf", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1606, + "width": 363, + "height": 249, + "rawWidth": 363, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color14.png": { + "ver": "1.0.6", + "uuid": "541ff4d6-4919-4f38-8e02-de6d2fd05630", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 255, + "trimY": 1240, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color15.png": { + "ver": "1.0.6", + "uuid": "0dab3a73-5e2e-4d9c-914f-fc574e08f2cf", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 986, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color16.png": { + "ver": "1.0.6", + "uuid": "002b2b49-e4cb-454f-b1a2-64160830731a", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1499, + "trimY": 489, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color17.png": { + "ver": "1.0.6", + "uuid": "eda9075c-28ed-444b-b3c0-1df7e736275f", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1499, + "trimY": 1, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color18.png": { + "ver": "1.0.6", + "uuid": "a8742374-6dbe-4d78-a86b-606233d85592", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color19.png": { + "ver": "1.0.6", + "uuid": "5a8e158a-e3ed-49a7-807b-3456caf45e34", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1005, + "trimY": 1244, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color2.png": { + "ver": "1.0.6", + "uuid": "ed03fc5c-d569-4839-91a0-849afdf18847", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1020, + "trimY": 1494, + "width": 126, + "height": 252, + "rawWidth": 126, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color20.png": { + "ver": "1.0.6", + "uuid": "3701cd78-1ce7-42a4-a5f1-17bac57a7d8f", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1276, + "trimY": 1725, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color21.png": { + "ver": "1.0.6", + "uuid": "28e2ee1e-1140-4a76-b3bf-d3225b9f17fe", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1122, + "trimY": 995, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color22.png": { + "ver": "1.0.6", + "uuid": "3c0690eb-fb3c-44dc-9456-0e092bef093c", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1501, + "trimY": 1233, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color3.png": { + "ver": "1.0.6", + "uuid": "3fd503ba-32d7-4983-91b5-03934a823d3b", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 503, + "trimY": 1606, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color4.png": { + "ver": "1.0.6", + "uuid": "a6f09643-4455-4e54-936f-099c0e1eb10e", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 610, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color5.png": { + "ver": "1.0.6", + "uuid": "440267f7-47ea-4ba2-a5d0-84a73c9eb417", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 733, + "trimY": 995, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color6.png": { + "ver": "1.0.6", + "uuid": "67a0024d-e750-4c79-9d57-adfe3eced49e", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 367, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color7.png": { + "ver": "1.0.6", + "uuid": "a56009b3-8fab-4803-8bd0-a0057a5cbbb1", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1475, + "trimY": 979, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color8.png": { + "ver": "1.0.6", + "uuid": "f21944ad-70ae-42c3-abd9-8e43e79afffb", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 753, + "trimY": 247, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color9.png": { + "ver": "1.0.6", + "uuid": "70e83f94-7f02-4826-ace7-792ee7112737", + "importer": "sprite-frame", + "rawTextureUuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 734, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block5.png b/assets/TextureBlock/block/block5.png new file mode 100644 index 0000000..ddfbdd6 Binary files /dev/null and b/assets/TextureBlock/block/block5.png differ diff --git a/assets/TextureBlock/block/block5.png.meta b/assets/TextureBlock/block/block5.png.meta new file mode 100644 index 0000000..bf9bcab --- /dev/null +++ b/assets/TextureBlock/block/block5.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "8be8182e-f38a-459c-875e-8b4c5d4c53ef", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1869, + "height": 1970, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block6.plist b/assets/TextureBlock/block/block6.plist new file mode 100644 index 0000000..798a60d --- /dev/null +++ b/assets/TextureBlock/block/block6.plist @@ -0,0 +1,371 @@ + + + + + frames + + 0color0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,129} + spriteSourceSize + {122,129} + textureRect + {{1364,367},{122,129}} + textureRotated + + + 0color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,130} + spriteSourceSize + {244,130} + textureRect + {{1249,498},{244,130}} + textureRotated + + + 0color10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,371} + spriteSourceSize + {244,371} + textureRect + {{1,377},{244,371}} + textureRotated + + + 0color11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {366,254} + spriteSourceSize + {366,254} + textureRect + {{739,370},{366,254}} + textureRotated + + + 0color12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,370} + spriteSourceSize + {246,370} + textureRect + {{491,374},{246,370}} + textureRotated + + + 0color13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,249} + spriteSourceSize + {363,249} + textureRect + {{1493,1},{363,249}} + textureRotated + + + 0color14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,251} + spriteSourceSize + {364,251} + textureRect + {{1240,1},{364,251}} + textureRotated + + + 0color15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{995,367},{364,252}} + textureRotated + + + 0color16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,368} + spriteSourceSize + {243,368} + textureRect + {{1,750},{243,368}} + textureRotated + + + 0color17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{371,750},{242,369}} + textureRotated + + + 0color18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,374} + spriteSourceSize + {364,374} + textureRect + {{1,1},{364,374}} + textureRotated + + + 0color19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,248} + spriteSourceSize + {246,248} + textureRect + {{1610,632},{246,248}} + textureRotated + + + 0color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {127,254} + spriteSourceSize + {127,254} + textureRect + {{742,738},{127,254}} + textureRotated + + + 0color20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,249} + spriteSourceSize + {244,249} + textureRect + {{1364,632},{244,249}} + textureRotated + + + 0color21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {247,252} + spriteSourceSize + {247,252} + textureRect + {{1115,733},{247,252}} + textureRotated + + + 0color22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,251} + spriteSourceSize + {244,251} + textureRect + {{1495,386},{244,251}} + textureRotated + + + 0color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,132} + spriteSourceSize + {362,132} + textureRect + {{1493,252},{362,132}} + textureRotated + + + 0color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,368} + spriteSourceSize + {122,368} + textureRect + {{610,1},{122,368}} + textureRotated + + + 0color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,253} + spriteSourceSize + {242,253} + textureRect + {{871,738},{242,253}} + textureRotated + + + 0color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,371} + spriteSourceSize + {241,371} + textureRect + {{367,1},{241,371}} + textureRotated + + + 0color7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,252} + spriteSourceSize + {364,252} + textureRect + {{986,1},{364,252}} + textureRotated + + + 0color8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,371} + spriteSourceSize + {242,371} + textureRect + {{247,377},{242,371}} + textureRotated + + + 0color9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {367,250} + spriteSourceSize + {367,250} + textureRect + {{734,1},{367,250}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + block6.png + size + {1857,994} + smartupdate + $TexturePacker:SmartUpdate:99bd26bd7ff0e9aa157d7979f357f6de:307103781d40fdc2b3f32f556a0ddc23:311a5ee8e5275e9162079c3fdb057572$ + textureFileName + block6.png + + + diff --git a/assets/TextureBlock/block/block6.plist.meta b/assets/TextureBlock/block/block6.plist.meta new file mode 100644 index 0000000..4ab8bcf --- /dev/null +++ b/assets/TextureBlock/block/block6.plist.meta @@ -0,0 +1,542 @@ +{ + "ver": "1.2.6", + "uuid": "9e768017-b9e7-4003-94dc-2f90936f098f", + "importer": "asset", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "size": { + "width": 1857, + "height": 994 + }, + "type": "Texture Packer", + "subMetas": { + "0color0.png": { + "ver": "1.0.6", + "uuid": "183e015e-4b26-46d6-a24a-a973de24d69b", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1364, + "trimY": 367, + "width": 122, + "height": 129, + "rawWidth": 122, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color1.png": { + "ver": "1.0.6", + "uuid": "5ae1a744-5ac4-4b82-bdd0-f4b2b36572a8", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1249, + "trimY": 498, + "width": 244, + "height": 130, + "rawWidth": 244, + "rawHeight": 130, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color10.png": { + "ver": "1.0.6", + "uuid": "1b0ce2f8-bc9b-4074-a32f-25b693d63f97", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 377, + "width": 244, + "height": 371, + "rawWidth": 244, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color11.png": { + "ver": "1.0.6", + "uuid": "060c0559-0960-4591-8cd9-ef6f57da75c5", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 739, + "trimY": 370, + "width": 366, + "height": 254, + "rawWidth": 366, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color12.png": { + "ver": "1.0.6", + "uuid": "b5960400-580a-4141-86aa-de3d14e38877", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 491, + "trimY": 374, + "width": 246, + "height": 370, + "rawWidth": 246, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color13.png": { + "ver": "1.0.6", + "uuid": "3fab1dbb-d8cb-42e2-a3e5-2f0fce469d8e", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1493, + "trimY": 1, + "width": 363, + "height": 249, + "rawWidth": 363, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color14.png": { + "ver": "1.0.6", + "uuid": "19ce47d4-31ca-4f15-bc4b-c9ffc683aad7", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1240, + "trimY": 1, + "width": 364, + "height": 251, + "rawWidth": 364, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color15.png": { + "ver": "1.0.6", + "uuid": "56c2c73c-1f6d-4dd7-84a0-f5e7ee28e33c", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 995, + "trimY": 367, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color16.png": { + "ver": "1.0.6", + "uuid": "4e41f9d6-f4c2-4599-94b7-4074ee7b5ecb", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 750, + "width": 243, + "height": 368, + "rawWidth": 243, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color17.png": { + "ver": "1.0.6", + "uuid": "832a151c-5ae8-444f-8e2a-dafca807d2a0", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 371, + "trimY": 750, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color18.png": { + "ver": "1.0.6", + "uuid": "9c4c4882-9a41-46c8-bb96-1c235b84eb84", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 364, + "height": 374, + "rawWidth": 364, + "rawHeight": 374, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color19.png": { + "ver": "1.0.6", + "uuid": "54dd981d-b215-44fd-8d1d-d4d5c6b9af3c", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1610, + "trimY": 632, + "width": 246, + "height": 248, + "rawWidth": 246, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color2.png": { + "ver": "1.0.6", + "uuid": "91ee9c5a-07c2-42d7-99cf-702f55fbadef", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 742, + "trimY": 738, + "width": 127, + "height": 254, + "rawWidth": 127, + "rawHeight": 254, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color20.png": { + "ver": "1.0.6", + "uuid": "c3325612-6027-45d5-8be0-38a8079f7fc9", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1364, + "trimY": 632, + "width": 244, + "height": 249, + "rawWidth": 244, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color21.png": { + "ver": "1.0.6", + "uuid": "30d5f07b-3542-4ed1-9a67-15a18b1ca8d3", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1115, + "trimY": 733, + "width": 247, + "height": 252, + "rawWidth": 247, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color22.png": { + "ver": "1.0.6", + "uuid": "f8700514-c0ab-43b7-8db8-d80632941807", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1495, + "trimY": 386, + "width": 244, + "height": 251, + "rawWidth": 244, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color3.png": { + "ver": "1.0.6", + "uuid": "7d69eb52-f339-408e-9b28-7430b22e5475", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1493, + "trimY": 252, + "width": 362, + "height": 132, + "rawWidth": 362, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color4.png": { + "ver": "1.0.6", + "uuid": "86ec3ccc-ffb9-468f-9075-c752fe40c6d9", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 610, + "trimY": 1, + "width": 122, + "height": 368, + "rawWidth": 122, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color5.png": { + "ver": "1.0.6", + "uuid": "65246d15-bbc4-488f-89e8-5fae193dc04d", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 871, + "trimY": 738, + "width": 242, + "height": 253, + "rawWidth": 242, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color6.png": { + "ver": "1.0.6", + "uuid": "a68ebaa3-4f6d-4b94-af62-c0bf91105991", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 367, + "trimY": 1, + "width": 241, + "height": 371, + "rawWidth": 241, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color7.png": { + "ver": "1.0.6", + "uuid": "fc87f8d4-6a4f-47c8-ad68-903d05fbf84c", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 986, + "trimY": 1, + "width": 364, + "height": 252, + "rawWidth": 364, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color8.png": { + "ver": "1.0.6", + "uuid": "3d20c34c-7107-4d4a-9863-775f60ccafa0", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 247, + "trimY": 377, + "width": 242, + "height": 371, + "rawWidth": 242, + "rawHeight": 371, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "0color9.png": { + "ver": "1.0.6", + "uuid": "ed9660df-f338-4dba-b5dd-d302c693cc25", + "importer": "sprite-frame", + "rawTextureUuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 734, + "trimY": 1, + "width": 367, + "height": 250, + "rawWidth": 367, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/block6.png b/assets/TextureBlock/block/block6.png new file mode 100644 index 0000000..a3e4f04 Binary files /dev/null and b/assets/TextureBlock/block/block6.png differ diff --git a/assets/TextureBlock/block/block6.png.meta b/assets/TextureBlock/block/block6.png.meta new file mode 100644 index 0000000..65916c2 --- /dev/null +++ b/assets/TextureBlock/block/block6.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "8bcf2a43-1eed-40d0-914f-06ced6723204", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1857, + "height": 994, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/door.plist b/assets/TextureBlock/block/door.plist new file mode 100644 index 0000000..38907c5 --- /dev/null +++ b/assets/TextureBlock/block/door.plist @@ -0,0 +1,1346 @@ + + + + + frames + + 10color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{931,848},{138,69}} + textureRotated + + + 10color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{324,908},{258,69}} + textureRotated + + + 10color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{571,285},{378,69}} + textureRotated + + + 10color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{846,722},{61,146}} + textureRotated + + + 10color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,266} + spriteSourceSize + {61,266} + textureRect + {{395,908},{61,266}} + textureRotated + + + 10color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,386} + spriteSourceSize + {61,386} + textureRect + {{191,356},{61,386}} + textureRotated + + + 1color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{647,774},{138,69}} + textureRotated + + + 1color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{316,490},{258,69}} + textureRotated + + + 1color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{191,1},{378,69}} + textureRotated + + + 1color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{532,1030},{61,146}} + textureRotated + + + 1color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{579,356},{61,267}} + textureRotated + + + 1color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{1,390},{61,387}} + textureRotated + + + 2color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{848,356},{138,69}} + textureRotated + + + 2color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{577,419},{258,69}} + textureRotated + + + 2color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{191,72},{378,69}} + textureRotated + + + 2color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{836,491},{61,146}} + textureRotated + + + 2color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,266} + spriteSourceSize + {61,266} + textureRect + {{316,561},{61,266}} + textureRotated + + + 2color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,386} + spriteSourceSize + {61,386} + textureRect + {{64,779},{61,386}} + textureRotated + + + 3color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{851,554},{138,69}} + textureRotated + + + 3color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{576,490},{258,69}} + textureRotated + + + 3color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{571,1},{378,69}} + textureRotated + + + 3color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{851,625},{61,146}} + textureRotated + + + 3color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{190,419},{61,267}} + textureRotated + + + 3color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{65,1},{61,387}} + textureRotated + + + 4color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{580,879},{138,69}} + textureRotated + + + 4color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{379,561},{258,69}} + textureRotated + + + 4color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{191,143},{378,69}} + textureRotated + + + 4color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{595,1021},{61,146}} + textureRotated + + + 4color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{190,688},{61,267}} + textureRotated + + + 4color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{1,779},{61,387}} + textureRotated + + + 5color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{580,950},{138,69}} + textureRotated + + + 5color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{379,632},{258,69}} + textureRotated + + + 5color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{571,72},{378,69}} + textureRotated + + + 5color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{658,1021},{61,146}} + textureRotated + + + 5color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,266} + spriteSourceSize + {61,266} + textureRect + {{379,774},{61,266}} + textureRotated + + + 5color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,386} + spriteSourceSize + {61,386} + textureRect + {{127,390},{61,386}} + textureRotated + + + 6color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{720,879},{138,69}} + textureRotated + + + 6color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{379,703},{258,69}} + textureRotated + + + 6color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{191,214},{378,69}} + textureRotated + + + 6color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{721,1019},{61,146}} + textureRotated + + + 6color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{253,419},{61,267}} + textureRotated + + + 6color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{64,390},{61,387}} + textureRotated + + + 7color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{791,848},{138,69}} + textureRotated + + + 7color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{190,957},{258,69}} + textureRotated + + + 7color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{571,143},{378,69}} + textureRotated + + + 7color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,147} + spriteSourceSize + {62,147} + textureRect + {{837,427},{62,147}} + textureRotated + + + 7color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,267} + spriteSourceSize + {62,267} + textureRect + {{951,1},{62,267}} + textureRotated + + + 7color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,387} + spriteSourceSize + {62,387} + textureRect + {{1,1},{62,387}} + textureRotated + + + 8color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{791,919},{138,69}} + textureRotated + + + 8color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {259,69} + spriteSourceSize + {259,69} + textureRect + {{316,419},{259,69}} + textureRotated + + + 8color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{191,285},{378,69}} + textureRotated + + + 8color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,145} + spriteSourceSize + {61,145} + textureRect + {{917,990},{61,145}} + textureRotated + + + 8color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,266} + spriteSourceSize + {61,266} + textureRect + {{261,957},{61,266}} + textureRotated + + + 8color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,386} + spriteSourceSize + {61,386} + textureRect + {{127,778},{61,386}} + textureRotated + + + 9color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{846,990},{138,69}} + textureRotated + + + 9color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{316,837},{258,69}} + textureRotated + + + 9color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{571,214},{378,69}} + textureRotated + + + 9color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {60,146} + spriteSourceSize + {60,146} + textureRect + {{784,1019},{60,146}} + textureRotated + + + 9color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{253,688},{61,267}} + textureRotated + + + 9color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{128,1},{61,387}} + textureRotated + + + dikuai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{458,908},{120,120}} + textureRotated + + + downLeft.png + + aliases + + spriteOffset + {-34,-11} + spriteSize + {76,124} + spriteSourceSize + {146,146} + textureRect + {{773,561},{76,124}} + textureRotated + + + downRight.png + + aliases + + spriteOffset + {33,-12} + spriteSize + {70,122} + spriteSourceSize + {146,146} + textureRect + {{735,1167},{70,122}} + textureRotated + + + leftDown.png + + aliases + + spriteOffset + {-1,-37} + spriteSize + {140,72} + spriteSourceSize + {146,146} + textureRect + {{639,700},{140,72}} + textureRotated + + + leftUp.png + + aliases + + spriteOffset + {-39,16} + spriteSize + {64,114} + spriteSourceSize + {146,146} + textureRect + {{466,1178},{64,114}} + textureRotated + + + rightDown.png + + aliases + + spriteOffset + {-1,-32} + spriteSize + {140,82} + spriteSourceSize + {146,146} + textureRect + {{1,1168},{140,82}} + textureRotated + + + rightUp.png + + aliases + + spriteOffset + {36,17} + spriteSize + {64,108} + spriteSourceSize + {146,146} + textureRect + {{895,1137},{64,108}} + textureRotated + + + shu_zl1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {9,42} + spriteSourceSize + {9,42} + textureRect + {{980,1110},{9,42}} + textureRotated + + + shu_zl1_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,34} + spriteSourceSize + {58,34} + textureRect + {{951,270},{58,34}} + textureRotated + + + shu_zl1_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {118,34} + spriteSourceSize + {118,34} + textureRect + {{859,1130},{118,34}} + textureRotated + + + shu_zl1_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {178,34} + spriteSourceSize + {178,34} + textureRect + {{988,270},{178,34}} + textureRotated + + + shu_zl2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,10} + spriteSourceSize + {40,10} + textureRect + {{582,1240},{40,10}} + textureRotated + + + shu_zl2_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,54} + spriteSourceSize + {32,54} + textureRect + {{961,1198},{32,54}} + textureRotated + + + shu_zl2_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,59} + spriteSourceSize + {32,59} + textureRect + {{961,1137},{32,59}} + textureRotated + + + shu_zl2_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,114} + spriteSourceSize + {32,114} + textureRect + {{143,1217},{32,114}} + textureRotated + + + shu_zl2_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,120} + spriteSourceSize + {32,120} + textureRect + {{980,988},{32,120}} + textureRotated + + + shu_zl2_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,175} + spriteSourceSize + {32,175} + textureRect + {{846,688},{32,175}} + textureRotated + + + shu_zl2_33.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,180} + spriteSourceSize + {32,180} + textureRect + {{576,845},{32,180}} + textureRotated + + + turn_arrow.png + + aliases + + spriteOffset + {0,0} + spriteSize + {36,24} + spriteSourceSize + {36,24} + textureRect + {{986,450},{36,24}} + textureRotated + + + turn_bg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {80,54} + spriteSourceSize + {80,54} + textureRect + {{781,687},{80,54}} + textureRotated + + + upLeft.png + + aliases + + spriteOffset + {-1,34} + spriteSize + {140,72} + spriteSourceSize + {146,146} + textureRect + {{458,1030},{140,72}} + textureRotated + + + upRight.png + + aliases + + spriteOffset + {-2,35} + spriteSize + {140,72} + spriteSourceSize + {146,146} + textureRect + {{324,1178},{140,72}} + textureRotated + + + wal_up.png + + aliases + + spriteOffset + {-39,16} + spriteSize + {64,114} + spriteSourceSize + {146,146} + textureRect + {{466,1178},{64,114}} + textureRotated + + + wall1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{595,1169},{138,69}} + textureRotated + + + wall2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{787,785},{61,146}} + textureRotated + + + wall7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,69} + spriteSourceSize + {61,69} + textureRect + {{935,785},{61,69}} + textureRotated + + + wall_down.png + + aliases + + spriteOffset + {-1,-37} + spriteSize + {140,72} + spriteSourceSize + {146,146} + textureRect + {{639,700},{140,72}} + textureRotated + + + zhangai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {132,137} + spriteSourceSize + {132,137} + textureRect + {{639,561},{132,137}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + door.png + size + {1023,1251} + smartupdate + $TexturePacker:SmartUpdate:2eded28d713241c7369b069660a8de3a:6cea746c78d041116de22154e9ef312b:db7a2f380db9915dc051ce2c1170bc84$ + textureFileName + door.png + + + diff --git a/assets/TextureBlock/block/door.plist.meta b/assets/TextureBlock/block/door.plist.meta new file mode 100644 index 0000000..a70ff6f --- /dev/null +++ b/assets/TextureBlock/block/door.plist.meta @@ -0,0 +1,2037 @@ +{ + "ver": "1.2.6", + "uuid": "f2c494b7-b6df-488f-b194-358235b0f180", + "importer": "asset", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "size": { + "width": 1023, + "height": 1251 + }, + "type": "Texture Packer", + "subMetas": { + "10color1.png": { + "ver": "1.0.6", + "uuid": "75019496-56db-4388-839b-692b818c9536", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 931, + "trimY": 848, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color2.png": { + "ver": "1.0.6", + "uuid": "5a05d5db-c9a2-4104-9b22-f0c27522eef2", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 324, + "trimY": 908, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color3.png": { + "ver": "1.0.6", + "uuid": "f01f5cd1-2710-4c47-bea7-fa4354035e9c", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 571, + "trimY": 285, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color4.png": { + "ver": "1.0.6", + "uuid": "852dd294-f52d-48fc-a402-220a72e065b3", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 846, + "trimY": 722, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color5.png": { + "ver": "1.0.6", + "uuid": "e0b7f7b5-65b9-4654-9e4f-b2869eeccc87", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 395, + "trimY": 908, + "width": 61, + "height": 266, + "rawWidth": 61, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color6.png": { + "ver": "1.0.6", + "uuid": "3fa8d4f5-c735-4349-aaf0-c66ac453466b", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 356, + "width": 61, + "height": 386, + "rawWidth": 61, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color1.png": { + "ver": "1.0.6", + "uuid": "8adc133c-5d15-4d45-8877-757bb72a216a", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 647, + "trimY": 774, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color2.png": { + "ver": "1.0.6", + "uuid": "45530c74-b0f0-4718-a712-bb10744970d6", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 316, + "trimY": 490, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color3.png": { + "ver": "1.0.6", + "uuid": "74b4b314-b185-49d6-8068-37070acb4f18", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 1, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color4.png": { + "ver": "1.0.6", + "uuid": "476029aa-95b8-445e-aae1-11eaf3e36327", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 532, + "trimY": 1030, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color5.png": { + "ver": "1.0.6", + "uuid": "0b0b6648-1117-4d63-becf-edfa5a219f5a", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 579, + "trimY": 356, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color6.png": { + "ver": "1.0.6", + "uuid": "dd56e9d0-fe39-40ce-9e87-af10b934b562", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 390, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color1.png": { + "ver": "1.0.6", + "uuid": "ea1427f4-6a26-4fb4-91fe-87deabce00a9", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 356, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color2.png": { + "ver": "1.0.6", + "uuid": "a430acd2-b5ab-45c3-9533-a3b4cac6d6f1", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 577, + "trimY": 419, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color3.png": { + "ver": "1.0.6", + "uuid": "eeef5c2e-0191-4b89-bec4-76eee43c20a0", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 72, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color4.png": { + "ver": "1.0.6", + "uuid": "29ab0b95-5112-4d6d-bb18-6cea1ac905a8", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 836, + "trimY": 491, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color5.png": { + "ver": "1.0.6", + "uuid": "54b25c92-b8a7-4a17-bd84-fc8868b5e3fe", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 316, + "trimY": 561, + "width": 61, + "height": 266, + "rawWidth": 61, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color6.png": { + "ver": "1.0.6", + "uuid": "a3fdf979-0c4c-438a-a045-ba0f732ea2ce", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 64, + "trimY": 779, + "width": 61, + "height": 386, + "rawWidth": 61, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color1.png": { + "ver": "1.0.6", + "uuid": "65534c5f-f57b-4e47-9eeb-3e31f7ca542f", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 851, + "trimY": 554, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color2.png": { + "ver": "1.0.6", + "uuid": "0ba9895c-ac6d-4563-9aa3-c73b3ef8cf8e", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 576, + "trimY": 490, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color3.png": { + "ver": "1.0.6", + "uuid": "26ce9fc5-f726-470b-893b-348861d9acb1", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 571, + "trimY": 1, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color4.png": { + "ver": "1.0.6", + "uuid": "d8d0b18d-742d-4fe1-9bd3-0ea1c8447aaa", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 851, + "trimY": 625, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color5.png": { + "ver": "1.0.6", + "uuid": "bcb70421-2db7-4d09-b2ae-1bf031b45820", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 190, + "trimY": 419, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color6.png": { + "ver": "1.0.6", + "uuid": "e6aa3ad8-01b2-481f-a6e6-48e619504e90", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 1, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color1.png": { + "ver": "1.0.6", + "uuid": "7a90b579-b4a4-47db-b4c5-eeed50b7e962", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 580, + "trimY": 879, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color2.png": { + "ver": "1.0.6", + "uuid": "e84b90bd-9672-4cf9-bb40-9fba8c03be42", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 379, + "trimY": 561, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color3.png": { + "ver": "1.0.6", + "uuid": "e3dc4b10-b1ba-478d-bf98-9b9a1f7b6584", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 143, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color4.png": { + "ver": "1.0.6", + "uuid": "948169cf-0767-4613-91c5-37d44376cbb5", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 595, + "trimY": 1021, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color5.png": { + "ver": "1.0.6", + "uuid": "4e17f3ef-a4ea-4bcd-a6ea-42d7e1bfcbb4", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 190, + "trimY": 688, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color6.png": { + "ver": "1.0.6", + "uuid": "9a099d97-7ec1-4837-ae00-4637526a15f9", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 779, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color1.png": { + "ver": "1.0.6", + "uuid": "bdf81564-0eb3-4cf1-8a15-33b35f35dd85", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 580, + "trimY": 950, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color2.png": { + "ver": "1.0.6", + "uuid": "23efce5f-ec77-477c-b210-f403b59385e2", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 379, + "trimY": 632, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color3.png": { + "ver": "1.0.6", + "uuid": "78b1320d-3f60-4879-9ad8-7d61017d96ce", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 571, + "trimY": 72, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color4.png": { + "ver": "1.0.6", + "uuid": "5f6c4ceb-201f-4f58-891e-06bef24dacfa", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 658, + "trimY": 1021, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color5.png": { + "ver": "1.0.6", + "uuid": "8802233e-f77c-4c62-843d-6ea08f0f1d7c", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 379, + "trimY": 774, + "width": 61, + "height": 266, + "rawWidth": 61, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color6.png": { + "ver": "1.0.6", + "uuid": "a326e9a9-339b-45b1-be98-7c3701402d16", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 127, + "trimY": 390, + "width": 61, + "height": 386, + "rawWidth": 61, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color1.png": { + "ver": "1.0.6", + "uuid": "29c99ea8-4e3f-4e09-9454-a35b84625fba", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 720, + "trimY": 879, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color2.png": { + "ver": "1.0.6", + "uuid": "d3168edd-2454-495f-b133-143880b69939", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 379, + "trimY": 703, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color3.png": { + "ver": "1.0.6", + "uuid": "a50a6f0b-9ac4-40f6-8a3e-922f3cd42c72", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 214, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color4.png": { + "ver": "1.0.6", + "uuid": "1d455e6e-2d68-49d8-a073-69f0db809018", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 721, + "trimY": 1019, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color5.png": { + "ver": "1.0.6", + "uuid": "a454b648-3dc7-4056-9db5-4fde209633a5", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 253, + "trimY": 419, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color6.png": { + "ver": "1.0.6", + "uuid": "89028185-c4e7-4e18-b770-c6a97154e7aa", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 64, + "trimY": 390, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color1.png": { + "ver": "1.0.6", + "uuid": "3e31e6d0-ee24-4c03-bbd1-7617faea33c3", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 791, + "trimY": 848, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color2.png": { + "ver": "1.0.6", + "uuid": "00e6c71c-a4e3-46f0-beba-44d7c1ef8c81", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 190, + "trimY": 957, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color3.png": { + "ver": "1.0.6", + "uuid": "fec2602d-0713-42a8-a157-bf9f11321a14", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 571, + "trimY": 143, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color4.png": { + "ver": "1.0.6", + "uuid": "d2426d98-46d6-4ab1-82b9-aec6277d8654", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 837, + "trimY": 427, + "width": 62, + "height": 147, + "rawWidth": 62, + "rawHeight": 147, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color5.png": { + "ver": "1.0.6", + "uuid": "9496ee52-8a41-4cfc-bd1e-251f1b93cf1f", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 951, + "trimY": 1, + "width": 62, + "height": 267, + "rawWidth": 62, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color6.png": { + "ver": "1.0.6", + "uuid": "b20cff71-8136-4d07-882e-5244f8261fb6", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 62, + "height": 387, + "rawWidth": 62, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color1.png": { + "ver": "1.0.6", + "uuid": "8a7f8703-1ddc-442c-bd37-c5a133734056", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 791, + "trimY": 919, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color2.png": { + "ver": "1.0.6", + "uuid": "1d390015-698f-499e-b40d-7c13721f1955", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 316, + "trimY": 419, + "width": 259, + "height": 69, + "rawWidth": 259, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color3.png": { + "ver": "1.0.6", + "uuid": "fb7b4706-0f39-4680-9152-904314affa7e", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 285, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color4.png": { + "ver": "1.0.6", + "uuid": "189bbe60-225c-4db0-bd01-4e51891a54a6", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 917, + "trimY": 990, + "width": 61, + "height": 145, + "rawWidth": 61, + "rawHeight": 145, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color5.png": { + "ver": "1.0.6", + "uuid": "bb48d06a-e528-485e-a4f1-da344224193a", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 957, + "width": 61, + "height": 266, + "rawWidth": 61, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color6.png": { + "ver": "1.0.6", + "uuid": "86674ba8-e47b-486a-aa65-831585d10bde", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 127, + "trimY": 778, + "width": 61, + "height": 386, + "rawWidth": 61, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color1.png": { + "ver": "1.0.6", + "uuid": "cf671e9f-06c5-4fbc-9745-bdb6e18c2b78", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 846, + "trimY": 990, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color2.png": { + "ver": "1.0.6", + "uuid": "93feaf7e-c547-4771-a85d-a9d9f7700975", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 316, + "trimY": 837, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color3.png": { + "ver": "1.0.6", + "uuid": "67bdc6ac-9967-42a2-9177-3e5028e670e3", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 571, + "trimY": 214, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color4.png": { + "ver": "1.0.6", + "uuid": "ed20203f-2fc0-45e2-909b-8fd933915e11", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 784, + "trimY": 1019, + "width": 60, + "height": 146, + "rawWidth": 60, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color5.png": { + "ver": "1.0.6", + "uuid": "69287072-6290-4628-b9d8-3e73d7de073a", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 253, + "trimY": 688, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color6.png": { + "ver": "1.0.6", + "uuid": "c2983ca1-bd91-4259-9483-e7a7b360dfc5", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 128, + "trimY": 1, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dikuai.png": { + "ver": "1.0.6", + "uuid": "0fc5b868-4b5d-45a5-8ef7-3967d5bf406a", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 458, + "trimY": 908, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "downLeft.png": { + "ver": "1.0.6", + "uuid": "bd8e35a7-f384-4898-9af4-58e6fcea5c1c", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -34, + "offsetY": -11, + "trimX": 773, + "trimY": 561, + "width": 76, + "height": 124, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "downRight.png": { + "ver": "1.0.6", + "uuid": "80f35751-d652-4086-8d03-c7d67a2157ed", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 33, + "offsetY": -12, + "trimX": 735, + "trimY": 1167, + "width": 70, + "height": 122, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "leftDown.png": { + "ver": "1.0.6", + "uuid": "66cdd4ba-4c1c-4221-b6c3-7e4b6f3d3000", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -37, + "trimX": 639, + "trimY": 700, + "width": 140, + "height": 72, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "leftUp.png": { + "ver": "1.0.6", + "uuid": "180c4165-112b-4a25-8631-f431f5abd9d1", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -39, + "offsetY": 16, + "trimX": 466, + "trimY": 1178, + "width": 64, + "height": 114, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rightDown.png": { + "ver": "1.0.6", + "uuid": "2ba1f715-79aa-4ceb-8590-ea2271e76f71", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -32, + "trimX": 1, + "trimY": 1168, + "width": 140, + "height": 82, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rightUp.png": { + "ver": "1.0.6", + "uuid": "cfcc36af-42b3-41a5-874e-bb87f2ad3af1", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 36, + "offsetY": 17, + "trimX": 895, + "trimY": 1137, + "width": 64, + "height": 108, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl1.png": { + "ver": "1.0.6", + "uuid": "4c2ac211-077a-4783-92b7-42964571ebfe", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 980, + "trimY": 1110, + "width": 9, + "height": 42, + "rawWidth": 9, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl1_1.png": { + "ver": "1.0.6", + "uuid": "1f53a670-99ab-4671-932f-3227940876cc", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 951, + "trimY": 270, + "width": 58, + "height": 34, + "rawWidth": 58, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl1_2.png": { + "ver": "1.0.6", + "uuid": "b48abaaa-d7d1-45b6-8a24-8f259163122a", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 859, + "trimY": 1130, + "width": 118, + "height": 34, + "rawWidth": 118, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl1_3.png": { + "ver": "1.0.6", + "uuid": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 988, + "trimY": 270, + "width": 178, + "height": 34, + "rawWidth": 178, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2.png": { + "ver": "1.0.6", + "uuid": "680b8e19-c884-49e3-aa0e-fdb0e9f4e061", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 582, + "trimY": 1240, + "width": 40, + "height": 10, + "rawWidth": 40, + "rawHeight": 10, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_1.png": { + "ver": "1.0.6", + "uuid": "7966aa2d-612f-4bab-bd98-d9743d8203fe", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 961, + "trimY": 1198, + "width": 32, + "height": 54, + "rawWidth": 32, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_11.png": { + "ver": "1.0.6", + "uuid": "784140b2-0881-4335-ba52-e27f24991942", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 961, + "trimY": 1137, + "width": 32, + "height": 59, + "rawWidth": 32, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_2.png": { + "ver": "1.0.6", + "uuid": "02053870-708a-4c01-96cd-11e6c4b9acf1", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 143, + "trimY": 1217, + "width": 32, + "height": 114, + "rawWidth": 32, + "rawHeight": 114, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_22.png": { + "ver": "1.0.6", + "uuid": "08f63027-4526-4af6-bc88-fc64bc154164", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 980, + "trimY": 988, + "width": 32, + "height": 120, + "rawWidth": 32, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_3.png": { + "ver": "1.0.6", + "uuid": "6f1612bd-e63f-4b4a-90a7-3a0965332ad4", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 846, + "trimY": 688, + "width": 32, + "height": 175, + "rawWidth": 32, + "rawHeight": 175, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_33.png": { + "ver": "1.0.6", + "uuid": "0e6cd812-d750-40fe-90f2-a165be98989a", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 576, + "trimY": 845, + "width": 32, + "height": 180, + "rawWidth": 32, + "rawHeight": 180, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "turn_arrow.png": { + "ver": "1.0.6", + "uuid": "fdcd9e80-10cf-423a-911b-91b66f05791a", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 986, + "trimY": 450, + "width": 36, + "height": 24, + "rawWidth": 36, + "rawHeight": 24, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "turn_bg.png": { + "ver": "1.0.6", + "uuid": "fb792d6a-0401-4ff6-8a50-c7934b38fecb", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 781, + "trimY": 687, + "width": 80, + "height": 54, + "rawWidth": 80, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 30, + "borderRight": 30, + "spriteType": "normal", + "subMetas": {} + }, + "upLeft.png": { + "ver": "1.0.6", + "uuid": "80fadb18-45ad-44f2-8fb0-ab08d70c375d", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 34, + "trimX": 458, + "trimY": 1030, + "width": 140, + "height": 72, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "upRight.png": { + "ver": "1.0.6", + "uuid": "a77a1165-4c89-4e9c-af8c-f3b0e16855bd", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -2, + "offsetY": 35, + "trimX": 324, + "trimY": 1178, + "width": 140, + "height": 72, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wal_up.png": { + "ver": "1.0.6", + "uuid": "d7bf7128-c00c-40c3-8cb9-361ae6f0eb8f", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -39, + "offsetY": 16, + "trimX": 466, + "trimY": 1178, + "width": 64, + "height": 114, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall1.png": { + "ver": "1.0.6", + "uuid": "6db2aafd-c221-4be9-a20b-5bb361fe22ef", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 595, + "trimY": 1169, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall2.png": { + "ver": "1.0.6", + "uuid": "4f65ed94-5d59-48ce-b94f-e199044365cf", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 787, + "trimY": 785, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall7.png": { + "ver": "1.0.6", + "uuid": "11ca11bf-c649-466a-aa87-a88c13ef46ca", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 935, + "trimY": 785, + "width": 61, + "height": 69, + "rawWidth": 61, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall_down.png": { + "ver": "1.0.6", + "uuid": "0f8f8b47-2b3d-44e1-a0ca-f5a0f39ccb4f", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -37, + "trimX": 639, + "trimY": 700, + "width": 140, + "height": 72, + "rawWidth": 146, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhangai.png": { + "ver": "1.0.6", + "uuid": "ef7dfa4e-4d74-4723-b2b9-4dd028f6bbfe", + "importer": "sprite-frame", + "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 639, + "trimY": 561, + "width": 132, + "height": 137, + "rawWidth": 132, + "rawHeight": 137, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/door.png b/assets/TextureBlock/block/door.png new file mode 100644 index 0000000..421cf4e Binary files /dev/null and b/assets/TextureBlock/block/door.png differ diff --git a/assets/TextureBlock/block/door.png.meta b/assets/TextureBlock/block/door.png.meta new file mode 100644 index 0000000..9e29ae1 --- /dev/null +++ b/assets/TextureBlock/block/door.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1023, + "height": 1251, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/down.plist b/assets/TextureBlock/block/down.plist new file mode 100644 index 0000000..14607a7 --- /dev/null +++ b/assets/TextureBlock/block/down.plist @@ -0,0 +1,1316 @@ + + + + + frames + + 10down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{830,1158},{122,45}} + textureRotated + + + 10down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{413,801},{243,45}} + textureRotated + + + 10down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{48,826},{363,45}} + textureRotated + + + 10down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{547,1167},{45,124}} + textureRotated + + + 10down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,245} + spriteSourceSize + {45,245} + textureRect + {{432,378},{45,245}} + textureRotated + + + 10down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,365} + spriteSourceSize + {45,365} + textureRect + {{50,403},{45,365}} + textureRotated + + + 1down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{679,142},{122,45}} + textureRotated + + + 1down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{417,425},{243,45}} + textureRotated + + + 1down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{50,450},{363,45}} + textureRotated + + + 1down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{662,425},{45,124}} + textureRotated + + + 1down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,245} + spriteSourceSize + {45,245} + textureRect + {{445,48},{45,245}} + textureRotated + + + 1down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,365} + spriteSourceSize + {45,365} + textureRect + {{445,1},{45,365}} + textureRotated + + + 2down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{726,251},{122,45}} + textureRotated + + + 2down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{415,472},{243,45}} + textureRotated + + + 2down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{50,497},{363,45}} + textureRotated + + + 2down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{307,995},{45,124}} + textureRotated + + + 2down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,247} + spriteSourceSize + {47,247} + textureRect + {{48,1008},{47,247}} + textureRotated + + + 2down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,367} + spriteSourceSize + {47,367} + textureRect + {{1,389},{47,367}} + textureRotated + + + 3down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{910,495},{122,45}} + textureRotated + + + 3down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{415,519},{243,45}} + textureRotated + + + 3down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{50,544},{363,45}} + textureRotated + + + 3down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{297,1042},{45,124}} + textureRotated + + + 3down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,245} + spriteSourceSize + {45,245} + textureRect + {{48,1105},{45,245}} + textureRotated + + + 3down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,365} + spriteSourceSize + {45,365} + textureRect + {{1,758},{45,365}} + textureRotated + + + 4down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{910,619},{122,45}} + textureRotated + + + 4down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{415,566},{243,45}} + textureRotated + + + 4down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{50,591},{363,45}} + textureRotated + + + 4down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{296,1089},{45,124}} + textureRotated + + + 4down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,245} + spriteSourceSize + {45,245} + textureRect + {{433,95},{45,245}} + textureRotated + + + 4down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,365} + spriteSourceSize + {45,365} + textureRect + {{65,120},{45,365}} + textureRotated + + + 5down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{822,739},{122,45}} + textureRotated + + + 5down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{415,613},{243,45}} + textureRotated + + + 5down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{50,638},{363,45}} + textureRotated + + + 5down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{295,1136},{45,124}} + textureRotated + + + 5down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,245} + spriteSourceSize + {45,245} + textureRect + {{432,142},{45,245}} + textureRotated + + + 5down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,365} + spriteSourceSize + {45,365} + textureRect + {{65,167},{45,365}} + textureRotated + + + 6down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{869,743},{122,45}} + textureRotated + + + 6down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{415,660},{243,45}} + textureRotated + + + 6down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{50,685},{363,45}} + textureRotated + + + 6down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{422,1112},{45,124}} + textureRotated + + + 6down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,245} + spriteSourceSize + {45,245} + textureRect + {{432,189},{45,245}} + textureRotated + + + 6down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,365} + spriteSourceSize + {45,365} + textureRect + {{65,214},{45,365}} + textureRotated + + + 7down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,46} + spriteSourceSize + {122,46} + textureRect + {{801,298},{122,46}} + textureRotated + + + 7down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,46} + spriteSourceSize + {244,46} + textureRect + {{432,283},{244,46}} + textureRotated + + + 7down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,46} + spriteSourceSize + {364,46} + textureRect + {{65,261},{364,46}} + textureRotated + + + 7down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {46,124} + spriteSourceSize + {46,124} + textureRect + {{660,744},{46,124}} + textureRotated + + + 7down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {46,246} + spriteSourceSize + {46,246} + textureRect + {{48,1057},{46,246}} + textureRotated + + + 7down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {46,366} + spriteSourceSize + {46,366} + textureRect + {{65,72},{46,366}} + textureRotated + + + 8down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{916,743},{122,45}} + textureRotated + + + 8down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{415,707},{243,45}} + textureRotated + + + 8down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{50,732},{363,45}} + textureRotated + + + 8down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{421,1159},{45,124}} + textureRotated + + + 8down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,245} + spriteSourceSize + {45,245} + textureRect + {{432,236},{45,245}} + textureRotated + + + 8down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,365} + spriteSourceSize + {45,365} + textureRect + {{65,309},{45,365}} + textureRotated + + + 9down1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {122,45} + spriteSourceSize + {122,45} + textureRect + {{830,1111},{122,45}} + textureRotated + + + 9down2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {243,45} + spriteSourceSize + {243,45} + textureRect + {{415,754},{243,45}} + textureRotated + + + 9down3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,45} + spriteSourceSize + {363,45} + textureRect + {{48,779},{363,45}} + textureRotated + + + 9down4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,124} + spriteSourceSize + {45,124} + textureRect + {{548,1120},{45,124}} + textureRotated + + + 9down5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,245} + spriteSourceSize + {45,245} + textureRect + {{432,331},{45,245}} + textureRotated + + + 9down6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,365} + spriteSourceSize + {45,365} + textureRect + {{65,356},{45,365}} + textureRotated + + + heng1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{1,1152},{138,69}} + textureRotated + + + heng2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {257,69} + spriteSourceSize + {257,69} + textureRect + {{48,937},{257,69}} + textureRotated + + + heng3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{65,1},{378,69}} + textureRotated + + + risefall1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{316,873},{120,120}} + textureRotated + + + risefall10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{830,989},{120,120}} + textureRotated + + + risefall2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{726,129},{120,120}} + textureRotated + + + risefall3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{848,129},{120,120}} + textureRotated + + + risefall4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{850,251},{120,120}} + textureRotated + + + risefall5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{679,298},{120,120}} + textureRotated + + + risefall6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{849,373},{120,120}} + textureRotated + + + risefall7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{788,495},{120,120}} + textureRotated + + + risefall8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{788,617},{120,120}} + textureRotated + + + risefall9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{830,867},{120,120}} + textureRotated + + + riseup1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{812,1},{126,134}} + textureRotated + + + riseup10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{702,1064},{126,134}} + textureRotated + + + riseup2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{438,848},{126,134}} + textureRotated + + + riseup3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{566,848},{126,134}} + textureRotated + + + riseup4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{438,984},{126,134}} + textureRotated + + + riseup5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{574,984},{126,134}} + textureRotated + + + riseup6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{660,472},{126,134}} + textureRotated + + + riseup7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{660,608},{126,134}} + textureRotated + + + riseup8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{694,792},{126,134}} + textureRotated + + + riseup9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,134} + spriteSourceSize + {126,134} + textureRect + {{702,928},{126,134}} + textureRotated + + + shu1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,145} + spriteSourceSize + {62,145} + textureRect + {{141,1152},{62,145}} + textureRotated + + + shu2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,266} + spriteSourceSize + {62,266} + textureRect + {{48,873},{62,266}} + textureRotated + + + shu3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,386} + spriteSourceSize + {62,386} + textureRect + {{1,1},{62,386}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + down.png + size + {971,1222} + smartupdate + $TexturePacker:SmartUpdate:c5e744830aab2d8075a81de17b8ae7e4:03e0bacb5b2e1eebe1aae020df0e74ee:1f82f659e2591d395bca4b2a7c74dd8a$ + textureFileName + down.png + + + diff --git a/assets/TextureBlock/block/down.plist.meta b/assets/TextureBlock/block/down.plist.meta new file mode 100644 index 0000000..55fbceb --- /dev/null +++ b/assets/TextureBlock/block/down.plist.meta @@ -0,0 +1,1991 @@ +{ + "ver": "1.2.6", + "uuid": "3d019ed8-3019-436d-add0-ceeb02a5baaf", + "importer": "asset", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "size": { + "width": 971, + "height": 1222 + }, + "type": "Texture Packer", + "subMetas": { + "10down1.png": { + "ver": "1.0.6", + "uuid": "c8f5862b-373d-4a40-b7b4-b550d4ed958a", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 830, + "trimY": 1158, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10down2.png": { + "ver": "1.0.6", + "uuid": "51e06d9e-23ca-4762-8aef-cd8bab1d33dd", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 413, + "trimY": 801, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10down3.png": { + "ver": "1.0.6", + "uuid": "0c09885e-4d8d-43c8-9f7d-e97bccb67e77", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 48, + "trimY": 826, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10down4.png": { + "ver": "1.0.6", + "uuid": "ca5f78b1-730f-4ad9-a695-9f72982d7cce", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 547, + "trimY": 1167, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10down5.png": { + "ver": "1.0.6", + "uuid": "362edd73-b6b5-4a1d-82bc-7714ae28b209", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 432, + "trimY": 378, + "width": 45, + "height": 245, + "rawWidth": 45, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10down6.png": { + "ver": "1.0.6", + "uuid": "07594a6b-77fb-448b-89f1-653cdd63f516", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 50, + "trimY": 403, + "width": 45, + "height": 365, + "rawWidth": 45, + "rawHeight": 365, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1down1.png": { + "ver": "1.0.6", + "uuid": "c983d847-cfc4-4288-aef4-81f7614c015e", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 679, + "trimY": 142, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1down2.png": { + "ver": "1.0.6", + "uuid": "abfddfc6-a384-4b25-8868-90354a9531d9", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 417, + "trimY": 425, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1down3.png": { + "ver": "1.0.6", + "uuid": "37292117-0184-47bb-9029-40e2bf9f2e3b", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 50, + "trimY": 450, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1down4.png": { + "ver": "1.0.6", + "uuid": "aeab228a-209e-49fc-8bf5-c02865b9e02e", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 662, + "trimY": 425, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1down5.png": { + "ver": "1.0.6", + "uuid": "257d5583-e4b0-4dfc-910b-6efdc382de04", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 445, + "trimY": 48, + "width": 45, + "height": 245, + "rawWidth": 45, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1down6.png": { + "ver": "1.0.6", + "uuid": "5fa4d829-4ef3-47a4-b9b0-5367ea5deadb", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 445, + "trimY": 1, + "width": 45, + "height": 365, + "rawWidth": 45, + "rawHeight": 365, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2down1.png": { + "ver": "1.0.6", + "uuid": "085f8402-f610-4636-862f-22fd6bc2e7ca", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 726, + "trimY": 251, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2down2.png": { + "ver": "1.0.6", + "uuid": "b6e07f67-9d56-45ff-be78-5375b5265998", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 415, + "trimY": 472, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2down3.png": { + "ver": "1.0.6", + "uuid": "42fbefea-6ea1-4889-9e5f-f3873953f13b", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 50, + "trimY": 497, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2down4.png": { + "ver": "1.0.6", + "uuid": "c9235f60-abf4-4de9-b0f0-45056ad4eec0", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 307, + "trimY": 995, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2down5.png": { + "ver": "1.0.6", + "uuid": "cfda791a-aa61-49c2-a331-117740c80b87", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 48, + "trimY": 1008, + "width": 47, + "height": 247, + "rawWidth": 47, + "rawHeight": 247, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2down6.png": { + "ver": "1.0.6", + "uuid": "66736e80-5092-4271-8c58-17f8352c7b8d", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 389, + "width": 47, + "height": 367, + "rawWidth": 47, + "rawHeight": 367, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3down1.png": { + "ver": "1.0.6", + "uuid": "dbf12764-e7df-4736-923b-4e613402fd70", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 910, + "trimY": 495, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3down2.png": { + "ver": "1.0.6", + "uuid": "0681c1ff-5cf4-4fe7-bc91-5e38c70ce46b", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 415, + "trimY": 519, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3down3.png": { + "ver": "1.0.6", + "uuid": "59e058ad-134c-4311-a1f4-59e93f8f8586", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 50, + "trimY": 544, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3down4.png": { + "ver": "1.0.6", + "uuid": "6168773e-4720-4796-9d76-84266915596b", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 297, + "trimY": 1042, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3down5.png": { + "ver": "1.0.6", + "uuid": "e086948a-d672-4693-a773-355c1aaf8819", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 48, + "trimY": 1105, + "width": 45, + "height": 245, + "rawWidth": 45, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3down6.png": { + "ver": "1.0.6", + "uuid": "20a13038-b67b-4c07-89fd-38267efdc0e5", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 758, + "width": 45, + "height": 365, + "rawWidth": 45, + "rawHeight": 365, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4down1.png": { + "ver": "1.0.6", + "uuid": "f68ebe9a-38e9-4208-8ac6-77d20462d9d6", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 910, + "trimY": 619, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4down2.png": { + "ver": "1.0.6", + "uuid": "678b10b4-1068-409c-82ea-15c65801d0a5", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 415, + "trimY": 566, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4down3.png": { + "ver": "1.0.6", + "uuid": "6ca2b413-78a7-4e32-bf03-b4a2b80f024b", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 50, + "trimY": 591, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4down4.png": { + "ver": "1.0.6", + "uuid": "40dd76f4-1ba0-40ce-9e2e-92f82d7da381", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 296, + "trimY": 1089, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4down5.png": { + "ver": "1.0.6", + "uuid": "eb033dba-ae5e-4147-ad46-241ab27df770", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 433, + "trimY": 95, + "width": 45, + "height": 245, + "rawWidth": 45, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4down6.png": { + "ver": "1.0.6", + "uuid": "accbb35a-b43d-49b8-97dc-c7e939ca052c", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 120, + "width": 45, + "height": 365, + "rawWidth": 45, + "rawHeight": 365, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5down1.png": { + "ver": "1.0.6", + "uuid": "48cddc96-39c7-449c-8280-55dd44b65377", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 822, + "trimY": 739, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5down2.png": { + "ver": "1.0.6", + "uuid": "34494a3a-6ae1-43cc-a102-e6f66a620e20", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 415, + "trimY": 613, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5down3.png": { + "ver": "1.0.6", + "uuid": "5282d649-8ede-4c7e-aeed-37beb78e860a", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 50, + "trimY": 638, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5down4.png": { + "ver": "1.0.6", + "uuid": "5e92ffdd-e62a-480f-93f2-852830ea2d1e", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 295, + "trimY": 1136, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5down5.png": { + "ver": "1.0.6", + "uuid": "fa7e8b5f-2600-4a98-8b15-1d95d419fbdb", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 432, + "trimY": 142, + "width": 45, + "height": 245, + "rawWidth": 45, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5down6.png": { + "ver": "1.0.6", + "uuid": "2cb2dbcb-4868-4668-8fd8-fde9b1bd8dba", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 167, + "width": 45, + "height": 365, + "rawWidth": 45, + "rawHeight": 365, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6down1.png": { + "ver": "1.0.6", + "uuid": "805ed668-1b05-44ff-98f9-2e8fc101a705", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 869, + "trimY": 743, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6down2.png": { + "ver": "1.0.6", + "uuid": "b8ef6026-86e6-481d-b285-65489050ac48", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 415, + "trimY": 660, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6down3.png": { + "ver": "1.0.6", + "uuid": "0a02963d-dd42-42ad-be69-c78af29eec3b", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 50, + "trimY": 685, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6down4.png": { + "ver": "1.0.6", + "uuid": "8398ddf1-296c-47cd-9d55-2ed4885f9509", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 422, + "trimY": 1112, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6down5.png": { + "ver": "1.0.6", + "uuid": "3b3e5789-e908-47aa-9adb-61ff566da72f", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 432, + "trimY": 189, + "width": 45, + "height": 245, + "rawWidth": 45, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6down6.png": { + "ver": "1.0.6", + "uuid": "1ecae730-c650-43a7-8c0a-560373777137", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 214, + "width": 45, + "height": 365, + "rawWidth": 45, + "rawHeight": 365, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7down1.png": { + "ver": "1.0.6", + "uuid": "9c2db1a3-6fc0-44c8-b56b-c6d42033dffb", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 801, + "trimY": 298, + "width": 122, + "height": 46, + "rawWidth": 122, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7down2.png": { + "ver": "1.0.6", + "uuid": "a5f933cc-d81e-4cab-92f3-86f1ba938126", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 432, + "trimY": 283, + "width": 244, + "height": 46, + "rawWidth": 244, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7down3.png": { + "ver": "1.0.6", + "uuid": "18775144-2f12-48f0-9d3d-b737e7417b5a", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 261, + "width": 364, + "height": 46, + "rawWidth": 364, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7down4.png": { + "ver": "1.0.6", + "uuid": "690702de-7290-431c-8cf9-89157165ca91", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 660, + "trimY": 744, + "width": 46, + "height": 124, + "rawWidth": 46, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7down5.png": { + "ver": "1.0.6", + "uuid": "355cc718-8d59-4f73-ae85-54d1899fe7be", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 48, + "trimY": 1057, + "width": 46, + "height": 246, + "rawWidth": 46, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7down6.png": { + "ver": "1.0.6", + "uuid": "569c479b-0e5d-4830-87a0-249867696779", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 72, + "width": 46, + "height": 366, + "rawWidth": 46, + "rawHeight": 366, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8down1.png": { + "ver": "1.0.6", + "uuid": "05be34a9-d8ee-43d3-ae9c-ea9f9fa663ab", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 916, + "trimY": 743, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8down2.png": { + "ver": "1.0.6", + "uuid": "55e0ff42-6f24-4b09-ab71-9baa61ede941", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 415, + "trimY": 707, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8down3.png": { + "ver": "1.0.6", + "uuid": "34717e3a-f954-4de3-95a1-9337ea702d6a", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 50, + "trimY": 732, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8down4.png": { + "ver": "1.0.6", + "uuid": "b8f7c2fe-525a-434f-ab7e-41bdc9c91155", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 421, + "trimY": 1159, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8down5.png": { + "ver": "1.0.6", + "uuid": "2b6d3d1e-8527-4810-a096-c3743fa6f668", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 432, + "trimY": 236, + "width": 45, + "height": 245, + "rawWidth": 45, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8down6.png": { + "ver": "1.0.6", + "uuid": "c1342fe3-26bf-44b8-9163-aacbee5d6684", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 309, + "width": 45, + "height": 365, + "rawWidth": 45, + "rawHeight": 365, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9down1.png": { + "ver": "1.0.6", + "uuid": "9e3650ed-bc7c-46ae-8c98-22c6001075b1", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 830, + "trimY": 1111, + "width": 122, + "height": 45, + "rawWidth": 122, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9down2.png": { + "ver": "1.0.6", + "uuid": "ccaae0e5-ef39-4909-8249-afb1cd2d6ada", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 415, + "trimY": 754, + "width": 243, + "height": 45, + "rawWidth": 243, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9down3.png": { + "ver": "1.0.6", + "uuid": "dfd68eea-a8ae-4141-b080-f6cfefbad8cd", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 48, + "trimY": 779, + "width": 363, + "height": 45, + "rawWidth": 363, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9down4.png": { + "ver": "1.0.6", + "uuid": "23fb16a5-4b81-4d2d-8fda-baffb1561c23", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 548, + "trimY": 1120, + "width": 45, + "height": 124, + "rawWidth": 45, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9down5.png": { + "ver": "1.0.6", + "uuid": "01a57769-e8df-4d79-91f9-900b3485adce", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 432, + "trimY": 331, + "width": 45, + "height": 245, + "rawWidth": 45, + "rawHeight": 245, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9down6.png": { + "ver": "1.0.6", + "uuid": "c8c757f3-a7c1-446f-847e-f079db95fc71", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 356, + "width": 45, + "height": 365, + "rawWidth": 45, + "rawHeight": 365, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "heng1.png": { + "ver": "1.0.6", + "uuid": "0e550299-e5d6-472d-bffe-5b207a3419a9", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1152, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "heng2.png": { + "ver": "1.0.6", + "uuid": "f9f9ba4e-cf9b-4642-8e74-90b6dac2399e", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 48, + "trimY": 937, + "width": 257, + "height": 69, + "rawWidth": 257, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "heng3.png": { + "ver": "1.0.6", + "uuid": "df8cf534-aab6-4e8d-b5b7-0008fcdceba1", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 1, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall1.png": { + "ver": "1.0.6", + "uuid": "d9bb32b4-457c-4900-83b1-871a56fbf245", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 316, + "trimY": 873, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall10.png": { + "ver": "1.0.6", + "uuid": "44d84cb5-0565-4412-83ae-95e81c532eec", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 830, + "trimY": 989, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall2.png": { + "ver": "1.0.6", + "uuid": "7f7bd4ca-d625-4712-b420-df181b8d0cde", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 726, + "trimY": 129, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall3.png": { + "ver": "1.0.6", + "uuid": "0614c0e2-2e2a-41d5-8484-135f6070da07", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 848, + "trimY": 129, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall4.png": { + "ver": "1.0.6", + "uuid": "840aa0f4-fd29-4844-94e2-fdf4b136d3de", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 850, + "trimY": 251, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall5.png": { + "ver": "1.0.6", + "uuid": "78496782-b8a3-461e-90fb-ca535d6e9f70", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 679, + "trimY": 298, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall6.png": { + "ver": "1.0.6", + "uuid": "79550727-6c56-459d-bc36-e89e7f52d32d", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 849, + "trimY": 373, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall7.png": { + "ver": "1.0.6", + "uuid": "4bd93d73-cf7b-4225-b5a7-804d6fd44e60", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 788, + "trimY": 495, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall8.png": { + "ver": "1.0.6", + "uuid": "4c3bfa4c-25d3-4308-8189-ad1911ea428d", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 788, + "trimY": 617, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "risefall9.png": { + "ver": "1.0.6", + "uuid": "d8f49f18-14cf-45a6-b491-5020971c0cfa", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 830, + "trimY": 867, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup1.png": { + "ver": "1.0.6", + "uuid": "02283f66-bdfd-4725-a7f2-b3f8bc5386c3", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 812, + "trimY": 1, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup10.png": { + "ver": "1.0.6", + "uuid": "f3c0b687-bd98-4a8b-99d3-5c7f65c9156d", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 702, + "trimY": 1064, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup2.png": { + "ver": "1.0.6", + "uuid": "02440d71-bba3-4e50-bc58-e5f4124cc880", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 438, + "trimY": 848, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup3.png": { + "ver": "1.0.6", + "uuid": "c20d1601-462a-431f-9067-7fbc24f45e95", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 566, + "trimY": 848, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup4.png": { + "ver": "1.0.6", + "uuid": "181e577d-41da-4a70-b7c0-ee77aaf15107", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 438, + "trimY": 984, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup5.png": { + "ver": "1.0.6", + "uuid": "58d3f9a2-1239-4feb-815d-660bec909edb", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 574, + "trimY": 984, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup6.png": { + "ver": "1.0.6", + "uuid": "07cf3404-01c6-4b8e-ba4a-f9246d385bf2", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 660, + "trimY": 472, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup7.png": { + "ver": "1.0.6", + "uuid": "9fb2d2e0-8daa-4a26-b37c-bc3da8562cc2", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 660, + "trimY": 608, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup8.png": { + "ver": "1.0.6", + "uuid": "4987667f-be41-40a7-bc5a-f93e2d381fa0", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 694, + "trimY": 792, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "riseup9.png": { + "ver": "1.0.6", + "uuid": "491cdfd2-93a4-432b-a19f-937207d809ec", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 702, + "trimY": 928, + "width": 126, + "height": 134, + "rawWidth": 126, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu1.png": { + "ver": "1.0.6", + "uuid": "618efc2c-3a16-4c55-b4b4-de050462591c", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 141, + "trimY": 1152, + "width": 62, + "height": 145, + "rawWidth": 62, + "rawHeight": 145, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu2.png": { + "ver": "1.0.6", + "uuid": "0df95967-2a3b-46e7-aa94-2a22a556578d", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 48, + "trimY": 873, + "width": 62, + "height": 266, + "rawWidth": 62, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu3.png": { + "ver": "1.0.6", + "uuid": "cf065294-b4ed-4933-b351-a5169d7e9d42", + "importer": "sprite-frame", + "rawTextureUuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 62, + "height": 386, + "rawWidth": 62, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/down.png b/assets/TextureBlock/block/down.png new file mode 100644 index 0000000..581ca0a Binary files /dev/null and b/assets/TextureBlock/block/down.png differ diff --git a/assets/TextureBlock/block/down.png.meta b/assets/TextureBlock/block/down.png.meta new file mode 100644 index 0000000..c8a4446 --- /dev/null +++ b/assets/TextureBlock/block/down.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "c660c59d-e175-4194-aaf3-33d1d03b783f", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 971, + "height": 1222, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/floor.png b/assets/TextureBlock/block/floor.png new file mode 100644 index 0000000..6844570 Binary files /dev/null and b/assets/TextureBlock/block/floor.png differ diff --git a/assets/TextureBlock/block/floor.png.meta b/assets/TextureBlock/block/floor.png.meta new file mode 100644 index 0000000..5c68586 --- /dev/null +++ b/assets/TextureBlock/block/floor.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4b7060e8-c604-4dc1-8f30-b9fe1b264424", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 120, + "height": 120, + "platformSettings": {}, + "subMetas": { + "floor": { + "ver": "1.0.6", + "uuid": "13fc37b7-475e-4be5-8df7-ca6005a1ef9f", + "importer": "sprite-frame", + "rawTextureUuid": "4b7060e8-c604-4dc1-8f30-b9fe1b264424", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/freeze.plist b/assets/TextureBlock/block/freeze.plist new file mode 100644 index 0000000..b14bf21 --- /dev/null +++ b/assets/TextureBlock/block/freeze.plist @@ -0,0 +1,716 @@ + + + + + frames + + ice_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {121,128} + spriteSourceSize + {121,128} + textureRect + {{1575,1870},{121,128}} + textureRotated + + + ice_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,132} + spriteSourceSize + {242,132} + textureRect + {{1866,561},{242,132}} + textureRotated + + + ice_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,370} + spriteSourceSize + {244,370} + textureRect + {{283,839},{244,370}} + textureRotated + + + ice_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {365,253} + spriteSourceSize + {365,253} + textureRect + {{765,561},{365,253}} + textureRotated + + + ice_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {245,368} + spriteSourceSize + {245,368} + textureRect + {{284,1085},{245,368}} + textureRotated + + + ice_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {365,253} + spriteSourceSize + {365,253} + textureRect + {{1132,561},{365,253}} + textureRotated + + + ice_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,250} + spriteSourceSize + {362,250} + textureRect + {{905,816},{362,250}} + textureRotated + + + ice_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,250} + spriteSourceSize + {362,250} + textureRect + {{1017,1068},{362,250}} + textureRotated + + + ice_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,366} + spriteSourceSize + {242,366} + textureRect + {{435,1456},{242,366}} + textureRotated + + + ice_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {241,367} + spriteSourceSize + {241,367} + textureRect + {{1269,816},{241,367}} + textureRotated + + + ice_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {362,372} + spriteSourceSize + {362,372} + textureRect + {{1,404},{362,372}} + textureRotated + + + ice_19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {245,247} + spriteSourceSize + {245,247} + textureRect + {{960,1735},{245,247}} + textureRotated + + + ice_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {126,250} + spriteSourceSize + {126,250} + textureRect + {{1570,1742},{126,250}} + textureRotated + + + ice_20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,248} + spriteSourceSize + {244,248} + textureRect + {{655,839},{244,248}} + textureRotated + + + ice_21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,251} + spriteSourceSize + {246,251} + textureRect + {{712,1735},{246,251}} + textureRotated + + + ice_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {244,250} + spriteSourceSize + {244,250} + textureRect + {{1764,812},{244,250}} + textureRotated + + + ice_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {361,132} + spriteSourceSize + {361,132} + textureRect + {{1207,1739},{361,132}} + textureRotated + + + ice_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {121,366} + spriteSourceSize + {121,366} + textureRect + {{1207,1873},{121,366}} + textureRotated + + + ice_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,251} + spriteSourceSize + {242,251} + textureRect + {{1269,1185},{242,251}} + textureRotated + + + ice_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {240,369} + spriteSourceSize + {240,369} + textureRect + {{531,1085},{240,369}} + textureRotated + + + ice_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {361,250} + spriteSourceSize + {361,250} + textureRect + {{1512,812},{361,250}} + textureRotated + + + ice_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,369} + spriteSourceSize + {242,369} + textureRect + {{773,1085},{242,369}} + textureRotated + + + ice_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {365,249} + spriteSourceSize + {365,249} + textureRect + {{1499,561},{365,249}} + textureRotated + + + xz_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {158,163} + spriteSourceSize + {158,163} + textureRect + {{1822,1742},{158,163}} + textureRotated + + + xz_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {275,164} + spriteSourceSize + {275,164} + textureRect + {{435,1824},{275,164}} + textureRotated + + + xz_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {275,400} + spriteSourceSize + {275,400} + textureRect + {{1200,284},{275,400}} + textureRotated + + + xz_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {396,281} + spriteSourceSize + {396,281} + textureRect + {{1594,1},{396,281}} + textureRotated + + + xz_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {275,400} + spriteSourceSize + {275,400} + textureRect + {{1602,284},{275,400}} + textureRotated + + + xz_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {396,281} + spriteSourceSize + {396,281} + textureRect + {{1,1178},{396,281}} + textureRotated + + + xz_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {398,280} + spriteSourceSize + {398,280} + textureRect + {{398,1},{398,280}} + textureRotated + + + xz_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {398,280} + spriteSourceSize + {398,280} + textureRect + {{1,778},{398,280}} + textureRotated + + + xz_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {276,398} + spriteSourceSize + {276,398} + textureRect + {{398,283},{276,398}} + textureRotated + + + xz_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {276,398} + spriteSourceSize + {276,398} + textureRect + {{365,561},{276,398}} + textureRotated + + + xz_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {395,401} + spriteSourceSize + {395,401} + textureRect + {{1,1},{395,401}} + textureRotated + + + xz_19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {278,277} + spriteSourceSize + {278,277} + textureRect + {{679,1456},{278,277}} + textureRotated + + + xz_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {159,280} + spriteSourceSize + {159,280} + textureRect + {{1239,1438},{159,280}} + textureRotated + + + xz_20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {277,278} + spriteSourceSize + {277,278} + textureRect + {{1400,1460},{277,278}} + textureRotated + + + xz_21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {278,277} + spriteSourceSize + {278,277} + textureRect + {{959,1456},{278,277}} + textureRotated + + + xz_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {277,278} + spriteSourceSize + {277,278} + textureRect + {{1680,1462},{277,278}} + textureRotated + + + xz_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {396,164} + spriteSourceSize + {396,164} + textureRect + {{1790,1064},{396,164}} + textureRotated + + + xz_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {155,401} + spriteSourceSize + {155,401} + textureRect + {{278,1576},{155,401}} + textureRotated + + + xz_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {275,283} + spriteSourceSize + {275,283} + textureRect + {{1513,1175},{275,283}} + textureRotated + + + xz_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {275,400} + spriteSourceSize + {275,400} + textureRect + {{1,1576},{275,400}} + textureRotated + + + xz_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {396,281} + spriteSourceSize + {396,281} + textureRect + {{798,1},{396,281}} + textureRotated + + + xz_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {275,400} + spriteSourceSize + {275,400} + textureRect + {{798,284},{275,400}} + textureRotated + + + xz_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {396,281} + spriteSourceSize + {396,281} + textureRect + {{1196,1},{396,281}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + freeze.png + size + {2009,1995} + smartupdate + $TexturePacker:SmartUpdate:784f758f56730573228dc3c31ac2302f:9496011f7ce51e241022a6d03e0694bf:e2ef1059df7b97495a993eb04763f497$ + textureFileName + freeze.png + + + diff --git a/assets/TextureBlock/block/freeze.plist.meta b/assets/TextureBlock/block/freeze.plist.meta new file mode 100644 index 0000000..cfc0026 --- /dev/null +++ b/assets/TextureBlock/block/freeze.plist.meta @@ -0,0 +1,1071 @@ +{ + "ver": "1.2.6", + "uuid": "ba9a4097-f4d2-4cc8-b325-34405e67b130", + "importer": "asset", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "size": { + "width": 2009, + "height": 1995 + }, + "type": "Texture Packer", + "subMetas": { + "ice_0.png": { + "ver": "1.0.6", + "uuid": "64fa6afd-16c6-4473-a5cf-844bcbd25f73", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1575, + "trimY": 1870, + "width": 121, + "height": 128, + "rawWidth": 121, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_1.png": { + "ver": "1.0.6", + "uuid": "73cd9b62-4f5f-4846-9be8-53f206b00a7f", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1866, + "trimY": 561, + "width": 242, + "height": 132, + "rawWidth": 242, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_10.png": { + "ver": "1.0.6", + "uuid": "d9d381ae-0c72-4ab4-a470-89bb04e2c78d", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 283, + "trimY": 839, + "width": 244, + "height": 370, + "rawWidth": 244, + "rawHeight": 370, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_11.png": { + "ver": "1.0.6", + "uuid": "3b800928-497d-4c3f-a1d0-e6a919e4df02", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 765, + "trimY": 561, + "width": 365, + "height": 253, + "rawWidth": 365, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_12.png": { + "ver": "1.0.6", + "uuid": "b5d05ad0-9ba6-40ca-9d11-b9fd23a0b1f7", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 284, + "trimY": 1085, + "width": 245, + "height": 368, + "rawWidth": 245, + "rawHeight": 368, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_13.png": { + "ver": "1.0.6", + "uuid": "1dcd9c5e-14ca-455f-89b1-c0fb13ab5d33", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1132, + "trimY": 561, + "width": 365, + "height": 253, + "rawWidth": 365, + "rawHeight": 253, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_14.png": { + "ver": "1.0.6", + "uuid": "aa6f0547-ebd5-4e9c-919f-cdb7e4d09ce8", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 905, + "trimY": 816, + "width": 362, + "height": 250, + "rawWidth": 362, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_15.png": { + "ver": "1.0.6", + "uuid": "ceb856fb-1003-46dd-9a43-3c3c8399376e", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1017, + "trimY": 1068, + "width": 362, + "height": 250, + "rawWidth": 362, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_16.png": { + "ver": "1.0.6", + "uuid": "40386653-0f9c-46df-9dd3-5dac1bf804a7", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 435, + "trimY": 1456, + "width": 242, + "height": 366, + "rawWidth": 242, + "rawHeight": 366, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_17.png": { + "ver": "1.0.6", + "uuid": "f1428a88-74aa-4353-9a97-1d2325437304", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1269, + "trimY": 816, + "width": 241, + "height": 367, + "rawWidth": 241, + "rawHeight": 367, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_18.png": { + "ver": "1.0.6", + "uuid": "78f63367-3765-4e5a-ba97-ba1ff164785b", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 404, + "width": 362, + "height": 372, + "rawWidth": 362, + "rawHeight": 372, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_19.png": { + "ver": "1.0.6", + "uuid": "c9773340-b1bc-4d65-b238-d316da70778d", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 960, + "trimY": 1735, + "width": 245, + "height": 247, + "rawWidth": 245, + "rawHeight": 247, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_2.png": { + "ver": "1.0.6", + "uuid": "33d4d456-e972-4edd-9239-cb65b7e1a741", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1570, + "trimY": 1742, + "width": 126, + "height": 250, + "rawWidth": 126, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_20.png": { + "ver": "1.0.6", + "uuid": "727e4b9d-8408-4bea-8a17-1ea8f55cb9eb", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 655, + "trimY": 839, + "width": 244, + "height": 248, + "rawWidth": 244, + "rawHeight": 248, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_21.png": { + "ver": "1.0.6", + "uuid": "c1e2f27b-c5fe-41ce-964f-671a6acefbfe", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 1735, + "width": 246, + "height": 251, + "rawWidth": 246, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_22.png": { + "ver": "1.0.6", + "uuid": "abb431df-2fda-497e-9941-a1c7205b1945", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1764, + "trimY": 812, + "width": 244, + "height": 250, + "rawWidth": 244, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_3.png": { + "ver": "1.0.6", + "uuid": "49c30af9-566f-4ccc-8967-371e632afaa9", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1207, + "trimY": 1739, + "width": 361, + "height": 132, + "rawWidth": 361, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_4.png": { + "ver": "1.0.6", + "uuid": "8c55e356-f4bb-4483-af03-f498c36f6639", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1207, + "trimY": 1873, + "width": 121, + "height": 366, + "rawWidth": 121, + "rawHeight": 366, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_5.png": { + "ver": "1.0.6", + "uuid": "01d1aed9-bd88-49f7-940f-39d72a62a6e7", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1269, + "trimY": 1185, + "width": 242, + "height": 251, + "rawWidth": 242, + "rawHeight": 251, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_6.png": { + "ver": "1.0.6", + "uuid": "eaa436a0-38d0-4580-9745-0d6ef1e3aa7d", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 531, + "trimY": 1085, + "width": 240, + "height": 369, + "rawWidth": 240, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_7.png": { + "ver": "1.0.6", + "uuid": "5e0a536d-4c5f-42f6-8f2f-5dabc3dc2d0e", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1512, + "trimY": 812, + "width": 361, + "height": 250, + "rawWidth": 361, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_8.png": { + "ver": "1.0.6", + "uuid": "5e13bde7-1c9f-4a8e-afc7-d1d8e6df870b", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 773, + "trimY": 1085, + "width": 242, + "height": 369, + "rawWidth": 242, + "rawHeight": 369, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_9.png": { + "ver": "1.0.6", + "uuid": "62429a89-373d-44cb-a978-af1f32ab409d", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1499, + "trimY": 561, + "width": 365, + "height": 249, + "rawWidth": 365, + "rawHeight": 249, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_0.png": { + "ver": "1.0.6", + "uuid": "138f8f36-a044-4bd6-bc77-537095928721", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1822, + "trimY": 1742, + "width": 158, + "height": 163, + "rawWidth": 158, + "rawHeight": 163, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_1.png": { + "ver": "1.0.6", + "uuid": "ce2c1c04-dfdd-485f-ba0b-9e9e2d5bd775", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 435, + "trimY": 1824, + "width": 275, + "height": 164, + "rawWidth": 275, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_10.png": { + "ver": "1.0.6", + "uuid": "aa2fd905-3a30-4de0-82a9-e2340e62f004", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1200, + "trimY": 284, + "width": 275, + "height": 400, + "rawWidth": 275, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_11.png": { + "ver": "1.0.6", + "uuid": "560503c2-3664-47c4-834f-b052031a95fe", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1594, + "trimY": 1, + "width": 396, + "height": 281, + "rawWidth": 396, + "rawHeight": 281, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_12.png": { + "ver": "1.0.6", + "uuid": "528a16df-0cfd-4569-b06e-7b0045260762", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1602, + "trimY": 284, + "width": 275, + "height": 400, + "rawWidth": 275, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_13.png": { + "ver": "1.0.6", + "uuid": "56c79cf2-5c1c-4044-bf72-9c99c5302074", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1178, + "width": 396, + "height": 281, + "rawWidth": 396, + "rawHeight": 281, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_14.png": { + "ver": "1.0.6", + "uuid": "c6c8593c-e9ec-48fa-82ce-68de832b0588", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 398, + "trimY": 1, + "width": 398, + "height": 280, + "rawWidth": 398, + "rawHeight": 280, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_15.png": { + "ver": "1.0.6", + "uuid": "ab387f59-de04-44b9-b209-e8326eeaa6cf", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 778, + "width": 398, + "height": 280, + "rawWidth": 398, + "rawHeight": 280, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_16.png": { + "ver": "1.0.6", + "uuid": "03a5a06c-65ca-4848-b677-814ceca367e9", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 398, + "trimY": 283, + "width": 276, + "height": 398, + "rawWidth": 276, + "rawHeight": 398, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_17.png": { + "ver": "1.0.6", + "uuid": "740b4de2-f5ed-4218-b5ea-489795888132", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 365, + "trimY": 561, + "width": 276, + "height": 398, + "rawWidth": 276, + "rawHeight": 398, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_18.png": { + "ver": "1.0.6", + "uuid": "326f4d71-ec3e-4e60-80b7-366644f8e4bc", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 395, + "height": 401, + "rawWidth": 395, + "rawHeight": 401, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_19.png": { + "ver": "1.0.6", + "uuid": "82bc9160-309d-4c6b-9895-5c0de13783c2", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 679, + "trimY": 1456, + "width": 278, + "height": 277, + "rawWidth": 278, + "rawHeight": 277, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_2.png": { + "ver": "1.0.6", + "uuid": "1dae414a-cce8-4e94-869b-ed869b85a7a2", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1239, + "trimY": 1438, + "width": 159, + "height": 280, + "rawWidth": 159, + "rawHeight": 280, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_20.png": { + "ver": "1.0.6", + "uuid": "f4c34816-7926-4e19-b11b-5ffd9340accb", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1400, + "trimY": 1460, + "width": 277, + "height": 278, + "rawWidth": 277, + "rawHeight": 278, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_21.png": { + "ver": "1.0.6", + "uuid": "415f47f0-fad1-43e1-9bb0-a3829d65a394", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 959, + "trimY": 1456, + "width": 278, + "height": 277, + "rawWidth": 278, + "rawHeight": 277, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_22.png": { + "ver": "1.0.6", + "uuid": "ba9b6fef-aacb-479a-8861-764c39e05d75", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1680, + "trimY": 1462, + "width": 277, + "height": 278, + "rawWidth": 277, + "rawHeight": 278, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_3.png": { + "ver": "1.0.6", + "uuid": "67a3e1e8-b956-4a3c-861d-d81ec149a0bf", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1790, + "trimY": 1064, + "width": 396, + "height": 164, + "rawWidth": 396, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_4.png": { + "ver": "1.0.6", + "uuid": "b0c52cbf-9933-4e65-be5f-aeb2c16cb99c", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 278, + "trimY": 1576, + "width": 155, + "height": 401, + "rawWidth": 155, + "rawHeight": 401, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_5.png": { + "ver": "1.0.6", + "uuid": "0ac33287-c45a-471c-ac50-5039da17ea1d", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1513, + "trimY": 1175, + "width": 275, + "height": 283, + "rawWidth": 275, + "rawHeight": 283, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_6.png": { + "ver": "1.0.6", + "uuid": "7b23c8ea-807d-4f55-90ba-bd725aff309c", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1576, + "width": 275, + "height": 400, + "rawWidth": 275, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_7.png": { + "ver": "1.0.6", + "uuid": "dc762f76-685e-44d7-88f5-5bd670c20532", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 798, + "trimY": 1, + "width": 396, + "height": 281, + "rawWidth": 396, + "rawHeight": 281, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_8.png": { + "ver": "1.0.6", + "uuid": "f502ad08-6edf-4fc1-b3a2-45315d91c7d0", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 798, + "trimY": 284, + "width": 275, + "height": 400, + "rawWidth": 275, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xz_9.png": { + "ver": "1.0.6", + "uuid": "3193b747-13f1-4800-91ff-8de019c658da", + "importer": "sprite-frame", + "rawTextureUuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1196, + "trimY": 1, + "width": 396, + "height": 281, + "rawWidth": 396, + "rawHeight": 281, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/freeze.png b/assets/TextureBlock/block/freeze.png new file mode 100644 index 0000000..1b1a9ca Binary files /dev/null and b/assets/TextureBlock/block/freeze.png differ diff --git a/assets/TextureBlock/block/freeze.png.meta b/assets/TextureBlock/block/freeze.png.meta new file mode 100644 index 0000000..d8eddd0 --- /dev/null +++ b/assets/TextureBlock/block/freeze.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "a7769b53-73c4-4fd2-bcad-e83d044a502e", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2009, + "height": 1995, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/TextureBlock/block/lianjie_1.png b/assets/TextureBlock/block/lianjie_1.png new file mode 100644 index 0000000..555077d Binary files /dev/null and b/assets/TextureBlock/block/lianjie_1.png differ diff --git a/assets/TextureBlock/block/lianjie_1.png.meta b/assets/TextureBlock/block/lianjie_1.png.meta new file mode 100644 index 0000000..db06d7c --- /dev/null +++ b/assets/TextureBlock/block/lianjie_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "7b34e903-ce39-4cc8-bb62-11e9068ad7a0", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 52, + "height": 50, + "platformSettings": {}, + "subMetas": { + "lianjie_1": { + "ver": "1.0.6", + "uuid": "f91b15ed-92c5-4f36-aabc-316c265d1d7c", + "importer": "sprite-frame", + "rawTextureUuid": "7b34e903-ce39-4cc8-bb62-11e9068ad7a0", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 52, + "height": 50, + "rawWidth": 52, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/lianjie_2.png b/assets/TextureBlock/block/lianjie_2.png new file mode 100644 index 0000000..32f8a69 Binary files /dev/null and b/assets/TextureBlock/block/lianjie_2.png differ diff --git a/assets/TextureBlock/block/lianjie_2.png.meta b/assets/TextureBlock/block/lianjie_2.png.meta new file mode 100644 index 0000000..be0a041 --- /dev/null +++ b/assets/TextureBlock/block/lianjie_2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "bee79baf-7ab4-4603-bd5f-9b7b367bb87f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 50, + "height": 52, + "platformSettings": {}, + "subMetas": { + "lianjie_2": { + "ver": "1.0.6", + "uuid": "c890971b-420c-4b27-a1f1-3c3420a922f9", + "importer": "sprite-frame", + "rawTextureUuid": "bee79baf-7ab4-4603-bd5f-9b7b367bb87f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 50, + "height": 52, + "rawWidth": 50, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/star.plist b/assets/TextureBlock/block/star.plist new file mode 100644 index 0000000..38d2c21 --- /dev/null +++ b/assets/TextureBlock/block/star.plist @@ -0,0 +1,566 @@ + + + + + frames + + five.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,210} + spriteSourceSize + {39,210} + textureRect + {{200,973},{39,210}} + textureRotated + + + four.png + + aliases + + spriteOffset + {0,0} + spriteSize + {35,96} + spriteSourceSize + {35,96} + textureRect + {{1130,783},{35,96}} + textureRotated + + + heng1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {91,59} + spriteSourceSize + {91,59} + textureRect + {{993,842},{91,59}} + textureRotated + + + heng2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {198,64} + spriteSourceSize + {198,64} + textureRect + {{1044,1},{198,64}} + textureRotated + + + heng3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {301,64} + spriteSourceSize + {301,64} + textureRect + {{626,948},{301,64}} + textureRotated + + + one.png + + aliases + + spriteOffset + {0,0} + spriteSize + {105,34} + spriteSourceSize + {105,34} + textureRect + {{1137,189},{105,34}} + textureRotated + + + shu1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {57,94} + spriteSourceSize + {57,94} + textureRect + {{993,783},{57,94}} + textureRotated + + + shu2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,200} + spriteSourceSize + {62,200} + textureRect + {{1167,797},{62,200}} + textureRotated + + + shu3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,303} + spriteSourceSize + {62,303} + textureRect + {{778,1},{62,303}} + textureRotated + + + six.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,330} + spriteSourceSize + {40,330} + textureRect + {{1,1},{40,330}} + textureRotated + + + star_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {91,98} + spriteSourceSize + {91,98} + textureRect + {{1044,201},{91,98}} + textureRotated + + + star_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {196,98} + spriteSourceSize + {196,98} + textureRect + {{1167,861},{196,98}} + textureRotated + + + star_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {200,301} + spriteSourceSize + {200,301} + textureRect + {{842,1},{200,301}} + textureRotated + + + star_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {323,195} + spriteSourceSize + {323,195} + textureRect + {{200,327},{323,195}} + textureRotated + + + star_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {195,319} + spriteSourceSize + {195,319} + textureRect + {{200,652},{195,319}} + textureRotated + + + star_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {327,197} + spriteSourceSize + {327,197} + textureRect + {{1,333},{327,197}} + textureRotated + + + star_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {299,194} + spriteSourceSize + {299,194} + textureRect + {{797,620},{299,194}} + textureRotated + + + star_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {307,201} + spriteSourceSize + {307,201} + textureRect + {{594,639},{307,201}} + textureRotated + + + star_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {204,304} + spriteSourceSize + {204,304} + textureRect + {{693,314},{204,304}} + textureRotated + + + star_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {195,282} + spriteSourceSize + {195,282} + textureRect + {{988,304},{195,282}} + textureRotated + + + star_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {305,324} + spriteSourceSize + {305,324} + textureRect + {{81,1},{305,324}} + textureRotated + + + star_19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {213,186} + spriteSourceSize + {213,186} + textureRect + {{1130,1},{213,186}} + textureRotated + + + star_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {92,199} + spriteSourceSize + {92,199} + textureRect + {{929,921},{92,199}} + textureRotated + + + star_20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {193,180} + spriteSourceSize + {193,180} + textureRect + {{993,588},{193,180}} + textureRotated + + + star_21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {186,203} + spriteSourceSize + {186,203} + textureRect + {{1185,395},{186,203}} + textureRotated + + + star_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {196,195} + spriteSourceSize + {196,195} + textureRect + {{1175,600},{196,195}} + textureRotated + + + star_23.png + + aliases + + spriteOffset + {0,0} + spriteSize + {312,201} + spriteSourceSize + {312,201} + textureRect + {{490,325},{312,201}} + textureRotated + + + star_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {319,91} + spriteSourceSize + {319,91} + textureRect + {{397,325},{319,91}} + textureRotated + + + star_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {87,294} + spriteSourceSize + {87,294} + textureRect + {{899,304},{87,294}} + textureRotated + + + star_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {189,204} + spriteSourceSize + {189,204} + textureRect + {{1185,189},{189,204}} + textureRotated + + + star_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {191,311} + spriteSourceSize + {191,311} + textureRect + {{585,1},{191,311}} + textureRotated + + + star_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {324,197} + spriteSourceSize + {324,197} + textureRect + {{1,662},{324,197}} + textureRotated + + + star_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {195,322} + spriteSourceSize + {195,322} + textureRect + {{388,1},{195,322}} + textureRotated + + + star_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {315,195} + spriteSourceSize + {315,195} + textureRect + {{397,646},{315,195}} + textureRotated + + + three.png + + aliases + + spriteOffset + {0,0} + spriteSize + {326,36} + spriteSourceSize + {326,36} + textureRect + {{43,1},{326,36}} + textureRotated + + + two.png + + aliases + + spriteOffset + {0,0} + spriteSize + {212,36} + spriteSourceSize + {212,36} + textureRect + {{412,963},{212,36}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + star.png + size + {1375,1014} + smartupdate + $TexturePacker:SmartUpdate:446ebee4792c7a58cbc3a49680be4f38:67b0672ceb5897be64373a3d0ab78a4b:3529feb3fcfae6daa554c62bd8c6844e$ + textureFileName + star.png + + + diff --git a/assets/TextureBlock/block/star.plist.meta b/assets/TextureBlock/block/star.plist.meta new file mode 100644 index 0000000..33cd90e --- /dev/null +++ b/assets/TextureBlock/block/star.plist.meta @@ -0,0 +1,841 @@ +{ + "ver": "1.2.6", + "uuid": "7c245d33-7161-42a1-a713-d944b39d83fa", + "importer": "asset", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "size": { + "width": 1375, + "height": 1014 + }, + "type": "Texture Packer", + "subMetas": { + "five.png": { + "ver": "1.0.6", + "uuid": "c3d3ca5d-8d47-4c28-8cdc-0c04a3da2afe", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 200, + "trimY": 973, + "width": 39, + "height": 210, + "rawWidth": 39, + "rawHeight": 210, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "four.png": { + "ver": "1.0.6", + "uuid": "0c44142d-584c-4d10-b31b-554d018f2ada", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1130, + "trimY": 783, + "width": 35, + "height": 96, + "rawWidth": 35, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "heng1.png": { + "ver": "1.0.6", + "uuid": "25052f88-1450-4ea5-8652-842ebb5268c8", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 993, + "trimY": 842, + "width": 91, + "height": 59, + "rawWidth": 91, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "heng2.png": { + "ver": "1.0.6", + "uuid": "e6024cda-58f4-4146-b170-474f804aea43", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1044, + "trimY": 1, + "width": 198, + "height": 64, + "rawWidth": 198, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "heng3.png": { + "ver": "1.0.6", + "uuid": "8ed7b6a1-2efb-4120-b7bc-38f1e39e16df", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 626, + "trimY": 948, + "width": 301, + "height": 64, + "rawWidth": 301, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "one.png": { + "ver": "1.0.6", + "uuid": "f1b2143e-6122-418b-a491-8c5df16ef7cf", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1137, + "trimY": 189, + "width": 105, + "height": 34, + "rawWidth": 105, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu1.png": { + "ver": "1.0.6", + "uuid": "36e51cf6-94fa-4e86-bae5-5e19058de1ee", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 993, + "trimY": 783, + "width": 57, + "height": 94, + "rawWidth": 57, + "rawHeight": 94, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu2.png": { + "ver": "1.0.6", + "uuid": "6f55949e-0a8f-4721-be4c-48736c4f3990", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1167, + "trimY": 797, + "width": 62, + "height": 200, + "rawWidth": 62, + "rawHeight": 200, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu3.png": { + "ver": "1.0.6", + "uuid": "8b14043e-d677-4bf9-af96-e81e2bf7b1e4", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 778, + "trimY": 1, + "width": 62, + "height": 303, + "rawWidth": 62, + "rawHeight": 303, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "six.png": { + "ver": "1.0.6", + "uuid": "faeb8c0f-da7b-4538-9e6c-47dbaac5429b", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 40, + "height": 330, + "rawWidth": 40, + "rawHeight": 330, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_0.png": { + "ver": "1.0.6", + "uuid": "70935f45-a13a-4e87-a105-91b4265fb827", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1044, + "trimY": 201, + "width": 91, + "height": 98, + "rawWidth": 91, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_1.png": { + "ver": "1.0.6", + "uuid": "52d9f2e5-8d88-4da5-9a35-820f6792325f", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1167, + "trimY": 861, + "width": 196, + "height": 98, + "rawWidth": 196, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_10.png": { + "ver": "1.0.6", + "uuid": "9abdb3ff-3381-48f5-8eec-45e5a9f99ab9", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 842, + "trimY": 1, + "width": 200, + "height": 301, + "rawWidth": 200, + "rawHeight": 301, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_11.png": { + "ver": "1.0.6", + "uuid": "51ae53de-4519-49dd-848e-4f6eb6ddd322", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 200, + "trimY": 327, + "width": 323, + "height": 195, + "rawWidth": 323, + "rawHeight": 195, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_12.png": { + "ver": "1.0.6", + "uuid": "f2bf56b9-d46a-4f45-8990-fe69098e4c51", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 200, + "trimY": 652, + "width": 195, + "height": 319, + "rawWidth": 195, + "rawHeight": 319, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_13.png": { + "ver": "1.0.6", + "uuid": "b81dbf7b-f129-445d-bdce-8f408a76c242", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 333, + "width": 327, + "height": 197, + "rawWidth": 327, + "rawHeight": 197, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_14.png": { + "ver": "1.0.6", + "uuid": "37db49e9-d6ca-4f66-9a54-ca38687e4a5b", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 797, + "trimY": 620, + "width": 299, + "height": 194, + "rawWidth": 299, + "rawHeight": 194, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_15.png": { + "ver": "1.0.6", + "uuid": "8dbbe250-54d2-446c-ba88-f4f48f165ebc", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 594, + "trimY": 639, + "width": 307, + "height": 201, + "rawWidth": 307, + "rawHeight": 201, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_16.png": { + "ver": "1.0.6", + "uuid": "9803c968-b23a-4400-89b7-75517d1dacec", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 693, + "trimY": 314, + "width": 204, + "height": 304, + "rawWidth": 204, + "rawHeight": 304, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_17.png": { + "ver": "1.0.6", + "uuid": "f7fa324f-2f2b-49c0-ade7-5106c7e219fd", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 988, + "trimY": 304, + "width": 195, + "height": 282, + "rawWidth": 195, + "rawHeight": 282, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_18.png": { + "ver": "1.0.6", + "uuid": "e1171831-ca10-40a8-a131-2ed6e57d29a6", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 81, + "trimY": 1, + "width": 305, + "height": 324, + "rawWidth": 305, + "rawHeight": 324, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_19.png": { + "ver": "1.0.6", + "uuid": "dbdf7d00-44f1-4d8e-b450-1ebfc14fb2f6", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1130, + "trimY": 1, + "width": 213, + "height": 186, + "rawWidth": 213, + "rawHeight": 186, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_2.png": { + "ver": "1.0.6", + "uuid": "f07a7ebb-fa06-4044-b024-13ae078f3c4d", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 929, + "trimY": 921, + "width": 92, + "height": 199, + "rawWidth": 92, + "rawHeight": 199, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_20.png": { + "ver": "1.0.6", + "uuid": "a4a46172-ba24-4a11-89f2-edf91074af6a", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 993, + "trimY": 588, + "width": 193, + "height": 180, + "rawWidth": 193, + "rawHeight": 180, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_21.png": { + "ver": "1.0.6", + "uuid": "4f19af3a-9445-4a9c-9ea2-037675329387", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1185, + "trimY": 395, + "width": 186, + "height": 203, + "rawWidth": 186, + "rawHeight": 203, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_22.png": { + "ver": "1.0.6", + "uuid": "b0e312c3-f18c-4dfb-8f6d-3c8ce8e18165", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1175, + "trimY": 600, + "width": 196, + "height": 195, + "rawWidth": 196, + "rawHeight": 195, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_23.png": { + "ver": "1.0.6", + "uuid": "276442c2-0ba7-413a-b8e5-4ef461340b32", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 490, + "trimY": 325, + "width": 312, + "height": 201, + "rawWidth": 312, + "rawHeight": 201, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_3.png": { + "ver": "1.0.6", + "uuid": "b059048d-1844-4c28-9c72-8b72213b23d4", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 397, + "trimY": 325, + "width": 319, + "height": 91, + "rawWidth": 319, + "rawHeight": 91, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_4.png": { + "ver": "1.0.6", + "uuid": "1eb4b19a-60b5-4529-b141-caa16bacf60d", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 899, + "trimY": 304, + "width": 87, + "height": 294, + "rawWidth": 87, + "rawHeight": 294, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_5.png": { + "ver": "1.0.6", + "uuid": "c36a160e-fa52-4782-9e56-29f4c65a34c6", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1185, + "trimY": 189, + "width": 189, + "height": 204, + "rawWidth": 189, + "rawHeight": 204, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_6.png": { + "ver": "1.0.6", + "uuid": "83b4bb14-e78a-4008-b121-c19a160c1fb8", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 585, + "trimY": 1, + "width": 191, + "height": 311, + "rawWidth": 191, + "rawHeight": 311, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_7.png": { + "ver": "1.0.6", + "uuid": "51f60b16-f2b3-4214-adc3-ee3205c8ffcc", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 662, + "width": 324, + "height": 197, + "rawWidth": 324, + "rawHeight": 197, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_8.png": { + "ver": "1.0.6", + "uuid": "46aed6fc-ae60-4e5f-a690-7811de264cb3", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 388, + "trimY": 1, + "width": 195, + "height": 322, + "rawWidth": 195, + "rawHeight": 322, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star_9.png": { + "ver": "1.0.6", + "uuid": "bef049a7-599c-45f2-8f1c-d9caff10de87", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 397, + "trimY": 646, + "width": 315, + "height": 195, + "rawWidth": 315, + "rawHeight": 195, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "three.png": { + "ver": "1.0.6", + "uuid": "fe526559-1d65-4ec9-b785-e7aa496aac54", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 43, + "trimY": 1, + "width": 326, + "height": 36, + "rawWidth": 326, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "two.png": { + "ver": "1.0.6", + "uuid": "e1075bf4-4304-465a-88db-aa35bf627095", + "importer": "sprite-frame", + "rawTextureUuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 412, + "trimY": 963, + "width": 212, + "height": 36, + "rawWidth": 212, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/TextureBlock/block/star.png b/assets/TextureBlock/block/star.png new file mode 100644 index 0000000..22b3ed9 Binary files /dev/null and b/assets/TextureBlock/block/star.png differ diff --git a/assets/TextureBlock/block/star.png.meta b/assets/TextureBlock/block/star.png.meta new file mode 100644 index 0000000..feec7a1 --- /dev/null +++ b/assets/TextureBlock/block/star.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "71910b3b-2542-4863-8a81-cec3f15bbb41", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1375, + "height": 1014, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI.meta b/assets/UI.meta new file mode 100644 index 0000000..2973607 --- /dev/null +++ b/assets/UI.meta @@ -0,0 +1,21 @@ +{ + "ver": "1.1.3", + "uuid": "cb1d6907-6e2b-4c96-ae04-20f4be8eca78", + "importer": "folder", + "isBundle": true, + "bundleName": "UI", + "priority": 3, + "compressionType": { + "wechatgame": "subpackage" + }, + "optimizeHotUpdate": { + "wechatgame": false + }, + "inlineSpriteFrames": { + "wechatgame": false + }, + "isRemoteBundle": { + "wechatgame": false + }, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/Rank.meta b/assets/UI/Rank.meta new file mode 100644 index 0000000..858230d --- /dev/null +++ b/assets/UI/Rank.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "daa68707-99d2-4791-8183-55c55dd2c79b", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/Rank/bg.png b/assets/UI/Rank/bg.png new file mode 100644 index 0000000..d511b71 Binary files /dev/null and b/assets/UI/Rank/bg.png differ diff --git a/assets/UI/Rank/bg.png.meta b/assets/UI/Rank/bg.png.meta new file mode 100644 index 0000000..8402a19 --- /dev/null +++ b/assets/UI/Rank/bg.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "94169c80-63f9-4a99-ab52-8edc843cc7c8", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 964, + "height": 987, + "platformSettings": {}, + "subMetas": { + "bg": { + "ver": "1.0.6", + "uuid": "c02d7fa3-0509-4731-ba5d-bf8c7e436f9c", + "importer": "sprite-frame", + "rawTextureUuid": "94169c80-63f9-4a99-ab52-8edc843cc7c8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 964, + "height": 987, + "rawWidth": 964, + "rawHeight": 987, + "borderTop": 200, + "borderBottom": 200, + "borderLeft": 200, + "borderRight": 200, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/btn_Bg1.png b/assets/UI/Rank/btn_Bg1.png new file mode 100644 index 0000000..ed773ec Binary files /dev/null and b/assets/UI/Rank/btn_Bg1.png differ diff --git a/assets/UI/Rank/btn_Bg1.png.meta b/assets/UI/Rank/btn_Bg1.png.meta new file mode 100644 index 0000000..498b2ac --- /dev/null +++ b/assets/UI/Rank/btn_Bg1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "c3d59030-ce06-4e09-9a10-6e57d04f7ba5", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 646, + "height": 104, + "platformSettings": {}, + "subMetas": { + "btn_Bg1": { + "ver": "1.0.6", + "uuid": "ef76d65f-e38f-4822-ab9b-da59611f99d5", + "importer": "sprite-frame", + "rawTextureUuid": "c3d59030-ce06-4e09-9a10-6e57d04f7ba5", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 646, + "height": 104, + "rawWidth": 646, + "rawHeight": 104, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/btn_Bg2.png b/assets/UI/Rank/btn_Bg2.png new file mode 100644 index 0000000..c06f882 Binary files /dev/null and b/assets/UI/Rank/btn_Bg2.png differ diff --git a/assets/UI/Rank/btn_Bg2.png.meta b/assets/UI/Rank/btn_Bg2.png.meta new file mode 100644 index 0000000..3e5daa2 --- /dev/null +++ b/assets/UI/Rank/btn_Bg2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5acd7b49-5e22-46bc-9eaf-49de63fe4af0", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 320, + "height": 99, + "platformSettings": {}, + "subMetas": { + "btn_Bg2": { + "ver": "1.0.6", + "uuid": "baea474a-7d16-44c4-b450-90d8f9d82fce", + "importer": "sprite-frame", + "rawTextureUuid": "5acd7b49-5e22-46bc-9eaf-49de63fe4af0", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 320, + "height": 99, + "rawWidth": 320, + "rawHeight": 99, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/friend_close.png b/assets/UI/Rank/friend_close.png new file mode 100644 index 0000000..2290c27 Binary files /dev/null and b/assets/UI/Rank/friend_close.png differ diff --git a/assets/UI/Rank/friend_close.png.meta b/assets/UI/Rank/friend_close.png.meta new file mode 100644 index 0000000..83e069d --- /dev/null +++ b/assets/UI/Rank/friend_close.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "dcaee8e1-f061-471f-abc7-8d469d5eaefb", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 182, + "height": 57, + "platformSettings": {}, + "subMetas": { + "friend_close": { + "ver": "1.0.6", + "uuid": "adb7a45a-f032-4be7-a801-488a885ad90e", + "importer": "sprite-frame", + "rawTextureUuid": "dcaee8e1-f061-471f-abc7-8d469d5eaefb", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 182, + "height": 57, + "rawWidth": 182, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/friend_open.png b/assets/UI/Rank/friend_open.png new file mode 100644 index 0000000..0a9b443 Binary files /dev/null and b/assets/UI/Rank/friend_open.png differ diff --git a/assets/UI/Rank/friend_open.png.meta b/assets/UI/Rank/friend_open.png.meta new file mode 100644 index 0000000..aa188da --- /dev/null +++ b/assets/UI/Rank/friend_open.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "9a8a95c2-ec31-4f47-8c32-fefb5f58cfa1", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 182, + "height": 57, + "platformSettings": {}, + "subMetas": { + "friend_open": { + "ver": "1.0.6", + "uuid": "3c48c75b-ab37-492a-bac3-313a21bf0563", + "importer": "sprite-frame", + "rawTextureUuid": "9a8a95c2-ec31-4f47-8c32-fefb5f58cfa1", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 182, + "height": 57, + "rawWidth": 182, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/player_close.png b/assets/UI/Rank/player_close.png new file mode 100644 index 0000000..d90dc73 Binary files /dev/null and b/assets/UI/Rank/player_close.png differ diff --git a/assets/UI/Rank/player_close.png.meta b/assets/UI/Rank/player_close.png.meta new file mode 100644 index 0000000..4f749e0 --- /dev/null +++ b/assets/UI/Rank/player_close.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "18a2d34c-ce91-4436-8cb4-adbdcd44faf0", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 182, + "height": 56, + "platformSettings": {}, + "subMetas": { + "player_close": { + "ver": "1.0.6", + "uuid": "900b16e6-24da-4bb9-ad2d-35f91dd8b685", + "importer": "sprite-frame", + "rawTextureUuid": "18a2d34c-ce91-4436-8cb4-adbdcd44faf0", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 182, + "height": 56, + "rawWidth": 182, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/player_open.png b/assets/UI/Rank/player_open.png new file mode 100644 index 0000000..45c4067 Binary files /dev/null and b/assets/UI/Rank/player_open.png differ diff --git a/assets/UI/Rank/player_open.png.meta b/assets/UI/Rank/player_open.png.meta new file mode 100644 index 0000000..d060ccd --- /dev/null +++ b/assets/UI/Rank/player_open.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d4ea4aff-1cda-4e94-a92c-01ad070213c9", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 182, + "height": 56, + "platformSettings": {}, + "subMetas": { + "player_open": { + "ver": "1.0.6", + "uuid": "a4df46ac-876b-470c-ab26-86f66adda88f", + "importer": "sprite-frame", + "rawTextureUuid": "d4ea4aff-1cda-4e94-a92c-01ad070213c9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 182, + "height": 56, + "rawWidth": 182, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/rankBg.jpg b/assets/UI/Rank/rankBg.jpg new file mode 100644 index 0000000..7e3ed05 Binary files /dev/null and b/assets/UI/Rank/rankBg.jpg differ diff --git a/assets/UI/Rank/rankBg.jpg.meta b/assets/UI/Rank/rankBg.jpg.meta new file mode 100644 index 0000000..744684d --- /dev/null +++ b/assets/UI/Rank/rankBg.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "75592203-b15c-458e-8c92-7dd278b6c3e1", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "rankBg": { + "ver": "1.0.6", + "uuid": "fe08ee8e-2c2a-4975-a429-042befb537b1", + "importer": "sprite-frame", + "rawTextureUuid": "75592203-b15c-458e-8c92-7dd278b6c3e1", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/rankTitle.png b/assets/UI/Rank/rankTitle.png new file mode 100644 index 0000000..a7d982c Binary files /dev/null and b/assets/UI/Rank/rankTitle.png differ diff --git a/assets/UI/Rank/rankTitle.png.meta b/assets/UI/Rank/rankTitle.png.meta new file mode 100644 index 0000000..50b14fd --- /dev/null +++ b/assets/UI/Rank/rankTitle.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "212c7004-2798-42c4-9d23-b3f3b2a17eb9", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 194, + "height": 64, + "platformSettings": {}, + "subMetas": { + "rankTitle": { + "ver": "1.0.6", + "uuid": "4d3c4a55-c1f0-4fdc-af6b-59d79d1ae7d0", + "importer": "sprite-frame", + "rawTextureUuid": "212c7004-2798-42c4-9d23-b3f3b2a17eb9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 194, + "height": 64, + "rawWidth": 194, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/rankUI.plist b/assets/UI/Rank/rankUI.plist new file mode 100644 index 0000000..dec32f6 --- /dev/null +++ b/assets/UI/Rank/rankUI.plist @@ -0,0 +1,521 @@ + + + + + frames + + btn_Bg1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {646,104} + spriteSourceSize + {646,104} + textureRect + {{1,320},{646,104}} + textureRotated + + + btn_Bg2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {320,99} + spriteSourceSize + {320,99} + textureRect + {{649,320},{320,99}} + textureRotated + + + friend_close.png + + aliases + + spriteOffset + {0,0} + spriteSize + {182,57} + spriteSourceSize + {182,57} + textureRect + {{649,421},{182,57}} + textureRotated + + + friend_open.png + + aliases + + spriteOffset + {0,0} + spriteSize + {182,57} + spriteSourceSize + {182,57} + textureRect + {{833,421},{182,57}} + textureRotated + + + iconBg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{965,1},{120,120}} + textureRotated + + + level_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,46} + spriteSourceSize + {42,46} + textureRect + {{1087,1},{42,46}} + textureRotated + + + level_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {30,44} + spriteSourceSize + {42,46} + textureRect + {{1102,415},{30,44}} + textureRotated + + + level_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {42,46} + textureRect + {{1093,271},{40,46}} + textureRotated + + + level_3.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {38,46} + spriteSourceSize + {42,46} + textureRect + {{1062,421},{38,46}} + textureRotated + + + level_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,46} + spriteSourceSize + {42,46} + textureRect + {{1087,45},{42,46}} + textureRotated + + + level_5.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {40,46} + spriteSourceSize + {42,46} + textureRect + {{1067,319},{40,46}} + textureRotated + + + level_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {42,46} + textureRect + {{1067,367},{40,46}} + textureRotated + + + level_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,46} + spriteSourceSize + {42,46} + textureRect + {{1087,89},{42,46}} + textureRotated + + + level_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,46} + spriteSourceSize + {42,46} + textureRect + {{1045,271},{42,46}} + textureRotated + + + level_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,46} + spriteSourceSize + {42,46} + textureRect + {{1076,227},{42,46}} + textureRotated + + + pai4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {926,139} + spriteSourceSize + {926,139} + textureRect + {{1,179},{926,139}} + textureRotated + + + player_close.png + + aliases + + spriteOffset + {0,0} + spriteSize + {182,56} + spriteSourceSize + {182,56} + textureRect + {{1,426},{182,56}} + textureRotated + + + player_open.png + + aliases + + spriteOffset + {0,0} + spriteSize + {182,56} + spriteSourceSize + {182,56} + textureRect + {{185,426},{182,56}} + textureRotated + + + rank1.png + + aliases + + spriteOffset + {0,1} + spriteSize + {94,104} + spriteSourceSize + {138,138} + textureRect + {{971,315},{94,104}} + textureRotated + + + rank2.png + + aliases + + spriteOffset + {0,1} + spriteSize + {94,116} + spriteSourceSize + {138,138} + textureRect + {{965,123},{94,116}} + textureRotated + + + rank3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {94,114} + spriteSourceSize + {138,138} + textureRect + {{929,219},{94,114}} + textureRotated + + + rank_+.png + + aliases + + spriteOffset + {4,8} + spriteSize + {37,34} + spriteSourceSize + {45,50} + textureRect + {{929,179},{37,34}} + textureRotated + + + rank_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,50} + spriteSourceSize + {45,50} + textureRect + {{1083,133},{45,50}} + textureRotated + + + rank_1.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {29,50} + spriteSourceSize + {45,50} + textureRect + {{1045,219},{29,50}} + textureRotated + + + rank_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {41,50} + spriteSourceSize + {45,50} + textureRect + {{506,426},{41,50}} + textureRotated + + + rank_3.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {39,50} + spriteSourceSize + {45,50} + textureRect + {{592,426},{39,50}} + textureRotated + + + rank_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,50} + spriteSourceSize + {45,50} + textureRect + {{1083,180},{45,50}} + textureRotated + + + rank_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {41,50} + spriteSourceSize + {45,50} + textureRect + {{549,426},{41,50}} + textureRotated + + + rank_6.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {43,50} + spriteSourceSize + {45,50} + textureRect + {{1017,421},{43,50}} + textureRotated + + + rank_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,50} + spriteSourceSize + {45,50} + textureRect + {{369,426},{45,50}} + textureRotated + + + rank_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,50} + spriteSourceSize + {45,50} + textureRect + {{416,426},{43,50}} + textureRotated + + + rank_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,50} + spriteSourceSize + {45,50} + textureRect + {{461,426},{43,50}} + textureRotated + + + self_pai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {962,176} + spriteSourceSize + {962,176} + textureRect + {{1,1},{962,176}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + rankUI.png + size + {1134,483} + smartupdate + $TexturePacker:SmartUpdate:1d613ed7cdbe0c1f1325aeaa99ca49c4:1f550bfa01d178080daa47bba123496f:e78f5013a428c1be0767af4d62c87be1$ + textureFileName + rankUI.png + + + diff --git a/assets/UI/Rank/rankUI.plist.meta b/assets/UI/Rank/rankUI.plist.meta new file mode 100644 index 0000000..84250c0 --- /dev/null +++ b/assets/UI/Rank/rankUI.plist.meta @@ -0,0 +1,772 @@ +{ + "ver": "1.2.6", + "uuid": "3ceddf93-d26c-4f2f-b990-609ea177a6e8", + "importer": "asset", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "size": { + "width": 1134, + "height": 483 + }, + "type": "Texture Packer", + "subMetas": { + "btn_Bg1.png": { + "ver": "1.0.6", + "uuid": "946bac27-9a45-494c-bd72-4119131b85d5", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 320, + "width": 646, + "height": 104, + "rawWidth": 646, + "rawHeight": 104, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_Bg2.png": { + "ver": "1.0.6", + "uuid": "251d3b0f-70f4-4e98-8b34-aa0194794bdf", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 649, + "trimY": 320, + "width": 320, + "height": 99, + "rawWidth": 320, + "rawHeight": 99, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "friend_close.png": { + "ver": "1.0.6", + "uuid": "ea739be7-67d0-4bc7-83bb-92b83e2e37be", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 649, + "trimY": 421, + "width": 182, + "height": 57, + "rawWidth": 182, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "friend_open.png": { + "ver": "1.0.6", + "uuid": "76644087-4af7-4d1c-be1e-42287e6dfd1e", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 833, + "trimY": 421, + "width": 182, + "height": 57, + "rawWidth": 182, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "iconBg.png": { + "ver": "1.0.6", + "uuid": "e9fb6348-49dd-4fe5-a446-1517df38bdbe", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 965, + "trimY": 1, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_0.png": { + "ver": "1.0.6", + "uuid": "97253fe3-d6c5-48c7-870d-79208542bcae", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1087, + "trimY": 1, + "width": 42, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_1.png": { + "ver": "1.0.6", + "uuid": "c506a0e4-c968-4f59-a869-99b0eb470853", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1102, + "trimY": 415, + "width": 30, + "height": 44, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_2.png": { + "ver": "1.0.6", + "uuid": "74062e80-7432-4cbd-83b1-05c06fb59ca3", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1093, + "trimY": 271, + "width": 40, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_3.png": { + "ver": "1.0.6", + "uuid": "6b2cf07d-0e28-4d96-ad6b-0110839ee4fa", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1062, + "trimY": 421, + "width": 38, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_4.png": { + "ver": "1.0.6", + "uuid": "bb985a4a-3f68-4f06-ba58-4200fb7a4cf9", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1087, + "trimY": 45, + "width": 42, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_5.png": { + "ver": "1.0.6", + "uuid": "ad846819-d711-488d-90f5-c2654fe12164", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1067, + "trimY": 319, + "width": 40, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_6.png": { + "ver": "1.0.6", + "uuid": "dc0d6dbd-28de-4020-a745-1eed13df104c", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1067, + "trimY": 367, + "width": 40, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_7.png": { + "ver": "1.0.6", + "uuid": "3be5f20d-0013-47da-bee9-15693a246c86", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1087, + "trimY": 89, + "width": 42, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_8.png": { + "ver": "1.0.6", + "uuid": "73d85d0d-6c30-42d3-89e3-7263bf77be1c", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1045, + "trimY": 271, + "width": 42, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_9.png": { + "ver": "1.0.6", + "uuid": "cf674b7a-826e-459c-94ba-6fe84105ec04", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1076, + "trimY": 227, + "width": 42, + "height": 46, + "rawWidth": 42, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "pai4.png": { + "ver": "1.0.6", + "uuid": "f63001d8-15f0-4c86-b015-b6d7cffc2fc4", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 179, + "width": 926, + "height": 139, + "rawWidth": 926, + "rawHeight": 139, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "player_close.png": { + "ver": "1.0.6", + "uuid": "3f6c9369-60c4-4ad1-97bb-0052d2d4f292", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 426, + "width": 182, + "height": 56, + "rawWidth": 182, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "player_open.png": { + "ver": "1.0.6", + "uuid": "04e163db-c2c3-4946-a5e0-1e1d44717d1d", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 185, + "trimY": 426, + "width": 182, + "height": 56, + "rawWidth": 182, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank1.png": { + "ver": "1.0.6", + "uuid": "8130e42a-07a3-42bd-879f-33c0df18d856", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 971, + "trimY": 315, + "width": 94, + "height": 104, + "rawWidth": 138, + "rawHeight": 138, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank2.png": { + "ver": "1.0.6", + "uuid": "d41022b8-2d6b-4cc7-a690-1aaea0f2e5fd", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 1, + "trimX": 965, + "trimY": 123, + "width": 94, + "height": 116, + "rawWidth": 138, + "rawHeight": 138, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank3.png": { + "ver": "1.0.6", + "uuid": "9c104f93-240b-4fa1-adbb-2a6d14ac4543", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 929, + "trimY": 219, + "width": 94, + "height": 114, + "rawWidth": 138, + "rawHeight": 138, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_+.png": { + "ver": "1.0.6", + "uuid": "2cffad24-577a-48e9-bd12-c5a83e72f856", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 4, + "offsetY": 8, + "trimX": 929, + "trimY": 179, + "width": 37, + "height": 34, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_0.png": { + "ver": "1.0.6", + "uuid": "7861c7b6-19bf-4ea4-aa12-c91782f7d0a9", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1083, + "trimY": 133, + "width": 45, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_1.png": { + "ver": "1.0.6", + "uuid": "ee48a919-1086-4bbc-8756-32978edbd22c", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1045, + "trimY": 219, + "width": 29, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_2.png": { + "ver": "1.0.6", + "uuid": "00f8ab52-0d24-425b-a49e-c1be1e22dcc0", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 506, + "trimY": 426, + "width": 41, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_3.png": { + "ver": "1.0.6", + "uuid": "c3abd233-b261-49ce-9cde-fb06b380740e", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 592, + "trimY": 426, + "width": 39, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_4.png": { + "ver": "1.0.6", + "uuid": "aa76e664-e42f-46b0-8206-426588ea43f2", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1083, + "trimY": 180, + "width": 45, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_5.png": { + "ver": "1.0.6", + "uuid": "c163e9cb-09a3-45b1-8733-10338c474629", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 549, + "trimY": 426, + "width": 41, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_6.png": { + "ver": "1.0.6", + "uuid": "2be954ff-f744-4e3b-919b-01fca7ea12c6", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1017, + "trimY": 421, + "width": 43, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_7.png": { + "ver": "1.0.6", + "uuid": "593aa7ef-4cdb-4920-8a64-c1b7b56131e0", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 369, + "trimY": 426, + "width": 45, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_8.png": { + "ver": "1.0.6", + "uuid": "e9807efe-167e-4f17-a57a-f77c452e97cb", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 416, + "trimY": 426, + "width": 43, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_9.png": { + "ver": "1.0.6", + "uuid": "2fd02d39-4c38-4a3c-a3b1-0f3d308bd457", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 461, + "trimY": 426, + "width": 43, + "height": 50, + "rawWidth": 45, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "self_pai.png": { + "ver": "1.0.6", + "uuid": "bd8ebfd7-7d9d-4e9f-ac22-4fcc3c5f6db4", + "importer": "sprite-frame", + "rawTextureUuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 962, + "height": 176, + "rawWidth": 962, + "rawHeight": 176, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/Rank/rankUI.png b/assets/UI/Rank/rankUI.png new file mode 100644 index 0000000..31fe4ad Binary files /dev/null and b/assets/UI/Rank/rankUI.png differ diff --git a/assets/UI/Rank/rankUI.png.meta b/assets/UI/Rank/rankUI.png.meta new file mode 100644 index 0000000..6f1804c --- /dev/null +++ b/assets/UI/Rank/rankUI.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "54add79a-d278-4fa7-b458-f42b5a201332", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1134, + "height": 483, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/Rank/title.png b/assets/UI/Rank/title.png new file mode 100644 index 0000000..1f08d21 Binary files /dev/null and b/assets/UI/Rank/title.png differ diff --git a/assets/UI/Rank/title.png.meta b/assets/UI/Rank/title.png.meta new file mode 100644 index 0000000..0ae0ead --- /dev/null +++ b/assets/UI/Rank/title.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e0fb442c-2ee4-46a9-9ed0-15d03364f59f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 507, + "height": 37, + "platformSettings": {}, + "subMetas": { + "title": { + "ver": "1.0.6", + "uuid": "e5c1a82a-09ec-42dd-8043-57ed761098a1", + "importer": "sprite-frame", + "rawTextureUuid": "e0fb442c-2ee4-46a9-9ed0-15d03364f59f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 507, + "height": 37, + "rawWidth": 507, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI.meta b/assets/UI/UI.meta new file mode 100644 index 0000000..13f7aff --- /dev/null +++ b/assets/UI/UI.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "e92938d8-5d93-4823-8770-fd489523a2f5", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/btn_blue.png b/assets/UI/UI/btn_blue.png new file mode 100644 index 0000000..7ef820d Binary files /dev/null and b/assets/UI/UI/btn_blue.png differ diff --git a/assets/UI/UI/btn_blue.png.meta b/assets/UI/UI/btn_blue.png.meta new file mode 100644 index 0000000..973deb7 --- /dev/null +++ b/assets/UI/UI/btn_blue.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "8a5504e1-4ecb-4d59-b9ec-5351a09d7442", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 392, + "height": 150, + "platformSettings": {}, + "subMetas": { + "btn_blue": { + "ver": "1.0.6", + "uuid": "6f881ca1-fb03-4847-874e-09d329985e1c", + "importer": "sprite-frame", + "rawTextureUuid": "8a5504e1-4ecb-4d59-b9ec-5351a09d7442", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 392, + "height": 150, + "rawWidth": 392, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/btn_yellow.png b/assets/UI/UI/btn_yellow.png new file mode 100644 index 0000000..7638b12 Binary files /dev/null and b/assets/UI/UI/btn_yellow.png differ diff --git a/assets/UI/UI/btn_yellow.png.meta b/assets/UI/UI/btn_yellow.png.meta new file mode 100644 index 0000000..fc20e85 --- /dev/null +++ b/assets/UI/UI/btn_yellow.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b3fc0972-de1d-4a54-a194-62f91a766878", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 392, + "height": 150, + "platformSettings": {}, + "subMetas": { + "btn_yellow": { + "ver": "1.0.6", + "uuid": "cf5cdef8-d90a-432a-a4c6-1fd96eaffe6d", + "importer": "sprite-frame", + "rawTextureUuid": "b3fc0972-de1d-4a54-a194-62f91a766878", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 392, + "height": 150, + "rawWidth": 392, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/gx1.png b/assets/UI/UI/gx1.png new file mode 100644 index 0000000..8d8bb90 Binary files /dev/null and b/assets/UI/UI/gx1.png differ diff --git a/assets/UI/UI/gx1.png.meta b/assets/UI/UI/gx1.png.meta new file mode 100644 index 0000000..1b3c9af --- /dev/null +++ b/assets/UI/UI/gx1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "07fe1d60-1325-4d4f-8cb6-0ef546f3bfe9", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 945, + "height": 824, + "platformSettings": {}, + "subMetas": { + "gx1": { + "ver": "1.0.6", + "uuid": "62a29ff1-5061-48cf-9224-715c1ac01061", + "importer": "sprite-frame", + "rawTextureUuid": "07fe1d60-1325-4d4f-8cb6-0ef546f3bfe9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 945, + "height": 824, + "rawWidth": 945, + "rawHeight": 824, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/ice1.png b/assets/UI/UI/ice1.png new file mode 100644 index 0000000..f6caaa1 Binary files /dev/null and b/assets/UI/UI/ice1.png differ diff --git a/assets/UI/UI/ice1.png.meta b/assets/UI/UI/ice1.png.meta new file mode 100644 index 0000000..4e565be --- /dev/null +++ b/assets/UI/UI/ice1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e823ecf2-4cd3-49b7-ad41-785d1977e9f9", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1078, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "ice1": { + "ver": "1.0.6", + "uuid": "f4ece38e-56e4-4940-a69b-230714b59704", + "importer": "sprite-frame", + "rawTextureUuid": "e823ecf2-4cd3-49b7-ad41-785d1977e9f9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1078, + "height": 2340, + "rawWidth": 1078, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/icon.png b/assets/UI/UI/icon.png new file mode 100644 index 0000000..08cfeab Binary files /dev/null and b/assets/UI/UI/icon.png differ diff --git a/assets/UI/UI/icon.png.meta b/assets/UI/UI/icon.png.meta new file mode 100644 index 0000000..cee94b0 --- /dev/null +++ b/assets/UI/UI/icon.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d4a58722-34f3-4a67-a943-53c8c6a2f040", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 142, + "height": 142, + "platformSettings": {}, + "subMetas": { + "icon": { + "ver": "1.0.6", + "uuid": "46896dd3-d3de-4947-b2dd-eb2b1b69bef1", + "importer": "sprite-frame", + "rawTextureUuid": "d4a58722-34f3-4a67-a943-53c8c6a2f040", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 142, + "height": 142, + "rawWidth": 142, + "rawHeight": 142, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop.meta b/assets/UI/UI/pop.meta new file mode 100644 index 0000000..2a20580 --- /dev/null +++ b/assets/UI/UI/pop.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "0fcc16a2-6784-4290-baac-e0de9927b236", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/pop/Revolving.png b/assets/UI/UI/pop/Revolving.png new file mode 100644 index 0000000..9d36776 Binary files /dev/null and b/assets/UI/UI/pop/Revolving.png differ diff --git a/assets/UI/UI/pop/Revolving.png.meta b/assets/UI/UI/pop/Revolving.png.meta new file mode 100644 index 0000000..48ede82 --- /dev/null +++ b/assets/UI/UI/pop/Revolving.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5f345ff4-7953-40a2-81ce-79b58f18f2ca", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 300, + "height": 215, + "platformSettings": {}, + "subMetas": { + "Revolving": { + "ver": "1.0.6", + "uuid": "3021f5d4-c725-4a26-bf66-a91367f77e91", + "importer": "sprite-frame", + "rawTextureUuid": "5f345ff4-7953-40a2-81ce-79b58f18f2ca", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 300, + "height": 215, + "rawWidth": 300, + "rawHeight": 215, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/Revolving_btn.png b/assets/UI/UI/pop/Revolving_btn.png new file mode 100644 index 0000000..9ac7385 Binary files /dev/null and b/assets/UI/UI/pop/Revolving_btn.png differ diff --git a/assets/UI/UI/pop/Revolving_btn.png.meta b/assets/UI/UI/pop/Revolving_btn.png.meta new file mode 100644 index 0000000..a9a53f9 --- /dev/null +++ b/assets/UI/UI/pop/Revolving_btn.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f92fff73-5f2a-412c-9bf0-0202d6f2b0a2", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 316, + "height": 78, + "platformSettings": {}, + "subMetas": { + "Revolving_btn": { + "ver": "1.0.6", + "uuid": "93ff2036-0218-4ff8-a9e8-7f4dbde68650", + "importer": "sprite-frame", + "rawTextureUuid": "f92fff73-5f2a-412c-9bf0-0202d6f2b0a2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 316, + "height": 78, + "rawWidth": 316, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/Revolving_icon.png b/assets/UI/UI/pop/Revolving_icon.png new file mode 100644 index 0000000..2d7bccf Binary files /dev/null and b/assets/UI/UI/pop/Revolving_icon.png differ diff --git a/assets/UI/UI/pop/Revolving_icon.png.meta b/assets/UI/UI/pop/Revolving_icon.png.meta new file mode 100644 index 0000000..0663e0c --- /dev/null +++ b/assets/UI/UI/pop/Revolving_icon.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "1e1e84b8-433e-4535-b1fa-9a001c7b60fb", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 582, + "height": 57, + "platformSettings": {}, + "subMetas": { + "Revolving_icon": { + "ver": "1.0.6", + "uuid": "33eaf1fc-018f-46b0-9494-0761ae8aa86a", + "importer": "sprite-frame", + "rawTextureUuid": "1e1e84b8-433e-4535-b1fa-9a001c7b60fb", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 582, + "height": 57, + "rawWidth": 582, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/Revolving_title.png b/assets/UI/UI/pop/Revolving_title.png new file mode 100644 index 0000000..28f0500 Binary files /dev/null and b/assets/UI/UI/pop/Revolving_title.png differ diff --git a/assets/UI/UI/pop/Revolving_title.png.meta b/assets/UI/UI/pop/Revolving_title.png.meta new file mode 100644 index 0000000..654f2b8 --- /dev/null +++ b/assets/UI/UI/pop/Revolving_title.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "31c1327f-a89a-48c0-adfc-b1c41b228652", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 312, + "height": 66, + "platformSettings": {}, + "subMetas": { + "Revolving_title": { + "ver": "1.0.6", + "uuid": "d0858e7d-9fce-4ad8-96b7-d3f205f7553b", + "importer": "sprite-frame", + "rawTextureUuid": "31c1327f-a89a-48c0-adfc-b1c41b228652", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 312, + "height": 66, + "rawWidth": 312, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/action_hammer.plist b/assets/UI/UI/pop/action_hammer.plist new file mode 100644 index 0000000..1bac533 --- /dev/null +++ b/assets/UI/UI/pop/action_hammer.plist @@ -0,0 +1,356 @@ + + + + + frames + + 0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1315,1378},{27,31}} + textureRotated + + + 1.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {19,31} + spriteSourceSize + {27,31} + textureRect + {{1528,1288},{19,31}} + textureRotated + + + 10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {78,35} + spriteSourceSize + {78,35} + textureRect + {{1572,1062},{78,35}} + textureRotated + + + 2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1595,677},{27,31}} + textureRotated + + + 3.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {25,31} + spriteSourceSize + {27,31} + textureRect + {{1595,776},{25,31}} + textureRotated + + + 4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1572,1142},{27,31}} + textureRotated + + + 5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {25,29} + spriteSourceSize + {27,31} + textureRect + {{958,1375},{25,29}} + textureRotated + + + 6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1595,710},{27,31}} + textureRotated + + + 7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1572,1175},{27,31}} + textureRotated + + + 8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1595,743},{27,31}} + textureRotated + + + 9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1572,1208},{27,31}} + textureRotated + + + action_hammer.png + + aliases + + spriteOffset + {0,0} + spriteSize + {158,162} + spriteSourceSize + {158,162} + textureRect + {{1354,1313},{158,162}} + textureRotated + + + beginBg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {955,240} + spriteSourceSize + {955,240} + textureRect + {{1,1375},{955,240}} + textureRotated + + + beginBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {634,172} + spriteSourceSize + {634,172} + textureRect + {{1354,677},{634,172}} + textureRotated + + + biaoti.png + + aliases + + spriteOffset + {0,0} + spriteSize + {750,222} + spriteSourceSize + {750,222} + textureRect + {{989,677},{750,222}} + textureRotated + + + hamer_texiao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {239,182} + spriteSourceSize + {239,182} + textureRect + {{958,1429},{239,182}} + textureRotated + + + hammer_action.png + + aliases + + spriteOffset + {0,0} + spriteSize + {674,638} + spriteSourceSize + {674,638} + textureRect + {{989,1},{674,638}} + textureRotated + + + mianfei.png + + aliases + + spriteOffset + {0,0} + spriteSize + {100,56} + spriteSourceSize + {100,56} + textureRect + {{1213,1378},{100,56}} + textureRotated + + + shengXiao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {224,42} + spriteSourceSize + {224,42} + textureRect + {{1528,1062},{224,42}} + textureRotated + + + title_hammer.png + + aliases + + spriteOffset + {0,0} + spriteSize + {383,65} + spriteSourceSize + {383,65} + textureRect + {{1528,677},{383,65}} + textureRotated + + + title_tishi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {699,139} + spriteSourceSize + {699,139} + textureRect + {{1213,677},{699,139}} + textureRotated + + + waikuang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {986,1372} + spriteSourceSize + {986,1372} + textureRect + {{1,1},{986,1372}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + action_hammer.png + size + {1628,1616} + smartupdate + $TexturePacker:SmartUpdate:91763baf6ab7d2d89491adf9a182c291:cc0f56ce542dc004b6b0298f4a26aa96:c1af61fc1c31da7ad78ba28ab2f50dda$ + textureFileName + action_hammer.png + + + diff --git a/assets/UI/UI/pop/action_hammer.plist.meta b/assets/UI/UI/pop/action_hammer.plist.meta new file mode 100644 index 0000000..8d346c6 --- /dev/null +++ b/assets/UI/UI/pop/action_hammer.plist.meta @@ -0,0 +1,519 @@ +{ + "ver": "1.2.6", + "uuid": "69267d2b-bac4-4527-8697-e26f72809be7", + "importer": "asset", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "size": { + "width": 1628, + "height": 1616 + }, + "type": "Texture Packer", + "subMetas": { + "0.png": { + "ver": "1.0.6", + "uuid": "74b08e23-0463-4ad7-9840-90be5c1e199f", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1315, + "trimY": 1378, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1.png": { + "ver": "1.0.6", + "uuid": "6c522690-2ef1-44a2-a0d6-a977a350ea73", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 0, + "trimX": 1528, + "trimY": 1288, + "width": 19, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10.png": { + "ver": "1.0.6", + "uuid": "24d0ba0f-9d03-40ae-a7a7-58fbb812af38", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 1062, + "width": 78, + "height": 35, + "rawWidth": 78, + "rawHeight": 35, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2.png": { + "ver": "1.0.6", + "uuid": "3cf00e08-df00-476b-a5dd-ebe4e36c722e", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1595, + "trimY": 677, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3.png": { + "ver": "1.0.6", + "uuid": "93d44bde-b42f-4dc0-9568-82dd53b920e2", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1595, + "trimY": 776, + "width": 25, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4.png": { + "ver": "1.0.6", + "uuid": "88c9e2dc-e4b4-46a7-9b35-26adec87b83e", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 1142, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5.png": { + "ver": "1.0.6", + "uuid": "459fa25a-c7ee-435f-a656-def4dc09d730", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 958, + "trimY": 1375, + "width": 25, + "height": 29, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6.png": { + "ver": "1.0.6", + "uuid": "3fce5f30-4462-44ae-b509-8ca12a4c7356", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1595, + "trimY": 710, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7.png": { + "ver": "1.0.6", + "uuid": "f1ebbd1a-6f8a-453b-b0ef-492ffb2613ac", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 1175, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8.png": { + "ver": "1.0.6", + "uuid": "b9b7b7f7-add9-4ea8-96d5-8e2a7f1e2eb2", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1595, + "trimY": 743, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9.png": { + "ver": "1.0.6", + "uuid": "302f11da-1f92-4ddc-a95f-db2e57f3c5f6", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 1208, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "action_hammer.png": { + "ver": "1.0.6", + "uuid": "f5894e5f-6334-44c9-987b-7f837e111df6", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1354, + "trimY": 1313, + "width": 158, + "height": 162, + "rawWidth": 158, + "rawHeight": 162, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "beginBg.png": { + "ver": "1.0.6", + "uuid": "ef56330c-96ea-457b-a224-2a33a8794239", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1375, + "width": 955, + "height": 240, + "rawWidth": 955, + "rawHeight": 240, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "beginBtn.png": { + "ver": "1.0.6", + "uuid": "0b565e09-0d97-4cb2-8eda-d6042d2c9f38", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1354, + "trimY": 677, + "width": 634, + "height": 172, + "rawWidth": 634, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "biaoti.png": { + "ver": "1.0.6", + "uuid": "9bc3af01-7f19-49fb-a07a-b8aa07936872", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 989, + "trimY": 677, + "width": 750, + "height": 222, + "rawWidth": 750, + "rawHeight": 222, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hamer_texiao.png": { + "ver": "1.0.6", + "uuid": "c6f8ffa4-06a3-4b1f-97c6-1ddacabfa958", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 958, + "trimY": 1429, + "width": 239, + "height": 182, + "rawWidth": 239, + "rawHeight": 182, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hammer_action.png": { + "ver": "1.0.6", + "uuid": "9726e260-c07d-42f7-b3d2-159788d155da", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 989, + "trimY": 1, + "width": 674, + "height": 638, + "rawWidth": 674, + "rawHeight": 638, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mianfei.png": { + "ver": "1.0.6", + "uuid": "6f2c00ff-850d-4d6e-a21d-3bafc12ca701", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1213, + "trimY": 1378, + "width": 100, + "height": 56, + "rawWidth": 100, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shengXiao.png": { + "ver": "1.0.6", + "uuid": "0db28536-5e1c-480c-9b48-509e1bf5d4e1", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1528, + "trimY": 1062, + "width": 224, + "height": 42, + "rawWidth": 224, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title_hammer.png": { + "ver": "1.0.6", + "uuid": "939a9879-5f49-4cd7-a70c-ef3d6064b965", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1528, + "trimY": 677, + "width": 383, + "height": 65, + "rawWidth": 383, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title_tishi.png": { + "ver": "1.0.6", + "uuid": "5f7614df-42e7-47ab-97c8-590b1fe58b1a", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1213, + "trimY": 677, + "width": 699, + "height": 139, + "rawWidth": 699, + "rawHeight": 139, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "waikuang.png": { + "ver": "1.0.6", + "uuid": "40d2868c-d024-4dcb-9a20-83490fac82dc", + "importer": "sprite-frame", + "rawTextureUuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 986, + "height": 1372, + "rawWidth": 986, + "rawHeight": 1372, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/action_hammer.png b/assets/UI/UI/pop/action_hammer.png new file mode 100644 index 0000000..e22c402 Binary files /dev/null and b/assets/UI/UI/pop/action_hammer.png differ diff --git a/assets/UI/UI/pop/action_hammer.png.meta b/assets/UI/UI/pop/action_hammer.png.meta new file mode 100644 index 0000000..3afb110 --- /dev/null +++ b/assets/UI/UI/pop/action_hammer.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "5f28cc0c-122e-4e2e-a069-53f0252f9eb8", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1628, + "height": 1616, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/pop/diban.png b/assets/UI/UI/pop/diban.png new file mode 100644 index 0000000..28a5160 Binary files /dev/null and b/assets/UI/UI/pop/diban.png differ diff --git a/assets/UI/UI/pop/diban.png.meta b/assets/UI/UI/pop/diban.png.meta new file mode 100644 index 0000000..b52b4e6 --- /dev/null +++ b/assets/UI/UI/pop/diban.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "98aeb25c-07cf-4725-b630-826acd38e6aa", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 113, + "platformSettings": {}, + "subMetas": { + "diban": { + "ver": "1.0.6", + "uuid": "49e57dd4-0938-4a95-8991-8a2f6e8d24f2", + "importer": "sprite-frame", + "rawTextureUuid": "98aeb25c-07cf-4725-b630-826acd38e6aa", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 113, + "rawWidth": 1080, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/gameui.plist b/assets/UI/UI/pop/gameui.plist new file mode 100644 index 0000000..98532a0 --- /dev/null +++ b/assets/UI/UI/pop/gameui.plist @@ -0,0 +1,1316 @@ + + + + + frames + + 100miao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {281,71} + spriteSourceSize + {281,71} + textureRect + {{1641,1466},{281,71}} + textureRotated + + + 20miao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {255,70} + spriteSourceSize + {255,70} + textureRect + {{1714,1455},{255,70}} + textureRotated + + + 30miao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {255,70} + spriteSourceSize + {255,70} + textureRect + {{1786,1432},{255,70}} + textureRotated + + + add.png + + aliases + + spriteOffset + {0,0} + spriteSize + {76,82} + spriteSourceSize + {76,82} + textureRect + {{1946,1320},{76,82}} + textureRotated + + + anniu.png + + aliases + + spriteOffset + {0,0} + spriteSize + {636,174} + spriteSourceSize + {636,174} + textureRect + {{59,873},{636,174}} + textureRotated + + + baozha.png + + aliases + + spriteOffset + {0,0} + spriteSize + {348,66} + spriteSourceSize + {348,66} + textureRect + {{415,1885},{348,66}} + textureRotated + + + bgl.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,172} + spriteSourceSize + {154,172} + textureRect + {{1621,1016},{154,172}} + textureRotated + + + btn_lq.png + + aliases + + spriteOffset + {0,0} + spriteSize + {453,194} + spriteSourceSize + {453,194} + textureRect + {{1041,777},{453,194}} + textureRotated + + + btn_lq2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {189,89} + spriteSourceSize + {189,89} + textureRect + {{1501,1780},{189,89}} + textureRotated + + + chubuqule.png + + aliases + + spriteOffset + {0,0} + spriteSize + {281,64} + spriteSourceSize + {281,64} + textureRect + {{1668,1172},{281,64}} + textureRotated + + + chuizi.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {306,316} + spriteSourceSize + {316,316} + textureRect + {{1040,1232},{306,316}} + textureRotated + + + chuizis.png + + aliases + + spriteOffset + {0,1} + spriteSize + {126,132} + spriteSourceSize + {150,150} + textureRect + {{1795,1010},{126,132}} + textureRotated + + + clock.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {238,284} + spriteSourceSize + {284,284} + textureRect + {{1484,165},{238,284}} + textureRotated + + + clocks.png + + aliases + + spriteOffset + {0,0} + spriteSize + {80,100} + spriteSourceSize + {80,100} + textureRect + {{1923,1011},{80,100}} + textureRotated + + + close.png + + aliases + + spriteOffset + {0,0} + spriteSize + {264,104} + spriteSourceSize + {264,104} + textureRect + {{1446,451},{264,104}} + textureRotated + + + closet.png + + aliases + + spriteOffset + {0,0} + spriteSize + {66,66} + spriteSourceSize + {66,66} + textureRect + {{955,1739},{66,66}} + textureRotated + + + coin_kuang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {312,62} + spriteSourceSize + {312,62} + textureRect + {{1548,1175},{312,62}} + textureRotated + + + coins.png + + aliases + + spriteOffset + {0,0} + spriteSize + {86,98} + spriteSourceSize + {86,98} + textureRect + {{1921,1778},{86,98}} + textureRotated + + + coins4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {171,191} + spriteSourceSize + {171,191} + textureRect + {{1592,1774},{171,191}} + textureRotated + + + didaoju.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,64} + spriteSourceSize + {58,64} + textureRect + {{1714,1712},{58,64}} + textureRotated + + + diguan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {234,36} + spriteSourceSize + {234,36} + textureRect + {{1994,688},{234,36}} + textureRotated + + + dikuang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {802,118} + spriteSourceSize + {802,118} + textureRect + {{912,1},{802,118}} + textureRotated + + + door.png + + aliases + + spriteOffset + {0,1} + spriteSize + {616,96} + spriteSourceSize + {616,100} + textureRect + {{735,341},{616,96}} + textureRotated + + + doudakai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {322,64} + spriteSourceSize + {322,64} + textureRect + {{1716,1},{322,64}} + textureRotated + + + exit.png + + aliases + + spriteOffset + {0,0} + spriteSize + {144,164} + spriteSourceSize + {144,164} + textureRect + {{1179,611},{144,164}} + textureRotated + + + fangqi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {291,66} + spriteSourceSize + {291,66} + textureRect + {{1926,718},{291,66}} + textureRotated + + + fanhui.png + + aliases + + spriteOffset + {0,0} + spriteSize + {434,144} + spriteSourceSize + {434,144} + textureRect + {{519,1739},{434,144}} + textureRotated + + + giveup.png + + aliases + + spriteOffset + {0,0} + spriteSize + {434,144} + spriteSourceSize + {434,144} + textureRect + {{1237,777},{434,144}} + textureRotated + + + goon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {476,164} + spriteSourceSize + {476,164} + textureRect + {{701,611},{476,164}} + textureRotated + + + gui_chiuzi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {320,310} + spriteSourceSize + {320,310} + textureRect + {{728,1129},{320,310}} + textureRotated + + + gui_mofa.png + + aliases + + spriteOffset + {0,0} + spriteSize + {311,350} + spriteSourceSize + {311,350} + textureRect + {{728,777},{311,350}} + textureRotated + + + gui_shizhong.png + + aliases + + spriteOffset + {0,0} + spriteSize + {297,323} + spriteSourceSize + {297,323} + textureRect + {{1030,1550},{297,323}} + textureRotated + + + guide.png + + aliases + + spriteOffset + {0,0} + spriteSize + {174,236} + spriteSourceSize + {174,236} + textureRect + {{1383,999},{174,236}} + textureRotated + + + haoyun.png + + aliases + + spriteOffset + {0,0} + spriteSize + {412,65} + spriteSourceSize + {412,65} + textureRect + {{1,1877},{412,65}} + textureRotated + + + houhuifu.png + + aliases + + spriteOffset + {0,0} + spriteSize + {289,54} + spriteSourceSize + {289,54} + textureRect + {{1612,1175},{289,54}} + textureRotated + + + hpme.png + + aliases + + spriteOffset + {0,0} + spriteSize + {586,57} + spriteSourceSize + {586,57} + textureRect + {{735,439},{586,57}} + textureRotated + + + huifuyidian.png + + aliases + + spriteOffset + {0,0} + spriteSize + {561,54} + spriteSourceSize + {561,54} + textureRect + {{702,555},{561,54}} + textureRotated + + + iceb.png + + aliases + + spriteOffset + {0,1} + spriteSize + {242,294} + spriteSourceSize + {316,316} + textureRect + {{1383,703},{242,294}} + textureRotated + + + ices.png + + aliases + + spriteOffset + {0,1} + spriteSize + {108,130} + spriteSourceSize + {150,150} + textureRect + {{1814,1320},{108,130}} + textureRotated + + + jianshao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {363,57} + spriteSourceSize + {363,57} + textureRect + {{955,1849},{363,57}} + textureRotated + + + jianshaohp.png + + aliases + + spriteOffset + {0,0} + spriteSize + {586,57} + spriteSourceSize + {586,57} + textureRect + {{735,439},{586,57}} + textureRotated + + + jinruguanqiaq.png + + aliases + + spriteOffset + {0,0} + spriteSize + {516,164} + spriteSourceSize + {516,164} + textureRect + {{1,1711},{516,164}} + textureRotated + + + jixu.png + + aliases + + spriteOffset + {0,0} + spriteSize + {476,164} + spriteSourceSize + {476,164} + textureRect + {{701,611},{476,164}} + textureRotated + + + kuang.png.jpg + + aliases + + spriteOffset + {0,0} + spriteSize + {314,96} + spriteSourceSize + {314,96} + textureRect + {{1348,1213},{314,96}} + textureRotated + + + lock.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,172} + spriteSourceSize + {154,172} + textureRect + {{1858,1430},{154,172}} + textureRotated + + + lockzi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {109,32} + spriteSourceSize + {109,32} + textureRect + {{735,307},{109,32}} + textureRotated + + + meijinbi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {158,44} + spriteSourceSize + {158,44} + textureRect + {{1961,528},{158,44}} + textureRotated + + + nali.png + + aliases + + spriteOffset + {0,0} + spriteSize + {582,55} + spriteSourceSize + {582,55} + textureRect + {{702,498},{582,55}} + textureRotated + + + next.png + + aliases + + spriteOffset + {0,0} + spriteSize + {636,174} + spriteSourceSize + {636,174} + textureRect + {{235,873},{636,174}} + textureRotated + + + ninyihuode.png + + aliases + + spriteOffset + {0,0} + spriteSize + {189,43} + spriteSourceSize + {189,43} + textureRect + {{1152,1908},{189,43}} + textureRotated + + + nuliyixia.png + + aliases + + spriteOffset + {0,0} + spriteSize + {766,56} + spriteSourceSize + {766,56} + textureRect + {{1,873},{766,56}} + textureRotated + + + nulldaoju.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,172} + spriteSourceSize + {154,172} + textureRect + {{1858,1604},{154,172}} + textureRotated + + + open.png + + aliases + + spriteOffset + {0,0} + spriteSize + {264,104} + spriteSourceSize + {264,104} + textureRect + {{1745,718},{264,104}} + textureRotated + + + pskuang.png + + aliases + + spriteOffset + {-155.5,46.5} + spriteSize + {3,3} + spriteSourceSize + {314,96} + textureRect + {{846,156},{3,3}} + textureRotated + + + return.png + + aliases + + spriteOffset + {0,0} + spriteSize + {434,144} + spriteSourceSize + {434,144} + textureRect + {{1355,1529},{434,144}} + textureRotated + + + set.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,174} + spriteSourceSize + {154,174} + textureRect + {{1814,1144},{154,174}} + textureRotated + + + shijaijndaol.png + + aliases + + spriteOffset + {0,0} + spriteSize + {283,64} + spriteSourceSize + {283,64} + textureRect + {{1575,1489},{283,64}} + textureRotated + + + starb.png + + aliases + + spriteOffset + {8,-7} + spriteSize + {286,300} + spriteSourceSize + {316,316} + textureRect + {{728,1451},{286,300}} + textureRotated + + + stars.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {116,120} + spriteSourceSize + {150,150} + textureRect + {{1323,439},{116,120}} + textureRotated + + + start.png + + aliases + + spriteOffset + {0,0} + spriteSize + {520,198} + spriteSourceSize + {520,198} + textureRect + {{59,1511},{520,198}} + textureRotated + + + stay.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,78} + spriteSourceSize + {258,78} + textureRect + {{1734,1172},{258,78}} + textureRotated + + + stop.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,172} + spriteSourceSize + {154,172} + textureRect + {{1765,1778},{154,172}} + textureRotated + + + stopzi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {150,65} + spriteSourceSize + {150,65} + textureRect + {{765,1885},{150,65}} + textureRotated + + + tili.png + + aliases + + spriteOffset + {0,0} + spriteSize + {127,65} + spriteSourceSize + {127,65} + textureRect + {{1353,341},{127,65}} + textureRotated + + + tilibuman.png + + aliases + + spriteOffset + {0,0} + spriteSize + {290,73} + spriteSourceSize + {290,73} + textureRect + {{1851,718},{290,73}} + textureRotated + + + tiliyiman.png + + aliases + + spriteOffset + {0,0} + spriteSize + {233,55} + spriteSourceSize + {233,55} + textureRect + {{917,1908},{233,55}} + textureRotated + + + tishi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {777,42} + spriteSourceSize + {777,42} + textureRect + {{912,121},{777,42}} + textureRotated + + + touxiang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,198} + spriteSourceSize + {188,198} + textureRect + {{1761,528},{188,198}} + textureRotated + + + try.png + + aliases + + spriteOffset + {0,0} + spriteSize + {636,174} + spriteSourceSize + {636,174} + textureRect + {{411,873},{636,174}} + textureRotated + + + trya.png + + aliases + + spriteOffset + {0,0} + spriteSize + {144,164} + spriteSourceSize + {144,164} + textureRect + {{581,1533},{144,164}} + textureRotated + + + tuichu.png + + aliases + + spriteOffset + {0,0} + spriteSize + {434,144} + spriteSourceSize + {434,144} + textureRect + {{1325,557},{434,144}} + textureRotated + + + txt_1c.png + + aliases + + spriteOffset + {0,0} + spriteSize + {909,153} + spriteSourceSize + {909,153} + textureRect + {{1,1},{909,153}} + textureRotated + + + txt_2c.png + + aliases + + spriteOffset + {0,0} + spriteSize + {699,138} + spriteSourceSize + {699,138} + textureRect + {{1,451},{699,138}} + textureRotated + + + txt_3m.png + + aliases + + spriteOffset + {0,0} + spriteSize + {843,149} + spriteSourceSize + {843,149} + textureRect + {{1,156},{843,149}} + textureRotated + + + txt_4m.png + + aliases + + spriteOffset + {0,0} + spriteSize + {658,139} + spriteSourceSize + {658,139} + textureRect + {{587,873},{658,139}} + textureRotated + + + txt_5t.png + + aliases + + spriteOffset + {0,0} + spriteSize + {732,142} + spriteSourceSize + {732,142} + textureRect + {{1,307},{732,142}} + textureRotated + + + txt_6t.png + + aliases + + spriteOffset + {0,0} + spriteSize + {698,138} + spriteSourceSize + {698,138} + textureRect + {{1,591},{698,138}} + textureRotated + + + xiangxiang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {636,174} + spriteSourceSize + {636,174} + textureRect + {{846,165},{636,174}} + textureRotated + + + ximie.png + + aliases + + spriteOffset + {0,0} + spriteSize + {692,140} + spriteSourceSize + {692,140} + textureRect + {{1,731},{692,140}} + textureRotated + + + xin.png + + aliases + + spriteOffset + {0,0} + spriteSize + {94,90} + spriteSourceSize + {98,98} + textureRect + {{1921,1878},{94,90}} + textureRotated + + + xinsui.png + + aliases + + spriteOffset + {0,0} + spriteSize + {340,278} + spriteSourceSize + {340,340} + textureRect + {{1724,67},{340,278}} + textureRotated + + + yichu.png + + aliases + + spriteOffset + {0,0} + spriteSize + {289,72} + spriteSourceSize + {289,72} + textureRect + {{1501,1489},{289,72}} + textureRotated + + + yiman.png + + aliases + + spriteOffset + {0,0} + spriteSize + {72,36} + spriteSourceSize + {72,36} + textureRect + {{1325,703},{72,36}} + textureRotated + + + yinxiao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {311,116} + spriteSourceSize + {311,116} + textureRect + {{1627,703},{311,116}} + textureRotated + + + yinyue1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {311,100} + spriteSourceSize + {311,100} + textureRect + {{1446,1175},{311,100}} + textureRotated + + + zhendong1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {314,117} + spriteSourceSize + {314,117} + textureRect + {{1724,409},{314,117}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + gameui.png + size + {2039,1970} + smartupdate + $TexturePacker:SmartUpdate:796430d3c8dab19d45b1c4d4db02ecc7:b7a5134cef19debbc05bec73485b87ed:13103c15d0108e7aab1316a48f90f5be$ + textureFileName + gameui.png + + + diff --git a/assets/UI/UI/pop/gameui.plist.meta b/assets/UI/UI/pop/gameui.plist.meta new file mode 100644 index 0000000..f2d067d --- /dev/null +++ b/assets/UI/UI/pop/gameui.plist.meta @@ -0,0 +1,1991 @@ +{ + "ver": "1.2.6", + "uuid": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8", + "importer": "asset", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "size": { + "width": 2039, + "height": 1970 + }, + "type": "Texture Packer", + "subMetas": { + "100miao.png": { + "ver": "1.0.6", + "uuid": "921f5809-29ec-4c9f-aad5-25312a030348", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1641, + "trimY": 1466, + "width": 281, + "height": 71, + "rawWidth": 281, + "rawHeight": 71, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "20miao.png": { + "ver": "1.0.6", + "uuid": "9a0bcbd1-387d-41a4-a251-9e8614b8deab", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1714, + "trimY": 1455, + "width": 255, + "height": 70, + "rawWidth": 255, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "30miao.png": { + "ver": "1.0.6", + "uuid": "6187a458-d96f-4e79-9543-630809e52c8f", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1786, + "trimY": 1432, + "width": 255, + "height": 70, + "rawWidth": 255, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "add.png": { + "ver": "1.0.6", + "uuid": "454da3cf-9723-487d-bcbb-ac6d823044bf", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1946, + "trimY": 1320, + "width": 76, + "height": 82, + "rawWidth": 76, + "rawHeight": 82, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "anniu.png": { + "ver": "1.0.6", + "uuid": "1fd745f8-009d-4a16-aa79-68e518664e6e", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 59, + "trimY": 873, + "width": 636, + "height": 174, + "rawWidth": 636, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "baozha.png": { + "ver": "1.0.6", + "uuid": "36fb21ec-47c2-4099-9b17-d674066438f2", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 415, + "trimY": 1885, + "width": 348, + "height": 66, + "rawWidth": 348, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "bgl.png": { + "ver": "1.0.6", + "uuid": "f59f49b5-c091-4eb7-9957-61526eb30f3d", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1621, + "trimY": 1016, + "width": 154, + "height": 172, + "rawWidth": 154, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_lq.png": { + "ver": "1.0.6", + "uuid": "9d485667-ac50-4367-807b-f5ef469b2df6", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1041, + "trimY": 777, + "width": 453, + "height": 194, + "rawWidth": 453, + "rawHeight": 194, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_lq2.png": { + "ver": "1.0.6", + "uuid": "48288f2c-087f-4ffb-88ec-8d386b3cfee2", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1501, + "trimY": 1780, + "width": 189, + "height": 89, + "rawWidth": 189, + "rawHeight": 89, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "chubuqule.png": { + "ver": "1.0.6", + "uuid": "2dbab140-447b-4863-849a-4378914bb398", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1668, + "trimY": 1172, + "width": 281, + "height": 64, + "rawWidth": 281, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "chuizi.png": { + "ver": "1.0.6", + "uuid": "bca46f6f-1c18-46c4-b7ee-2b28d311a5ae", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1040, + "trimY": 1232, + "width": 306, + "height": 316, + "rawWidth": 316, + "rawHeight": 316, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "chuizis.png": { + "ver": "1.0.6", + "uuid": "d3c893c0-12a0-41c1-a55b-b2b8c269c26b", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 1795, + "trimY": 1010, + "width": 126, + "height": 132, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "clock.png": { + "ver": "1.0.6", + "uuid": "a8496263-a191-44c8-b3d8-d1e7cd275fdf", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1484, + "trimY": 165, + "width": 238, + "height": 284, + "rawWidth": 284, + "rawHeight": 284, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "clocks.png": { + "ver": "1.0.6", + "uuid": "6a1403dd-01e2-4fd7-b29d-5d11bbc4b5bd", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1923, + "trimY": 1011, + "width": 80, + "height": 100, + "rawWidth": 80, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "close.png": { + "ver": "1.0.6", + "uuid": "40b263ac-9213-429d-b358-730e59b237fc", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1446, + "trimY": 451, + "width": 264, + "height": 104, + "rawWidth": 264, + "rawHeight": 104, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "closet.png": { + "ver": "1.0.6", + "uuid": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 955, + "trimY": 1739, + "width": 66, + "height": 66, + "rawWidth": 66, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_kuang.png": { + "ver": "1.0.6", + "uuid": "eaa56c04-9ea7-422f-bbbc-205ac4e1bec0", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1548, + "trimY": 1175, + "width": 312, + "height": 62, + "rawWidth": 312, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins.png": { + "ver": "1.0.6", + "uuid": "b94c323b-3d26-4684-ba64-0f00a13438d2", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1921, + "trimY": 1778, + "width": 86, + "height": 98, + "rawWidth": 86, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins4.png": { + "ver": "1.0.6", + "uuid": "c2bd513a-a1ab-44fa-9d02-6ce2b94cfd7a", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1592, + "trimY": 1774, + "width": 171, + "height": 191, + "rawWidth": 171, + "rawHeight": 191, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "didaoju.png": { + "ver": "1.0.6", + "uuid": "e01cc1ef-ee40-4f68-ac47-556f72129210", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1714, + "trimY": 1712, + "width": 58, + "height": 64, + "rawWidth": 58, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "diguan.png": { + "ver": "1.0.6", + "uuid": "fd06b371-85a5-40dc-b997-70701bf6a5ff", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1994, + "trimY": 688, + "width": 234, + "height": 36, + "rawWidth": 234, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dikuang.png": { + "ver": "1.0.6", + "uuid": "79cf65a4-9853-4eba-9d1e-6551a28f3d6e", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 912, + "trimY": 1, + "width": 802, + "height": 118, + "rawWidth": 802, + "rawHeight": 118, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "door.png": { + "ver": "1.0.6", + "uuid": "adbcec35-6729-4d5c-983a-7ab1cccb8b36", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 735, + "trimY": 341, + "width": 616, + "height": 96, + "rawWidth": 616, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "doudakai.png": { + "ver": "1.0.6", + "uuid": "81f6c939-816a-469b-9429-1c3a746ef961", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1716, + "trimY": 1, + "width": 322, + "height": 64, + "rawWidth": 322, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "exit.png": { + "ver": "1.0.6", + "uuid": "1d5174db-1f3f-4bc2-ba08-81c80f25f376", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1179, + "trimY": 611, + "width": 144, + "height": 164, + "rawWidth": 144, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "fangqi.png": { + "ver": "1.0.6", + "uuid": "255341b2-a231-4265-b923-8e7c5e0fef83", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1926, + "trimY": 718, + "width": 291, + "height": 66, + "rawWidth": 291, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "fanhui.png": { + "ver": "1.0.6", + "uuid": "c932b16b-a071-4939-b25b-a246d3798854", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 519, + "trimY": 1739, + "width": 434, + "height": 144, + "rawWidth": 434, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "giveup.png": { + "ver": "1.0.6", + "uuid": "d33ab7fd-d515-4c41-85bb-e923cdcd2ef2", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1237, + "trimY": 777, + "width": 434, + "height": 144, + "rawWidth": 434, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "goon.png": { + "ver": "1.0.6", + "uuid": "0627b7be-af35-4562-8e32-09afd533d061", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 701, + "trimY": 611, + "width": 476, + "height": 164, + "rawWidth": 476, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "gui_chiuzi.png": { + "ver": "1.0.6", + "uuid": "b2e7f800-7deb-41af-b252-ef143637afde", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 728, + "trimY": 1129, + "width": 320, + "height": 310, + "rawWidth": 320, + "rawHeight": 310, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "gui_mofa.png": { + "ver": "1.0.6", + "uuid": "7ca1fd9a-f782-4724-9314-edda1879b702", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 728, + "trimY": 777, + "width": 311, + "height": 350, + "rawWidth": 311, + "rawHeight": 350, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "gui_shizhong.png": { + "ver": "1.0.6", + "uuid": "f5a0c53e-da08-4b4a-a317-e4643f37e347", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1030, + "trimY": 1550, + "width": 297, + "height": 323, + "rawWidth": 297, + "rawHeight": 323, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "guide.png": { + "ver": "1.0.6", + "uuid": "4eb4acd8-2b6a-4638-b03b-c0bb92d75853", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1383, + "trimY": 999, + "width": 174, + "height": 236, + "rawWidth": 174, + "rawHeight": 236, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "haoyun.png": { + "ver": "1.0.6", + "uuid": "c5e5470d-260b-4a2b-8e19-f62edd6ca333", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1877, + "width": 412, + "height": 65, + "rawWidth": 412, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "houhuifu.png": { + "ver": "1.0.6", + "uuid": "6db6f55d-8ec0-487d-8780-38c8f1cc40da", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1612, + "trimY": 1175, + "width": 289, + "height": 54, + "rawWidth": 289, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hpme.png": { + "ver": "1.0.6", + "uuid": "f3fe0271-e9d5-4907-9542-980e47b4deaa", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 735, + "trimY": 439, + "width": 586, + "height": 57, + "rawWidth": 586, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "huifuyidian.png": { + "ver": "1.0.6", + "uuid": "7e089816-7c3a-4f58-baff-1023aceab868", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 702, + "trimY": 555, + "width": 561, + "height": 54, + "rawWidth": 561, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "iceb.png": { + "ver": "1.0.6", + "uuid": "23571a02-48ac-4289-a9f7-0ae0a2c3ece4", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 1383, + "trimY": 703, + "width": 242, + "height": 294, + "rawWidth": 316, + "rawHeight": 316, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ices.png": { + "ver": "1.0.6", + "uuid": "bfbb9ff2-ac2a-4db2-bd1d-21f0f3caa50e", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 1, + "trimX": 1814, + "trimY": 1320, + "width": 108, + "height": 130, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jianshao.png": { + "ver": "1.0.6", + "uuid": "d87325df-9475-4450-a687-6d334e15ba83", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 955, + "trimY": 1849, + "width": 363, + "height": 57, + "rawWidth": 363, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jianshaohp.png": { + "ver": "1.0.6", + "uuid": "515197c3-1b04-4ef9-aa31-bfc11ffc3856", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 735, + "trimY": 439, + "width": 586, + "height": 57, + "rawWidth": 586, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jinruguanqiaq.png": { + "ver": "1.0.6", + "uuid": "b4acf893-be37-47c3-adee-6cc6509aeb39", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1711, + "width": 516, + "height": 164, + "rawWidth": 516, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jixu.png": { + "ver": "1.0.6", + "uuid": "2dd95867-8045-4c12-b62d-63410aa9f42c", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 701, + "trimY": 611, + "width": 476, + "height": 164, + "rawWidth": 476, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang.png.jpg": { + "ver": "1.0.6", + "uuid": "987126d4-186f-4c4a-9de5-66cf0945aa30", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1348, + "trimY": 1213, + "width": 314, + "height": 96, + "rawWidth": 314, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock.png": { + "ver": "1.0.6", + "uuid": "9b971e4b-5afc-4ee9-8489-79bccb310650", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1858, + "trimY": 1430, + "width": 154, + "height": 172, + "rawWidth": 154, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lockzi.png": { + "ver": "1.0.6", + "uuid": "25a14958-382d-4e1c-8d14-5c5d6e26db72", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 735, + "trimY": 307, + "width": 109, + "height": 32, + "rawWidth": 109, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "meijinbi.png": { + "ver": "1.0.6", + "uuid": "d0dd40cc-28d1-4024-b235-e0e4576d6c12", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1961, + "trimY": 528, + "width": 158, + "height": 44, + "rawWidth": 158, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "nali.png": { + "ver": "1.0.6", + "uuid": "7fe23229-5813-4824-a189-cf27dd1fde3d", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 702, + "trimY": 498, + "width": 582, + "height": 55, + "rawWidth": 582, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "next.png": { + "ver": "1.0.6", + "uuid": "84c371e6-3d38-45cb-9167-46f080e2f1a3", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 235, + "trimY": 873, + "width": 636, + "height": 174, + "rawWidth": 636, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ninyihuode.png": { + "ver": "1.0.6", + "uuid": "75782468-578c-4cb4-b082-cdf97059d564", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1152, + "trimY": 1908, + "width": 189, + "height": 43, + "rawWidth": 189, + "rawHeight": 43, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "nuliyixia.png": { + "ver": "1.0.6", + "uuid": "3123ef6d-9c79-4e02-b5bb-4f935e968521", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 873, + "width": 766, + "height": 56, + "rawWidth": 766, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "nulldaoju.png": { + "ver": "1.0.6", + "uuid": "b1779068-3fb8-4c63-83a8-cfa43fd79344", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1858, + "trimY": 1604, + "width": 154, + "height": 172, + "rawWidth": 154, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "open.png": { + "ver": "1.0.6", + "uuid": "02f5073d-b0ce-4c13-bc77-3cf9d93cee71", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1745, + "trimY": 718, + "width": 264, + "height": 104, + "rawWidth": 264, + "rawHeight": 104, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "pskuang.png": { + "ver": "1.0.6", + "uuid": "ee1facf1-d4ea-41ff-a9cb-c782c64f0710", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -155.5, + "offsetY": 46.5, + "trimX": 846, + "trimY": 156, + "width": 3, + "height": 3, + "rawWidth": 314, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "return.png": { + "ver": "1.0.6", + "uuid": "39786f04-d554-4943-b731-277ce4e7f66d", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1355, + "trimY": 1529, + "width": 434, + "height": 144, + "rawWidth": 434, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "set.png": { + "ver": "1.0.6", + "uuid": "ca9d29a4-c494-48de-92ca-ceb9fd545295", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1814, + "trimY": 1144, + "width": 154, + "height": 174, + "rawWidth": 154, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shijaijndaol.png": { + "ver": "1.0.6", + "uuid": "b0728043-e01f-4577-84e4-a11d3184b397", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1575, + "trimY": 1489, + "width": 283, + "height": 64, + "rawWidth": 283, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "starb.png": { + "ver": "1.0.6", + "uuid": "7ddd5001-543c-4725-ba8d-4e97668eb297", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 8, + "offsetY": -7, + "trimX": 728, + "trimY": 1451, + "width": 286, + "height": 300, + "rawWidth": 316, + "rawHeight": 316, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "stars.png": { + "ver": "1.0.6", + "uuid": "beb1c917-b808-433b-972c-a91812483a6c", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 0, + "trimX": 1323, + "trimY": 439, + "width": 116, + "height": 120, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "start.png": { + "ver": "1.0.6", + "uuid": "7bdeeea3-216c-41e3-bc6c-69b497207f84", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 59, + "trimY": 1511, + "width": 520, + "height": 198, + "rawWidth": 520, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "stay.png": { + "ver": "1.0.6", + "uuid": "c6a597f3-a4e3-4687-9685-f866df8eabc7", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1734, + "trimY": 1172, + "width": 258, + "height": 78, + "rawWidth": 258, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "stop.png": { + "ver": "1.0.6", + "uuid": "3992b89e-8452-4af0-8388-2f9e46cb77c7", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1765, + "trimY": 1778, + "width": 154, + "height": 172, + "rawWidth": 154, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "stopzi.png": { + "ver": "1.0.6", + "uuid": "1e7a4c08-5881-4666-9d03-226bb1eed118", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 765, + "trimY": 1885, + "width": 150, + "height": 65, + "rawWidth": 150, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili.png": { + "ver": "1.0.6", + "uuid": "0e2f030a-700f-43c2-b65c-3060fcbe0583", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1353, + "trimY": 341, + "width": 127, + "height": 65, + "rawWidth": 127, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tilibuman.png": { + "ver": "1.0.6", + "uuid": "5a5d61c4-dfe8-4b1d-bf90-e28dc6d6386b", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1851, + "trimY": 718, + "width": 290, + "height": 73, + "rawWidth": 290, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tiliyiman.png": { + "ver": "1.0.6", + "uuid": "43fca32a-925b-4ddb-9f96-fa5750d60cfb", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 917, + "trimY": 1908, + "width": 233, + "height": 55, + "rawWidth": 233, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tishi.png": { + "ver": "1.0.6", + "uuid": "0e826121-13ce-43e5-896b-191e4a6660c2", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 912, + "trimY": 121, + "width": 777, + "height": 42, + "rawWidth": 777, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "touxiang.png": { + "ver": "1.0.6", + "uuid": "4ce61e08-eb3f-4797-86f7-d0c318f4174c", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1761, + "trimY": 528, + "width": 188, + "height": 198, + "rawWidth": 188, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "try.png": { + "ver": "1.0.6", + "uuid": "d7f6bfb4-ca3e-4653-99d9-c8b25fe7d3a7", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 411, + "trimY": 873, + "width": 636, + "height": 174, + "rawWidth": 636, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "trya.png": { + "ver": "1.0.6", + "uuid": "822b5014-4bfe-4c85-aecf-d5ff5cfde207", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 581, + "trimY": 1533, + "width": 144, + "height": 164, + "rawWidth": 144, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tuichu.png": { + "ver": "1.0.6", + "uuid": "e711bf3b-8b72-412a-b5c6-cc3de6fceae0", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1325, + "trimY": 557, + "width": 434, + "height": 144, + "rawWidth": 434, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt_1c.png": { + "ver": "1.0.6", + "uuid": "96c15a92-de65-418b-b50a-bfd88632c62f", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 909, + "height": 153, + "rawWidth": 909, + "rawHeight": 153, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt_2c.png": { + "ver": "1.0.6", + "uuid": "616721ba-7e1e-4527-ae04-e85eab5f1294", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 451, + "width": 699, + "height": 138, + "rawWidth": 699, + "rawHeight": 138, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt_3m.png": { + "ver": "1.0.6", + "uuid": "e9eaadb5-b97d-443a-b2fb-37788be15458", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 156, + "width": 843, + "height": 149, + "rawWidth": 843, + "rawHeight": 149, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt_4m.png": { + "ver": "1.0.6", + "uuid": "e5407fd9-4e73-4c83-b03f-4aac59a10211", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 587, + "trimY": 873, + "width": 658, + "height": 139, + "rawWidth": 658, + "rawHeight": 139, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt_5t.png": { + "ver": "1.0.6", + "uuid": "4ce23cc5-ef36-458f-bd65-2183659ed1fb", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 307, + "width": 732, + "height": 142, + "rawWidth": 732, + "rawHeight": 142, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt_6t.png": { + "ver": "1.0.6", + "uuid": "69f2ab69-c51f-49f3-92dc-9ca27bfe6e32", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 591, + "width": 698, + "height": 138, + "rawWidth": 698, + "rawHeight": 138, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xiangxiang.png": { + "ver": "1.0.6", + "uuid": "c3bf0b81-eeab-4042-b247-e3576fd7932b", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 846, + "trimY": 165, + "width": 636, + "height": 174, + "rawWidth": 636, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ximie.png": { + "ver": "1.0.6", + "uuid": "4564c5d4-503a-4d52-ab07-8f71a3fa1d88", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 731, + "width": 692, + "height": 140, + "rawWidth": 692, + "rawHeight": 140, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xin.png": { + "ver": "1.0.6", + "uuid": "1b88098e-b461-4230-8c49-c0b6d0ee6376", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1921, + "trimY": 1878, + "width": 94, + "height": 90, + "rawWidth": 98, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xinsui.png": { + "ver": "1.0.6", + "uuid": "4ff8d76a-60c3-4bc3-a869-583473146a5f", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1724, + "trimY": 67, + "width": 340, + "height": 278, + "rawWidth": 340, + "rawHeight": 340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yichu.png": { + "ver": "1.0.6", + "uuid": "fea83333-5bb7-4949-b13e-2e0cf1d2704b", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1501, + "trimY": 1489, + "width": 289, + "height": 72, + "rawWidth": 289, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yiman.png": { + "ver": "1.0.6", + "uuid": "e46c5d40-1ace-4a5a-8178-cad3e8893f1d", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1325, + "trimY": 703, + "width": 72, + "height": 36, + "rawWidth": 72, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yinxiao.png": { + "ver": "1.0.6", + "uuid": "0c9d12f2-60f8-4cb4-8d5e-6499e8cedd7e", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1627, + "trimY": 703, + "width": 311, + "height": 116, + "rawWidth": 311, + "rawHeight": 116, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yinyue1.png": { + "ver": "1.0.6", + "uuid": "c87c3ebe-d12e-4a23-bb90-06fff1dc75d4", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1446, + "trimY": 1175, + "width": 311, + "height": 100, + "rawWidth": 311, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhendong1.png": { + "ver": "1.0.6", + "uuid": "87fa17a4-5583-43f0-b8b1-8179599ab5a8", + "importer": "sprite-frame", + "rawTextureUuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1724, + "trimY": 409, + "width": 314, + "height": 117, + "rawWidth": 314, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/gameui.png b/assets/UI/UI/pop/gameui.png new file mode 100644 index 0000000..448555e Binary files /dev/null and b/assets/UI/UI/pop/gameui.png differ diff --git a/assets/UI/UI/pop/gameui.png.meta b/assets/UI/UI/pop/gameui.png.meta new file mode 100644 index 0000000..9e9761d --- /dev/null +++ b/assets/UI/UI/pop/gameui.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "1f8faacb-88f6-4128-85d9-65adb5eeaa5d", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2039, + "height": 1970, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/pop/gongxi.png b/assets/UI/UI/pop/gongxi.png new file mode 100644 index 0000000..9865339 Binary files /dev/null and b/assets/UI/UI/pop/gongxi.png differ diff --git a/assets/UI/UI/pop/gongxi.png.meta b/assets/UI/UI/pop/gongxi.png.meta new file mode 100644 index 0000000..931fcd5 --- /dev/null +++ b/assets/UI/UI/pop/gongxi.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a8c14e1e-89f9-45f9-a8b1-03ff39ebd42b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 773, + "height": 180, + "platformSettings": {}, + "subMetas": { + "gongxi": { + "ver": "1.0.6", + "uuid": "3cac0c04-c634-4a91-8e3f-75c231e2cafe", + "importer": "sprite-frame", + "rawTextureUuid": "a8c14e1e-89f9-45f9-a8b1-03ff39ebd42b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 773, + "height": 180, + "rawWidth": 773, + "rawHeight": 180, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/gongxiguoguan.png b/assets/UI/UI/pop/gongxiguoguan.png new file mode 100644 index 0000000..eb312ea Binary files /dev/null and b/assets/UI/UI/pop/gongxiguoguan.png differ diff --git a/assets/UI/UI/pop/gongxiguoguan.png.meta b/assets/UI/UI/pop/gongxiguoguan.png.meta new file mode 100644 index 0000000..59ec377 --- /dev/null +++ b/assets/UI/UI/pop/gongxiguoguan.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "dc04885f-529c-4236-8529-f239c5bb719b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 747, + "height": 203, + "platformSettings": {}, + "subMetas": { + "gongxiguoguan": { + "ver": "1.0.6", + "uuid": "863644c9-9beb-4e25-9c0f-acab9a62cfdd", + "importer": "sprite-frame", + "rawTextureUuid": "dc04885f-529c-4236-8529-f239c5bb719b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 747, + "height": 203, + "rawWidth": 747, + "rawHeight": 203, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/guang.png b/assets/UI/UI/pop/guang.png new file mode 100644 index 0000000..577587c Binary files /dev/null and b/assets/UI/UI/pop/guang.png differ diff --git a/assets/UI/UI/pop/guang.png.meta b/assets/UI/UI/pop/guang.png.meta new file mode 100644 index 0000000..0729698 --- /dev/null +++ b/assets/UI/UI/pop/guang.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "546ae6cc-f3c3-459a-8f59-26bcdde0aced", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 650, + "height": 650, + "platformSettings": {}, + "subMetas": { + "guang": { + "ver": "1.0.6", + "uuid": "2e2278c3-1dc7-4672-8200-bfc317f4ad75", + "importer": "sprite-frame", + "rawTextureUuid": "546ae6cc-f3c3-459a-8f59-26bcdde0aced", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 6, + "width": 650, + "height": 638, + "rawWidth": 650, + "rawHeight": 650, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/guide.meta b/assets/UI/UI/pop/guide.meta new file mode 100644 index 0000000..31730b6 --- /dev/null +++ b/assets/UI/UI/pop/guide.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "516350a9-b063-46b2-a57a-3308303731ce", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/pop/guide/daojuditu.png b/assets/UI/UI/pop/guide/daojuditu.png new file mode 100644 index 0000000..37cbfb9 Binary files /dev/null and b/assets/UI/UI/pop/guide/daojuditu.png differ diff --git a/assets/UI/UI/pop/guide/daojuditu.png.meta b/assets/UI/UI/pop/guide/daojuditu.png.meta new file mode 100644 index 0000000..feec03d --- /dev/null +++ b/assets/UI/UI/pop/guide/daojuditu.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5a21bbb7-74b1-45df-bad7-83028af29c23", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 720, + "height": 702, + "platformSettings": {}, + "subMetas": { + "daojuditu": { + "ver": "1.0.6", + "uuid": "68078f7c-9c08-4ba0-9384-72c515aaa618", + "importer": "sprite-frame", + "rawTextureUuid": "5a21bbb7-74b1-45df-bad7-83028af29c23", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 720, + "height": 702, + "rawWidth": 720, + "rawHeight": 702, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/guide/landei.png b/assets/UI/UI/pop/guide/landei.png new file mode 100644 index 0000000..2880391 Binary files /dev/null and b/assets/UI/UI/pop/guide/landei.png differ diff --git a/assets/UI/UI/pop/guide/landei.png.meta b/assets/UI/UI/pop/guide/landei.png.meta new file mode 100644 index 0000000..c87d152 --- /dev/null +++ b/assets/UI/UI/pop/guide/landei.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a949a4f9-a44d-42d6-a722-6433142696af", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 720, + "height": 702, + "platformSettings": {}, + "subMetas": { + "landei": { + "ver": "1.0.6", + "uuid": "d597dbfa-8b35-4068-976b-f24f10688660", + "importer": "sprite-frame", + "rawTextureUuid": "a949a4f9-a44d-42d6-a722-6433142696af", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 720, + "height": 702, + "rawWidth": 720, + "rawHeight": 702, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/guide/linqu.png b/assets/UI/UI/pop/guide/linqu.png new file mode 100644 index 0000000..01391eb Binary files /dev/null and b/assets/UI/UI/pop/guide/linqu.png differ diff --git a/assets/UI/UI/pop/guide/linqu.png.meta b/assets/UI/UI/pop/guide/linqu.png.meta new file mode 100644 index 0000000..b227bd2 --- /dev/null +++ b/assets/UI/UI/pop/guide/linqu.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "c8b0b660-c70b-447b-acb8-b06fcf331406", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 516, + "height": 164, + "platformSettings": {}, + "subMetas": { + "linqu": { + "ver": "1.0.6", + "uuid": "c1834ee2-d741-4453-8ca3-863c9a982d1d", + "importer": "sprite-frame", + "rawTextureUuid": "c8b0b660-c70b-447b-acb8-b06fcf331406", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 516, + "height": 164, + "rawWidth": 516, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/guide/shuizi.png b/assets/UI/UI/pop/guide/shuizi.png new file mode 100644 index 0000000..d2d0d22 Binary files /dev/null and b/assets/UI/UI/pop/guide/shuizi.png differ diff --git a/assets/UI/UI/pop/guide/shuizi.png.meta b/assets/UI/UI/pop/guide/shuizi.png.meta new file mode 100644 index 0000000..e9f1848 --- /dev/null +++ b/assets/UI/UI/pop/guide/shuizi.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "beb9e236-3de3-488e-a2aa-627ac57f6f3e", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 299, + "height": 310, + "platformSettings": {}, + "subMetas": { + "shuizi": { + "ver": "1.0.6", + "uuid": "cb123be6-45b2-4acb-bbe3-f8c32d5c993c", + "importer": "sprite-frame", + "rawTextureUuid": "beb9e236-3de3-488e-a2aa-627ac57f6f3e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 299, + "height": 310, + "rawWidth": 299, + "rawHeight": 310, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/guide/zi.png b/assets/UI/UI/pop/guide/zi.png new file mode 100644 index 0000000..377f008 Binary files /dev/null and b/assets/UI/UI/pop/guide/zi.png differ diff --git a/assets/UI/UI/pop/guide/zi.png.meta b/assets/UI/UI/pop/guide/zi.png.meta new file mode 100644 index 0000000..4bf73e9 --- /dev/null +++ b/assets/UI/UI/pop/guide/zi.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "ca6a286e-c142-4269-a6d2-0e139088e85c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 619, + "height": 116, + "platformSettings": {}, + "subMetas": { + "zi": { + "ver": "1.0.6", + "uuid": "fcbb1fd6-87e6-4d8b-abbf-01bef5fe15e1", + "importer": "sprite-frame", + "rawTextureUuid": "ca6a286e-c142-4269-a6d2-0e139088e85c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 619, + "height": 116, + "rawWidth": 619, + "rawHeight": 116, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/guide/zi02.png b/assets/UI/UI/pop/guide/zi02.png new file mode 100644 index 0000000..6d02370 Binary files /dev/null and b/assets/UI/UI/pop/guide/zi02.png differ diff --git a/assets/UI/UI/pop/guide/zi02.png.meta b/assets/UI/UI/pop/guide/zi02.png.meta new file mode 100644 index 0000000..8102a93 --- /dev/null +++ b/assets/UI/UI/pop/guide/zi02.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "acb7ff3f-5085-432d-ac36-b18e2d836757", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 836, + "height": 153, + "platformSettings": {}, + "subMetas": { + "zi02": { + "ver": "1.0.6", + "uuid": "3e3e9ede-72b7-4958-b455-57174af31c93", + "importer": "sprite-frame", + "rawTextureUuid": "acb7ff3f-5085-432d-ac36-b18e2d836757", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 836, + "height": 153, + "rawWidth": 836, + "rawHeight": 153, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/homeUi.plist b/assets/UI/UI/pop/homeUi.plist new file mode 100644 index 0000000..61518a5 --- /dev/null +++ b/assets/UI/UI/pop/homeUi.plist @@ -0,0 +1,356 @@ + + + + + frames + + add.png + + aliases + + spriteOffset + {0,0} + spriteSize + {76,82} + spriteSourceSize + {76,82} + textureRect + {{163,237},{76,82}} + textureRotated + + + coin_kuang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {312,62} + spriteSourceSize + {312,62} + textureRect + {{99,1},{312,62}} + textureRotated + + + coins.png + + aliases + + spriteOffset + {0,0} + spriteSize + {86,98} + spriteSourceSize + {86,98} + textureRect + {{339,219},{86,98}} + textureRotated + + + day.png + + aliases + + spriteOffset + {0,0} + spriteSize + {200,216} + spriteSourceSize + {200,216} + textureRect + {{201,1},{200,216}} + textureRotated + + + diguan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {234,36} + spriteSourceSize + {234,36} + textureRect + {{163,1},{234,36}} + textureRotated + + + dijiguan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {314,96} + spriteSourceSize + {314,96} + textureRect + {{1,1},{314,96}} + textureRotated + + + effect.png + + aliases + + spriteOffset + {0,0} + spriteSize + {116,122} + spriteSourceSize + {116,122} + textureRect + {{911,157},{116,122}} + textureRotated + + + effects.png + + aliases + + spriteOffset + {0,0} + spriteSize + {116,122} + spriteSourceSize + {116,122} + textureRect + {{911,275},{116,122}} + textureRotated + + + music.png + + aliases + + spriteOffset + {0,0} + spriteSize + {116,122} + spriteSourceSize + {116,122} + textureRect + {{911,393},{116,122}} + textureRotated + + + musics.png + + aliases + + spriteOffset + {0,0} + spriteSize + {116,122} + spriteSourceSize + {116,122} + textureRect + {{478,157},{116,122}} + textureRotated + + + rank.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,174} + spriteSourceSize + {154,174} + textureRect + {{1,317},{154,174}} + textureRotated + + + set.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,174} + spriteSourceSize + {154,174} + textureRect + {{157,315},{154,174}} + textureRotated + + + start.png + + aliases + + spriteOffset + {0,0} + spriteSize + {520,198} + spriteSourceSize + {520,198} + textureRect + {{389,307},{520,198}} + textureRotated + + + stopzi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {150,65} + spriteSourceSize + {150,65} + textureRect + {{313,315},{150,65}} + textureRotated + + + tiaodik.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,598} + spriteSourceSize + {154,598} + textureRect + {{403,1},{154,598}} + textureRotated + + + xin.png + + aliases + + spriteOffset + {0,0} + spriteSize + {94,90} + spriteSourceSize + {98,98} + textureRect + {{247,219},{94,90}} + textureRotated + + + yiman.png + + aliases + + spriteOffset + {0,0} + spriteSize + {72,36} + spriteSourceSize + {72,36} + textureRect + {{439,197},{72,36}} + textureRotated + + + yinxiaos.png + + aliases + + spriteOffset + {0,0} + spriteSize + {73,38} + spriteSourceSize + {73,38} + textureRect + {{403,157},{73,38}} + textureRotated + + + yinyuezi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {72,38} + spriteSourceSize + {72,38} + textureRect + {{832,157},{72,38}} + textureRotated + + + zhendong.png + + aliases + + spriteOffset + {0,0} + spriteSize + {116,122} + spriteSourceSize + {116,122} + textureRect + {{596,157},{116,122}} + textureRotated + + + zhendong2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {74,39} + spriteSourceSize + {74,39} + textureRect + {{313,467},{74,39}} + textureRotated + + + zhendongs.png + + aliases + + spriteOffset + {0,0} + spriteSize + {116,122} + spriteSourceSize + {116,122} + textureRect + {{714,157},{116,122}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + homeUi.png + size + {1034,510} + smartupdate + $TexturePacker:SmartUpdate:60a0c78ed9f8b034cdb670fe27fa5391:90f9f40898a4d3c4934a1a6ce328a00d:857892d324edade16f98a344005c60d5$ + textureFileName + homeUi.png + + + diff --git a/assets/UI/UI/pop/homeUi.plist.meta b/assets/UI/UI/pop/homeUi.plist.meta new file mode 100644 index 0000000..dd0bbcf --- /dev/null +++ b/assets/UI/UI/pop/homeUi.plist.meta @@ -0,0 +1,519 @@ +{ + "ver": "1.2.6", + "uuid": "98eb2872-691f-4fc7-b827-c7f6dd98d242", + "importer": "asset", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "size": { + "width": 1034, + "height": 510 + }, + "type": "Texture Packer", + "subMetas": { + "add.png": { + "ver": "1.0.6", + "uuid": "e44020c0-be20-4cc3-a6ad-4bcd4797f32e", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 163, + "trimY": 237, + "width": 76, + "height": 82, + "rawWidth": 76, + "rawHeight": 82, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_kuang.png": { + "ver": "1.0.6", + "uuid": "2262cdce-7a64-4513-afad-1298607c61e3", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 99, + "trimY": 1, + "width": 312, + "height": 62, + "rawWidth": 312, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins.png": { + "ver": "1.0.6", + "uuid": "5b277947-e27a-4670-9186-88a1175375ce", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 339, + "trimY": 219, + "width": 86, + "height": 98, + "rawWidth": 86, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "day.png": { + "ver": "1.0.6", + "uuid": "2352075f-3a7d-4cc5-96b7-c51dd7951e83", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 201, + "trimY": 1, + "width": 200, + "height": 216, + "rawWidth": 200, + "rawHeight": 216, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "diguan.png": { + "ver": "1.0.6", + "uuid": "c281f2f9-2807-4bb8-99d4-7539f1ee9a72", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 163, + "trimY": 1, + "width": 234, + "height": 36, + "rawWidth": 234, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dijiguan.png": { + "ver": "1.0.6", + "uuid": "e080aa54-03de-469f-9954-14b4b1d22c18", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 314, + "height": 96, + "rawWidth": 314, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "effect.png": { + "ver": "1.0.6", + "uuid": "008142f8-e125-432c-9573-5408b2d6ea9d", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 157, + "width": 116, + "height": 122, + "rawWidth": 116, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "effects.png": { + "ver": "1.0.6", + "uuid": "9809b98b-0282-4744-bda8-65c91641a079", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 275, + "width": 116, + "height": 122, + "rawWidth": 116, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "music.png": { + "ver": "1.0.6", + "uuid": "a689cae2-e997-41ca-a791-c003c38586b8", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 911, + "trimY": 393, + "width": 116, + "height": 122, + "rawWidth": 116, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "musics.png": { + "ver": "1.0.6", + "uuid": "84b706a7-590e-43d1-ab24-56dd5e124a33", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 478, + "trimY": 157, + "width": 116, + "height": 122, + "rawWidth": 116, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank.png": { + "ver": "1.0.6", + "uuid": "fa0de294-7f16-4870-a1d3-6d00e6345ef4", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 317, + "width": 154, + "height": 174, + "rawWidth": 154, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "set.png": { + "ver": "1.0.6", + "uuid": "d5719396-a976-4e2d-86c0-41d770b8edf3", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 157, + "trimY": 315, + "width": 154, + "height": 174, + "rawWidth": 154, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "start.png": { + "ver": "1.0.6", + "uuid": "5b362977-0ae1-4372-bb12-8af747499e90", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 389, + "trimY": 307, + "width": 520, + "height": 198, + "rawWidth": 520, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "stopzi.png": { + "ver": "1.0.6", + "uuid": "2d8d22fa-ad9d-42c3-838d-0803f73e968e", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 313, + "trimY": 315, + "width": 150, + "height": 65, + "rawWidth": 150, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tiaodik.png": { + "ver": "1.0.6", + "uuid": "7223d387-3ffb-43d0-86c3-acf0d6a744e5", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 403, + "trimY": 1, + "width": 154, + "height": 598, + "rawWidth": 154, + "rawHeight": 598, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xin.png": { + "ver": "1.0.6", + "uuid": "8470837f-e899-445f-b74c-ef594b344817", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 247, + "trimY": 219, + "width": 94, + "height": 90, + "rawWidth": 98, + "rawHeight": 98, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yiman.png": { + "ver": "1.0.6", + "uuid": "0236e978-b4c6-4b4f-93f2-11259ce9daf8", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 439, + "trimY": 197, + "width": 72, + "height": 36, + "rawWidth": 72, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yinxiaos.png": { + "ver": "1.0.6", + "uuid": "26ae80dc-7ee0-4ded-9171-b88f49c2a0a4", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 403, + "trimY": 157, + "width": 73, + "height": 38, + "rawWidth": 73, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yinyuezi.png": { + "ver": "1.0.6", + "uuid": "575e0ff3-0587-40e3-a606-c5db4df98991", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 832, + "trimY": 157, + "width": 72, + "height": 38, + "rawWidth": 72, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhendong.png": { + "ver": "1.0.6", + "uuid": "7e24fd1a-b0d3-45f1-92bf-7721db5886bd", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 596, + "trimY": 157, + "width": 116, + "height": 122, + "rawWidth": 116, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhendong2.png": { + "ver": "1.0.6", + "uuid": "80d89d9f-4415-4151-b200-8684ad4e94fe", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 313, + "trimY": 467, + "width": 74, + "height": 39, + "rawWidth": 74, + "rawHeight": 39, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhendongs.png": { + "ver": "1.0.6", + "uuid": "7cf311df-d03d-4804-b9cd-893afbfa6625", + "importer": "sprite-frame", + "rawTextureUuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 714, + "trimY": 157, + "width": 116, + "height": 122, + "rawWidth": 116, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/homeUi.png b/assets/UI/UI/pop/homeUi.png new file mode 100644 index 0000000..ab43f9b Binary files /dev/null and b/assets/UI/UI/pop/homeUi.png differ diff --git a/assets/UI/UI/pop/homeUi.png.meta b/assets/UI/UI/pop/homeUi.png.meta new file mode 100644 index 0000000..a49eb13 --- /dev/null +++ b/assets/UI/UI/pop/homeUi.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "3561ddde-7a87-4cfd-9609-637005f4602b", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1034, + "height": 510, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/pop/icetime.png b/assets/UI/UI/pop/icetime.png new file mode 100644 index 0000000..907f18e Binary files /dev/null and b/assets/UI/UI/pop/icetime.png differ diff --git a/assets/UI/UI/pop/icetime.png.meta b/assets/UI/UI/pop/icetime.png.meta new file mode 100644 index 0000000..f59b8a0 --- /dev/null +++ b/assets/UI/UI/pop/icetime.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "0f140cc0-8fcb-45c0-8121-be30583d6ea7", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 382, + "height": 125, + "platformSettings": {}, + "subMetas": { + "icetime": { + "ver": "1.0.6", + "uuid": "a603aa09-c19d-4f94-9324-1f6a333a9e1a", + "importer": "sprite-frame", + "rawTextureUuid": "0f140cc0-8fcb-45c0-8121-be30583d6ea7", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 382, + "height": 125, + "rawWidth": 382, + "rawHeight": 125, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/kuangt.png b/assets/UI/UI/pop/kuangt.png new file mode 100644 index 0000000..7c900e2 Binary files /dev/null and b/assets/UI/UI/pop/kuangt.png differ diff --git a/assets/UI/UI/pop/kuangt.png.meta b/assets/UI/UI/pop/kuangt.png.meta new file mode 100644 index 0000000..fa6423d --- /dev/null +++ b/assets/UI/UI/pop/kuangt.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "cce9254b-0419-453b-94a8-a181f83d3243", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 994, + "height": 1462, + "platformSettings": {}, + "subMetas": { + "kuangt": { + "ver": "1.0.6", + "uuid": "bf006254-d63b-49e7-9bb2-26cd7328e3e8", + "importer": "sprite-frame", + "rawTextureUuid": "cce9254b-0419-453b-94a8-a181f83d3243", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 994, + "height": 1462, + "rawWidth": 994, + "rawHeight": 1462, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/kuangt1.png b/assets/UI/UI/pop/kuangt1.png new file mode 100644 index 0000000..30f0504 Binary files /dev/null and b/assets/UI/UI/pop/kuangt1.png differ diff --git a/assets/UI/UI/pop/kuangt1.png.meta b/assets/UI/UI/pop/kuangt1.png.meta new file mode 100644 index 0000000..3c7bfa4 --- /dev/null +++ b/assets/UI/UI/pop/kuangt1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5ca59952-de75-42a0-85e7-a60a7a37398b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 994, + "height": 1462, + "platformSettings": {}, + "subMetas": { + "kuangt1": { + "ver": "1.0.6", + "uuid": "bec937c0-0152-4a64-8a66-03296ec98509", + "importer": "sprite-frame", + "rawTextureUuid": "5ca59952-de75-42a0-85e7-a60a7a37398b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 994, + "height": 1462, + "rawWidth": 994, + "rawHeight": 1462, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/queding.png b/assets/UI/UI/pop/queding.png new file mode 100644 index 0000000..a2f1b4e Binary files /dev/null and b/assets/UI/UI/pop/queding.png differ diff --git a/assets/UI/UI/pop/queding.png.meta b/assets/UI/UI/pop/queding.png.meta new file mode 100644 index 0000000..bf6522e --- /dev/null +++ b/assets/UI/UI/pop/queding.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5abf048c-550a-4a99-a7c4-146e5dcb1d5f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 434, + "height": 144, + "platformSettings": {}, + "subMetas": { + "queding": { + "ver": "1.0.6", + "uuid": "2fcdd5c3-1633-4fc7-bd96-ada7c7f34102", + "importer": "sprite-frame", + "rawTextureUuid": "5abf048c-550a-4a99-a7c4-146e5dcb1d5f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 434, + "height": 144, + "rawWidth": 434, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/rankui.plist b/assets/UI/UI/pop/rankui.plist new file mode 100644 index 0000000..5b21e14 --- /dev/null +++ b/assets/UI/UI/pop/rankui.plist @@ -0,0 +1,266 @@ + + + + + frames + + Rankings.png + + aliases + + spriteOffset + {0,0} + spriteSize + {301,75} + spriteSourceSize + {301,75} + textureRect + {{816,0},{301,75}} + textureRotated + + + paihang1_1_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {101,111} + spriteSourceSize + {101,111} + textureRect + {{0,0},{101,111}} + textureRotated + + + paihang1_1_2.jpg + + aliases + + spriteOffset + {0,0} + spriteSize + {692,112} + spriteSourceSize + {692,112} + textureRect + {{1117,0},{692,112}} + textureRotated + + + paihang1_1_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {103,112} + spriteSourceSize + {103,112} + textureRect + {{404,0},{103,112}} + textureRotated + + + paihang1_2_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {101,111} + spriteSourceSize + {101,111} + textureRect + {{101,0},{101,111}} + textureRotated + + + paihang1_2_2.jpg + + aliases + + spriteOffset + {0,0} + spriteSize + {692,112} + spriteSourceSize + {692,112} + textureRect + {{0,112},{692,112}} + textureRotated + + + paihang1_2_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {103,112} + spriteSourceSize + {103,112} + textureRect + {{507,0},{103,112}} + textureRotated + + + paihang1_3_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {101,111} + spriteSourceSize + {101,111} + textureRect + {{202,0},{101,111}} + textureRotated + + + paihang1_3_2.jpg + + aliases + + spriteOffset + {0,0} + spriteSize + {692,112} + spriteSourceSize + {692,112} + textureRect + {{692,112},{692,112}} + textureRotated + + + paihang1_3_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {103,112} + spriteSourceSize + {103,112} + textureRect + {{610,0},{103,112}} + textureRotated + + + paihang1_4_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {101,111} + spriteSourceSize + {101,111} + textureRect + {{303,0},{101,111}} + textureRotated + + + paihang1_4_2.jpg + + aliases + + spriteOffset + {0,0} + spriteSize + {692,112} + spriteSourceSize + {692,112} + textureRect + {{0,224},{692,112}} + textureRotated + + + paihang1_4_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {103,112} + spriteSourceSize + {103,112} + textureRect + {{713,0},{103,112}} + textureRotated + + + tanchaungrank.png + + aliases + + spriteOffset + {0,0} + spriteSize + {994,1377} + spriteSourceSize + {994,1377} + textureRect + {{858,388},{994,1377}} + textureRotated + + + tanchaungrank2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {858,876} + spriteSourceSize + {858,876} + textureRect + {{0,388},{858,876}} + textureRotated + + + tanchuang3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {720,164} + spriteSourceSize + {720,164} + textureRect + {{692,224},{720,164}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + rankui.png + size + {1852,1765} + smartupdate + $TexturePacker:SmartUpdate:11bbb43df0f5c4ef019f8e41513ca801:032b4d661f80a0bcb915edbbd818f2ee:9632a610bdeb8e9e1086d36cc9b0dcf5$ + textureFileName + rankui.png + + + diff --git a/assets/UI/UI/pop/rankui.plist.meta b/assets/UI/UI/pop/rankui.plist.meta new file mode 100644 index 0000000..c2c7eac --- /dev/null +++ b/assets/UI/UI/pop/rankui.plist.meta @@ -0,0 +1,381 @@ +{ + "ver": "1.2.6", + "uuid": "46fcd116-bb2b-4442-9109-92599d6b0b08", + "importer": "asset", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "size": { + "width": 1852, + "height": 1765 + }, + "type": "Texture Packer", + "subMetas": { + "Rankings.png": { + "ver": "1.0.6", + "uuid": "b3a763ca-9e88-4c98-a14e-44b11bb84a74", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 816, + "trimY": 0, + "width": 301, + "height": 75, + "rawWidth": 301, + "rawHeight": 75, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_1_1.png": { + "ver": "1.0.6", + "uuid": "2bb230c1-05e8-4422-a521-ed98a91d270e", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 101, + "height": 111, + "rawWidth": 101, + "rawHeight": 111, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_1_2.jpg": { + "ver": "1.0.6", + "uuid": "fafcbd99-fa00-478d-9359-57b391241703", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1117, + "trimY": 0, + "width": 692, + "height": 112, + "rawWidth": 692, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_1_2.png": { + "ver": "1.0.6", + "uuid": "a54a3093-0fee-400b-b3c0-c78bd84b3e25", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 404, + "trimY": 0, + "width": 103, + "height": 112, + "rawWidth": 103, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_2_1.png": { + "ver": "1.0.6", + "uuid": "4740b6c7-17cc-44ba-a4d1-8cbf848de4dc", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 101, + "trimY": 0, + "width": 101, + "height": 111, + "rawWidth": 101, + "rawHeight": 111, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_2_2.jpg": { + "ver": "1.0.6", + "uuid": "996157c4-4861-45cb-9b7e-791f92d2fa4c", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 112, + "width": 692, + "height": 112, + "rawWidth": 692, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_2_2.png": { + "ver": "1.0.6", + "uuid": "9bc7c334-d579-4328-b8e7-634cdcf6b238", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 507, + "trimY": 0, + "width": 103, + "height": 112, + "rawWidth": 103, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_3_1.png": { + "ver": "1.0.6", + "uuid": "5f318a44-e47c-4b5a-84d4-d9fc0591afd9", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 202, + "trimY": 0, + "width": 101, + "height": 111, + "rawWidth": 101, + "rawHeight": 111, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_3_2.jpg": { + "ver": "1.0.6", + "uuid": "ea1131ed-da6b-4948-8cb8-f062ed1e7515", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 692, + "trimY": 112, + "width": 692, + "height": 112, + "rawWidth": 692, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_3_2.png": { + "ver": "1.0.6", + "uuid": "c1bcd24b-efa0-4c38-92a6-ec384cc32031", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 610, + "trimY": 0, + "width": 103, + "height": 112, + "rawWidth": 103, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_4_1.png": { + "ver": "1.0.6", + "uuid": "67aa1ff3-4cdb-4afe-b81d-59cd4ffd6698", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 303, + "trimY": 0, + "width": 101, + "height": 111, + "rawWidth": 101, + "rawHeight": 111, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_4_2.jpg": { + "ver": "1.0.6", + "uuid": "71ee30de-ac31-45c1-ab22-7cd09bcac36b", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 224, + "width": 692, + "height": 112, + "rawWidth": 692, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "paihang1_4_2.png": { + "ver": "1.0.6", + "uuid": "3f292d94-8ed3-489c-8fe0-d1435b461e27", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 713, + "trimY": 0, + "width": 103, + "height": 112, + "rawWidth": 103, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tanchaungrank.png": { + "ver": "1.0.6", + "uuid": "1d933469-4b62-4266-9282-a6953cd73bb4", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 858, + "trimY": 388, + "width": 994, + "height": 1377, + "rawWidth": 994, + "rawHeight": 1377, + "borderTop": 200, + "borderBottom": 200, + "borderLeft": 200, + "borderRight": 200, + "spriteType": "normal", + "subMetas": {} + }, + "tanchaungrank2.png": { + "ver": "1.0.6", + "uuid": "1f91b115-e966-4271-84ff-dc7913956e97", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 388, + "width": 858, + "height": 876, + "rawWidth": 858, + "rawHeight": 876, + "borderTop": 196, + "borderBottom": 325, + "borderLeft": 153, + "borderRight": 193, + "spriteType": "normal", + "subMetas": {} + }, + "tanchuang3.png": { + "ver": "1.0.6", + "uuid": "f58d9b09-7fbf-4a3c-ba01-e1704a88e68d", + "importer": "sprite-frame", + "rawTextureUuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 692, + "trimY": 224, + "width": 720, + "height": 164, + "rawWidth": 720, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/rankui.png b/assets/UI/UI/pop/rankui.png new file mode 100644 index 0000000..66334a5 Binary files /dev/null and b/assets/UI/UI/pop/rankui.png differ diff --git a/assets/UI/UI/pop/rankui.png.meta b/assets/UI/UI/pop/rankui.png.meta new file mode 100644 index 0000000..24e1eef --- /dev/null +++ b/assets/UI/UI/pop/rankui.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "8af5fd42-07fa-4b62-ac3a-8d10910ddcdf", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1852, + "height": 1765, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/pop/top.png b/assets/UI/UI/pop/top.png new file mode 100644 index 0000000..aa0f43b Binary files /dev/null and b/assets/UI/UI/pop/top.png differ diff --git a/assets/UI/UI/pop/top.png.meta b/assets/UI/UI/pop/top.png.meta new file mode 100644 index 0000000..2d856aa --- /dev/null +++ b/assets/UI/UI/pop/top.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e162100a-3c54-4499-9eb2-c0ddaea64eed", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 170, + "platformSettings": {}, + "subMetas": { + "top": { + "ver": "1.0.6", + "uuid": "01f5bb85-0439-4301-94f5-fe96f74598f6", + "importer": "sprite-frame", + "rawTextureUuid": "e162100a-3c54-4499-9eb2-c0ddaea64eed", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0.5, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 169, + "rawWidth": 1080, + "rawHeight": 170, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/pop/yuandi.png b/assets/UI/UI/pop/yuandi.png new file mode 100644 index 0000000..68dbdf8 Binary files /dev/null and b/assets/UI/UI/pop/yuandi.png differ diff --git a/assets/UI/UI/pop/yuandi.png.meta b/assets/UI/UI/pop/yuandi.png.meta new file mode 100644 index 0000000..651082a --- /dev/null +++ b/assets/UI/UI/pop/yuandi.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "7bb0681c-90a7-4203-b608-797740c972b0", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 516, + "height": 516, + "platformSettings": {}, + "subMetas": { + "yuandi": { + "ver": "1.0.6", + "uuid": "59873a8f-b079-4344-a77a-a72c76753cb0", + "importer": "sprite-frame", + "rawTextureUuid": "7bb0681c-90a7-4203-b608-797740c972b0", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 516, + "height": 516, + "rawWidth": 516, + "rawHeight": 516, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/publicUI.plist b/assets/UI/UI/publicUI.plist new file mode 100644 index 0000000..c2a238d --- /dev/null +++ b/assets/UI/UI/publicUI.plist @@ -0,0 +1,1556 @@ + + + + + frames + + Buy.png + + aliases + + spriteOffset + {0,0} + spriteSize + {297,76} + spriteSourceSize + {297,76} + textureRect + {{1683,809},{297,76}} + textureRotated + + + add.png + + aliases + + spriteOffset + {0,0} + spriteSize + {70,69} + spriteSourceSize + {70,69} + textureRect + {{1410,1693},{70,69}} + textureRotated + + + boom.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,95} + spriteSourceSize + {62,95} + textureRect + {{1320,1704},{62,95}} + textureRotated + + + btn_Buy.png + + aliases + + spriteOffset + {0,0} + spriteSize + {519,168} + spriteSourceSize + {519,168} + textureRect + {{861,1101},{519,168}} + textureRotated + + + btn_blue.png + + aliases + + spriteOffset + {0,0} + spriteSize + {519,168} + spriteSourceSize + {519,168} + textureRect + {{874,931},{519,168}} + textureRotated + + + btn_guanbi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {116,113} + spriteSourceSize + {116,113} + textureRect + {{1805,661},{116,113}} + textureRotated + + + btn_hdzjm1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {296,65} + spriteSourceSize + {296,65} + textureRect + {{1774,1110},{296,65}} + textureRotated + + + btn_jixu _sz1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,40} + spriteSourceSize + {24,40} + textureRect + {{1384,1704},{24,40}} + textureRotated + + + btn_jixu _sz2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,36} + spriteSourceSize + {24,40} + textureRect + {{359,1598},{24,36}} + textureRotated + + + btn_jixu _sz3.png + + aliases + + spriteOffset + {0,1} + spriteSize + {24,36} + spriteSourceSize + {24,40} + textureRect + {{359,1624},{24,36}} + textureRotated + + + btn_jixu _sz4.png + + aliases + + spriteOffset + {0,1} + spriteSize + {24,36} + spriteSourceSize + {24,40} + textureRect + {{359,1650},{24,36}} + textureRotated + + + btn_tanchuang1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {519,168} + spriteSourceSize + {519,168} + textureRect + {{861,1271},{519,168}} + textureRotated + + + btn_xyg1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {293,97} + spriteSourceSize + {293,97} + textureRect + {{1531,1087},{293,97}} + textureRotated + + + btn_zi_fenxiang1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {129,68} + spriteSourceSize + {129,68} + textureRect + {{1623,1860},{129,68}} + textureRotated + + + btn_zi_fenxiang2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {72,72} + spriteSourceSize + {72,72} + textureRect + {{693,1899},{72,72}} + textureRotated + + + btn_zi_jixu.png + + aliases + + spriteOffset + {0,0} + spriteSize + {131,68} + spriteSourceSize + {131,70} + textureRect + {{359,1528},{131,68}} + textureRotated + + + btn_zi_lingqu.png + + aliases + + spriteOffset + {0,0} + spriteSize + {261,70} + spriteSourceSize + {261,70} + textureRect + {{1338,1441},{261,70}} + textureRotated + + + btn_zi_shouquan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {260,70} + spriteSourceSize + {260,70} + textureRect + {{1410,1431},{260,70}} + textureRotated + + + btn_zi_xhongshi.png + + aliases + + spriteOffset + {0,1} + spriteSize + {131,68} + spriteSourceSize + {131,70} + textureRect + {{1485,1744},{131,68}} + textureRotated + + + buy_Label.png + + aliases + + spriteOffset + {0,0} + spriteSize + {148,74} + spriteSourceSize + {148,74} + textureRect + {{1409,1764},{148,74}} + textureRotated + + + chui.png + + aliases + + spriteOffset + {0,0} + spriteSize + {97,109} + spriteSourceSize + {97,109} + textureRect + {{1940,1610},{97,109}} + textureRotated + + + close.png + + aliases + + spriteOffset + {0,0} + spriteSize + {65,64} + spriteSourceSize + {65,64} + textureRect + {{1973,1},{65,64}} + textureRotated + + + close_PauseLabel.png + + aliases + + spriteOffset + {0,0} + spriteSize + {316,79} + spriteSourceSize + {316,79} + textureRect + {{1450,1087},{316,79}} + textureRotated + + + coins.png + + aliases + + spriteOffset + {0,0} + spriteSize + {70,71} + spriteSourceSize + {70,71} + textureRect + {{1503,1878},{70,71}} + textureRotated + + + customBg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {259,78} + spriteSourceSize + {259,78} + textureRect + {{1482,1405},{259,78}} + textureRotated + + + dikuai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{1623,1738},{120,120}} + textureRotated + + + ding3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {1058,266} + spriteSourceSize + {1058,266} + textureRect + {{1,1},{1058,266}} + textureRotated + + + effct.png + + aliases + + spriteOffset + {0,0} + spriteSize + {158,78} + spriteSourceSize + {158,78} + textureRect + {{1951,1417},{158,78}} + textureRotated + + + effct_icon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {102,116} + spriteSourceSize + {102,116} + textureRect + {{1879,1849},{102,116}} + textureRotated + + + freeze_Label.png + + aliases + + spriteOffset + {0,0} + spriteSize + {697,262} + spriteSourceSize + {697,262} + textureRect + {{1061,1},{697,262}} + textureRotated + + + full.png + + aliases + + spriteOffset + {0,1} + spriteSize + {94,47} + spriteSourceSize + {94,49} + textureRect + {{940,269},{94,47}} + textureRotated + + + good1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,85} + spriteSourceSize + {188,85} + textureRect + {{305,1441},{188,85}} + textureRotated + + + guan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {144,99} + spriteSourceSize + {144,99} + textureRect + {{1174,1700},{144,99}} + textureRotated + + + hammer_Label.png + + aliases + + spriteOffset + {0,0} + spriteSize + {605,188} + spriteSourceSize + {605,188} + textureRect + {{940,322},{605,188}} + textureRotated + + + hui.png + + aliases + + spriteOffset + {0,0} + spriteSize + {149,149} + spriteSourceSize + {149,149} + textureRect + {{1630,1512},{149,149}} + textureRotated + + + kai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {144,99} + spriteSourceSize + {144,99} + textureRect + {{97,1552},{144,99}} + textureRotated + + + key.png + + aliases + + spriteOffset + {0,0} + spriteSize + {52,92} + spriteSourceSize + {52,92} + textureRect + {{1083,1879},{52,92}} + textureRotated + + + kuang_gj1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {159,159} + spriteSourceSize + {159,159} + textureRect + {{198,1533},{159,159}} + textureRotated + + + label_di.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,47} + spriteSourceSize + {44,47} + textureRect + {{1396,735},{44,47}} + textureRotated + + + label_guan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,45} + spriteSourceSize + {42,45} + textureRect + {{817,1293},{42,45}} + textureRotated + + + label_guanbi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {294,72} + spriteSourceSize + {294,72} + textureRect + {{397,1899},{294,72}} + textureRotated + + + lock.png + + aliases + + spriteOffset + {0,0} + spriteSize + {66,84} + spriteSourceSize + {66,84} + textureRect + {{1562,1623},{66,84}} + textureRotated + + + login_Label.png + + aliases + + spriteOffset + {0,0} + spriteSize + {299,76} + spriteSourceSize + {299,76} + textureRect + {{1761,809},{299,76}} + textureRotated + + + magic_Label.png + + aliases + + spriteOffset + {0,0} + spriteSize + {609,188} + spriteSourceSize + {609,188} + textureRect + {{305,830},{609,188}} + textureRotated + + + miao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {80,79} + spriteSourceSize + {80,79} + textureRect + {{1839,776},{80,79}} + textureRotated + + + mofa.png + + aliases + + spriteOffset + {0,0} + spriteSize + {93,109} + spriteSourceSize + {93,109} + textureRect + {{1938,1721},{93,109}} + textureRotated + + + music.png + + aliases + + spriteOffset + {0,0} + spriteSize + {156,79} + spriteSourceSize + {156,79} + textureRect + {{925,1879},{156,79}} + textureRotated + + + music_icon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {123,100} + spriteSourceSize + {123,100} + textureRect + {{1754,1849},{123,100}} + textureRotated + + + nz1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {211,219} + spriteSourceSize + {211,219} + textureRect + {{1760,1},{211,219}} + textureRotated + + + nz2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {312,292} + spriteSourceSize + {312,292} + textureRect + {{397,1605},{312,292}} + textureRotated + + + pause.png + + aliases + + spriteOffset + {0,0} + spriteSize + {155,155} + spriteSourceSize + {155,155} + textureRect + {{1781,1692},{155,155}} + textureRotated + + + pauseBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {319,81} + spriteSourceSize + {319,81} + textureRect + {{1462,726},{319,81}} + textureRotated + + + pause_BtnBg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {519,158} + spriteSourceSize + {519,158} + textureRect + {{817,1441},{519,158}} + textureRotated + + + prop_freeze.png + + aliases + + spriteOffset + {0,0} + spriteSize + {276,285} + spriteSourceSize + {276,285} + textureRect + {{1396,809},{276,285}} + textureRotated + + + prop_hammer.png + + aliases + + spriteOffset + {0,0} + spriteSize + {320,310} + spriteSourceSize + {320,310} + textureRect + {{495,1293},{320,310}} + textureRotated + + + prop_magic.png + + aliases + + spriteOffset + {0,0} + spriteSize + {271,298} + spriteSourceSize + {271,298} + textureRect + {{97,1700},{271,298}} + textureRotated + + + rankBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {168,191} + spriteSourceSize + {168,191} + textureRect + {{1841,1060},{168,191}} + textureRotated + + + result_Home.png + + aliases + + spriteOffset + {0,0} + spriteSize + {328,66} + spriteSourceSize + {328,66} + textureRect + {{1382,1101},{328,66}} + textureRotated + + + result_Label1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {740,55} + spriteSourceSize + {740,55} + textureRect + {{1061,265},{740,55}} + textureRotated + + + result_boom.png + + aliases + + spriteOffset + {0,0} + spriteSize + {484,559} + spriteSourceSize + {484,559} + textureRect + {{1,269},{484,559}} + textureRotated + + + result_close.png + + aliases + + spriteOffset + {0,0} + spriteSize + {162,169} + spriteSourceSize + {162,169} + textureRect + {{1841,1253},{162,169}} + textureRotated + + + result_coin.png + + aliases + + spriteOffset + {0,0} + spriteSize + {76,78} + spriteSourceSize + {76,78} + textureRect + {{1482,1666},{76,78}} + textureRotated + + + result_fangqi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {132,66} + spriteSourceSize + {132,66} + textureRect + {{1555,1744},{132,66}} + textureRotated + + + result_hp.png + + aliases + + spriteOffset + {0,0} + spriteSize + {364,276} + spriteSourceSize + {364,276} + textureRect + {{495,1015},{364,276}} + textureRotated + + + result_men.png + + aliases + + spriteOffset + {0,0} + spriteSize + {615,93} + spriteSourceSize + {615,93} + textureRect + {{940,512},{615,93}} + textureRotated + + + result_remove.png + + aliases + + spriteOffset + {0,0} + spriteSize + {283,70} + spriteSourceSize + {283,70} + textureRect + {{1630,1108},{283,70}} + textureRotated + + + result_title1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {412,94} + spriteSourceSize + {412,94} + textureRect + {{1,1552},{412,94}} + textureRotated + + + result_title10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {132,66} + spriteSourceSize + {132,66} + textureRect + {{1555,1744},{132,66}} + textureRotated + + + result_title2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {354,69} + spriteSourceSize + {354,69} + textureRect + {{1557,590},{354,69}} + textureRotated + + + result_title3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {485,97} + spriteSourceSize + {485,97} + textureRect + {{817,1601},{485,97}} + textureRotated + + + result_title4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {701,136} + spriteSourceSize + {701,136} + textureRect + {{167,830},{701,136}} + textureRotated + + + result_title5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {520,72} + spriteSourceSize + {520,72} + textureRect + {{940,661},{520,72}} + textureRotated + + + result_title6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {576,52} + spriteSourceSize + {576,52} + textureRect + {{940,607},{576,52}} + textureRotated + + + result_title7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {341,63} + spriteSourceSize + {341,63} + textureRect + {{1462,661},{341,63}} + textureRotated + + + result_title9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {281,70} + spriteSourceSize + {281,70} + textureRect + {{1702,1110},{281,70}} + textureRotated + + + rewardBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {168,191} + spriteSourceSize + {168,191} + textureRect + {{1781,1417},{168,191}} + textureRotated + + + setting.png + + aliases + + spriteOffset + {0,0} + spriteSize + {149,73} + spriteSourceSize + {149,73} + textureRect + {{1630,1663},{149,73}} + textureRotated + + + shezhi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,169} + spriteSourceSize + {154,169} + textureRect + {{1253,1801},{154,169}} + textureRotated + + + startBtnBg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {520,194} + spriteSourceSize + {520,194} + textureRect + {{874,735},{520,194}} + textureRotated + + + tanchuang3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {720,164} + spriteSourceSize + {720,164} + textureRect + {{1,830},{720,164}} + textureRotated + + + tanchuang_bt1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {481,170} + spriteSourceSize + {481,170} + textureRect + {{1547,322},{481,170}} + textureRotated + + + tb_fanhui.png + + aliases + + spriteOffset + {0,0} + spriteSize + {107,96} + spriteSourceSize + {107,96} + textureRect + {{1914,222},{107,96}} + textureRotated + + + tc_bt_hyph.png + + aliases + + spriteOffset + {0,0} + spriteSize + {355,85} + spriteSourceSize + {355,85} + textureRect + {{817,1700},{355,85}} + textureRotated + + + tc_bt_tili.png + + aliases + + spriteOffset + {0,0} + spriteSize + {170,84} + spriteSourceSize + {170,84} + textureRect + {{1167,1801},{170,84}} + textureRotated + + + tc_tb.png + + aliases + + spriteOffset + {0,0} + spriteSize + {377,338} + spriteSourceSize + {377,338} + textureRect + {{495,675},{377,338}} + textureRotated + + + tilia_aixin.png + + aliases + + spriteOffset + {0,0} + spriteSize + {451,404} + spriteSourceSize + {451,404} + textureRect + {{487,269},{451,404}} + textureRotated + + + time1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {92,45} + spriteSourceSize + {92,45} + textureRect + {{1973,68},{92,45}} + textureRotated + + + time2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {92,45} + spriteSourceSize + {92,45} + textureRect + {{1983,1832},{92,45}} + textureRotated + + + time3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {92,45} + spriteSourceSize + {92,45} + textureRect + {{1409,1914},{92,45}} + textureRotated + + + tu_aixin.png + + aliases + + spriteOffset + {0,0} + spriteSize + {63,56} + spriteSourceSize + {63,56} + textureRect + {{874,675},{63,56}} + textureRotated + + + tx.png + + aliases + + spriteOffset + {0,0} + spriteSize + {180,180} + spriteSourceSize + {180,180} + textureRect + {{1839,878},{180,180}} + textureRotated + + + ui_Custom.png + + aliases + + spriteOffset + {0,0} + spriteSize + {348,90} + spriteSourceSize + {348,90} + textureRect + {{817,1787},{348,90}} + textureRotated + + + ui_Hard.png + + aliases + + spriteOffset + {0,0} + spriteSize + {239,66} + spriteSourceSize + {239,66} + textureRect + {{1562,1382},{239,66}} + textureRotated + + + word_gx.png + + aliases + + spriteOffset + {0,0} + spriteSize + {156,89} + spriteSourceSize + {156,89} + textureRect + {{767,1879},{156,89}} + textureRotated + + + word_sjdl.png + + aliases + + spriteOffset + {0,0} + spriteSize + {393,94} + spriteSourceSize + {393,94} + textureRect + {{1557,494},{393,94}} + textureRotated + + + word_zdyzl.png + + aliases + + spriteOffset + {0,0} + spriteSize + {485,97} + spriteSourceSize + {485,97} + textureRect + {{817,1601},{485,97}} + textureRotated + + + xs_smz.png + + aliases + + spriteOffset + {0,0} + spriteSize + {382,85} + spriteSourceSize + {382,85} + textureRect + {{1952,494},{382,85}} + textureRotated + + + zd1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {484,559} + spriteSourceSize + {484,559} + textureRect + {{1,269},{484,559}} + textureRotated + + + zhendong.png + + aliases + + spriteOffset + {0,0} + spriteSize + {157,80} + spriteSourceSize + {157,80} + textureRect + {{1781,1610},{157,80}} + textureRotated + + + zhendong_icon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {136,117} + spriteSourceSize + {136,117} + textureRect + {{1630,1393},{136,117}} + textureRotated + + + zhong.png + + aliases + + spriteOffset + {0,0} + spriteSize + {98,109} + spriteSourceSize + {98,109} + textureRect + {{1803,222},{98,109}} + textureRotated + + + 开关.png + + aliases + + spriteOffset + {0,0} + spriteSize + {264,104} + spriteSourceSize + {264,104} + textureRect + {{711,1605},{264,104}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + publicUI.png + size + {2038,1972} + smartupdate + $TexturePacker:SmartUpdate:281dd46ee5c6afb2ede8d60f0bd13d3d:8e767ba4710ad78ebf0e1180bcc8f790:1c7d81f68058ada321959f2296017bb5$ + textureFileName + publicUI.png + + + diff --git a/assets/UI/UI/publicUI.plist.meta b/assets/UI/UI/publicUI.plist.meta new file mode 100644 index 0000000..c3c90fd --- /dev/null +++ b/assets/UI/UI/publicUI.plist.meta @@ -0,0 +1,2359 @@ +{ + "ver": "1.2.6", + "uuid": "d2adfa00-68ea-4d63-97a0-44fca153a2d7", + "importer": "asset", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "size": { + "width": 2038, + "height": 1972 + }, + "type": "Texture Packer", + "subMetas": { + "Buy.png": { + "ver": "1.0.6", + "uuid": "ba61158d-ee5e-41db-9208-26a1f43d573e", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1683, + "trimY": 809, + "width": 297, + "height": 76, + "rawWidth": 297, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "add.png": { + "ver": "1.0.6", + "uuid": "d13e982d-fed1-454a-b4c4-c92e5bbdfd2d", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1410, + "trimY": 1693, + "width": 70, + "height": 69, + "rawWidth": 70, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "boom.png": { + "ver": "1.0.6", + "uuid": "e22aadda-4f7e-403a-a1e6-d5374fc2862a", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1320, + "trimY": 1704, + "width": 62, + "height": 95, + "rawWidth": 62, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_Buy.png": { + "ver": "1.0.6", + "uuid": "84227ef3-933f-4be0-a2d5-1e466b23134f", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 861, + "trimY": 1101, + "width": 519, + "height": 168, + "rawWidth": 519, + "rawHeight": 168, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_blue.png": { + "ver": "1.0.6", + "uuid": "622e112a-a4a9-4fd6-87be-925670413b83", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 874, + "trimY": 931, + "width": 519, + "height": 168, + "rawWidth": 519, + "rawHeight": 168, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_guanbi.png": { + "ver": "1.0.6", + "uuid": "607dfaa7-8d0c-49ec-82a6-91f0e627234c", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1805, + "trimY": 661, + "width": 116, + "height": 113, + "rawWidth": 116, + "rawHeight": 113, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_hdzjm1.png": { + "ver": "1.0.6", + "uuid": "31660210-45da-4115-a7df-5becff07ce48", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1774, + "trimY": 1110, + "width": 296, + "height": 65, + "rawWidth": 296, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_jixu _sz1.png": { + "ver": "1.0.6", + "uuid": "9ab22046-1a97-4305-9f1a-5e10329c4717", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1384, + "trimY": 1704, + "width": 24, + "height": 40, + "rawWidth": 24, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_jixu _sz2.png": { + "ver": "1.0.6", + "uuid": "4c05858d-6d78-4656-9b3b-d8b64c709af4", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 359, + "trimY": 1598, + "width": 24, + "height": 36, + "rawWidth": 24, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_jixu _sz3.png": { + "ver": "1.0.6", + "uuid": "3e91ec35-c8d6-46bc-bfb4-0bdf81fbadd7", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 1, + "trimX": 359, + "trimY": 1624, + "width": 24, + "height": 36, + "rawWidth": 24, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_jixu _sz4.png": { + "ver": "1.0.6", + "uuid": "6bf035fb-d4ed-4a70-a097-3d2625f9d102", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 1, + "trimX": 359, + "trimY": 1650, + "width": 24, + "height": 36, + "rawWidth": 24, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_tanchuang1.png": { + "ver": "1.0.6", + "uuid": "826f5bb2-a3cb-48ed-b657-ef6b82964521", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 861, + "trimY": 1271, + "width": 519, + "height": 168, + "rawWidth": 519, + "rawHeight": 168, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_xyg1.png": { + "ver": "1.0.6", + "uuid": "12ae38e0-7e96-48bd-a559-3c452da22bd2", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1531, + "trimY": 1087, + "width": 293, + "height": 97, + "rawWidth": 293, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_zi_fenxiang1.png": { + "ver": "1.0.6", + "uuid": "b7371a4f-a146-4f64-a09d-c868c67fd772", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1623, + "trimY": 1860, + "width": 129, + "height": 68, + "rawWidth": 129, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_zi_fenxiang2.png": { + "ver": "1.0.6", + "uuid": "c3558560-39d0-4650-9ac4-a958b320190a", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 693, + "trimY": 1899, + "width": 72, + "height": 72, + "rawWidth": 72, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_zi_jixu.png": { + "ver": "1.0.6", + "uuid": "c44fbe15-765f-49ff-99d0-3a34ef8511b3", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 359, + "trimY": 1528, + "width": 131, + "height": 68, + "rawWidth": 131, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_zi_lingqu.png": { + "ver": "1.0.6", + "uuid": "e02ea031-71ed-4d9f-8433-0abb136bac4f", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1338, + "trimY": 1441, + "width": 261, + "height": 70, + "rawWidth": 261, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_zi_shouquan.png": { + "ver": "1.0.6", + "uuid": "87875d5a-deb6-45cd-925b-49e39ff989af", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1410, + "trimY": 1431, + "width": 260, + "height": 70, + "rawWidth": 260, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_zi_xhongshi.png": { + "ver": "1.0.6", + "uuid": "ccefcb7d-1d18-4906-aeb6-de9e4f8fafa8", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 1, + "trimX": 1485, + "trimY": 1744, + "width": 131, + "height": 68, + "rawWidth": 131, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "buy_Label.png": { + "ver": "1.0.6", + "uuid": "0ba8f5d4-9e99-4a3d-9fe6-2b20531de796", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1409, + "trimY": 1764, + "width": 148, + "height": 74, + "rawWidth": 148, + "rawHeight": 74, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "chui.png": { + "ver": "1.0.6", + "uuid": "fbfecad6-2e70-43a0-bf64-d3a59335362e", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1940, + "trimY": 1610, + "width": 97, + "height": 109, + "rawWidth": 97, + "rawHeight": 109, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "close.png": { + "ver": "1.0.6", + "uuid": "8ea47691-f888-4aac-acac-d7225a726788", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1973, + "trimY": 1, + "width": 65, + "height": 64, + "rawWidth": 65, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "close_PauseLabel.png": { + "ver": "1.0.6", + "uuid": "6f76cf49-bec5-4390-8e02-0c39db3aa06c", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1450, + "trimY": 1087, + "width": 316, + "height": 79, + "rawWidth": 316, + "rawHeight": 79, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins.png": { + "ver": "1.0.6", + "uuid": "239f5193-a287-40ec-8887-5108d59b569c", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1503, + "trimY": 1878, + "width": 70, + "height": 71, + "rawWidth": 70, + "rawHeight": 71, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "customBg.png": { + "ver": "1.0.6", + "uuid": "42d5d77f-9e47-47dd-ba44-a88c5c34f57a", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1482, + "trimY": 1405, + "width": 259, + "height": 78, + "rawWidth": 259, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dikuai.png": { + "ver": "1.0.6", + "uuid": "a4e3a13a-44b8-4fc2-9b34-e72554a59deb", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1623, + "trimY": 1738, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ding3.png": { + "ver": "1.0.6", + "uuid": "4ff0e468-4bdc-47b9-a3fc-c3999a1a62dc", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 1058, + "height": 266, + "rawWidth": 1058, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "effct.png": { + "ver": "1.0.6", + "uuid": "4d5449a4-b96c-438e-b54a-a85c31286fa3", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1951, + "trimY": 1417, + "width": 158, + "height": 78, + "rawWidth": 158, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "effct_icon.png": { + "ver": "1.0.6", + "uuid": "c008ab0e-d605-4c40-8dca-c05b824eacfc", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1879, + "trimY": 1849, + "width": 102, + "height": 116, + "rawWidth": 102, + "rawHeight": 116, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "freeze_Label.png": { + "ver": "1.0.6", + "uuid": "73e7bf8f-5809-4661-9d08-646e3c035544", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1061, + "trimY": 1, + "width": 697, + "height": 262, + "rawWidth": 697, + "rawHeight": 262, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "full.png": { + "ver": "1.0.6", + "uuid": "24643945-c61a-4dce-b2c0-6de0c11ae435", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 940, + "trimY": 269, + "width": 94, + "height": 47, + "rawWidth": 94, + "rawHeight": 49, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "good1.png": { + "ver": "1.0.6", + "uuid": "fd6eeb45-a063-4361-af57-dca7e8fc9f8a", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 305, + "trimY": 1441, + "width": 188, + "height": 85, + "rawWidth": 188, + "rawHeight": 85, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "guan.png": { + "ver": "1.0.6", + "uuid": "792a43b7-a51c-4fc8-8486-514d144e7354", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1174, + "trimY": 1700, + "width": 144, + "height": 99, + "rawWidth": 144, + "rawHeight": 99, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hammer_Label.png": { + "ver": "1.0.6", + "uuid": "0506afca-61b7-4335-909a-d891c8c1f15c", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 940, + "trimY": 322, + "width": 605, + "height": 188, + "rawWidth": 605, + "rawHeight": 188, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hui.png": { + "ver": "1.0.6", + "uuid": "38f93479-db7c-4280-a82f-eb8b10e86687", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1630, + "trimY": 1512, + "width": 149, + "height": 149, + "rawWidth": 149, + "rawHeight": 149, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kai.png": { + "ver": "1.0.6", + "uuid": "562063eb-13eb-498c-8e63-d24e8c32d078", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 97, + "trimY": 1552, + "width": 144, + "height": 99, + "rawWidth": 144, + "rawHeight": 99, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "key.png": { + "ver": "1.0.6", + "uuid": "7504a944-a1b1-4346-81c0-a5fc0157a487", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1083, + "trimY": 1879, + "width": 52, + "height": 92, + "rawWidth": 52, + "rawHeight": 92, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang_gj1.png": { + "ver": "1.0.6", + "uuid": "0f99f0a7-4494-46b4-9baa-be0c6335ce81", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 198, + "trimY": 1533, + "width": 159, + "height": 159, + "rawWidth": 159, + "rawHeight": 159, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "label_di.png": { + "ver": "1.0.6", + "uuid": "51cc2332-c4f5-4159-ac87-b812e7e9142f", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1396, + "trimY": 735, + "width": 44, + "height": 47, + "rawWidth": 44, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "label_guan.png": { + "ver": "1.0.6", + "uuid": "65f5ff8e-91d7-4008-a85d-51b9c8fab5bd", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 1293, + "width": 42, + "height": 45, + "rawWidth": 42, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "label_guanbi.png": { + "ver": "1.0.6", + "uuid": "29de91a5-f759-4702-87f9-b5bacba54760", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 397, + "trimY": 1899, + "width": 294, + "height": 72, + "rawWidth": 294, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock.png": { + "ver": "1.0.6", + "uuid": "a624291b-1769-4811-afa6-bc25f8540ac1", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1562, + "trimY": 1623, + "width": 66, + "height": 84, + "rawWidth": 66, + "rawHeight": 84, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "login_Label.png": { + "ver": "1.0.6", + "uuid": "5050bc1b-463e-40e5-9043-94195c35f6c5", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1761, + "trimY": 809, + "width": 299, + "height": 76, + "rawWidth": 299, + "rawHeight": 76, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "magic_Label.png": { + "ver": "1.0.6", + "uuid": "0c7feaae-c21e-49ea-adf3-b8f4e3a742f4", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 305, + "trimY": 830, + "width": 609, + "height": 188, + "rawWidth": 609, + "rawHeight": 188, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "miao.png": { + "ver": "1.0.6", + "uuid": "c0b60d90-b24b-44bd-8968-a0673670ac08", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1839, + "trimY": 776, + "width": 80, + "height": 79, + "rawWidth": 80, + "rawHeight": 79, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mofa.png": { + "ver": "1.0.6", + "uuid": "d84b80a7-d4bf-44f4-a85e-6e347f54482a", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1938, + "trimY": 1721, + "width": 93, + "height": 109, + "rawWidth": 93, + "rawHeight": 109, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "music.png": { + "ver": "1.0.6", + "uuid": "a0c5b867-9f62-4be7-b26a-b2e3b9bd2e6e", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 925, + "trimY": 1879, + "width": 156, + "height": 79, + "rawWidth": 156, + "rawHeight": 79, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "music_icon.png": { + "ver": "1.0.6", + "uuid": "59720082-0ae3-40e8-a5df-234adbf3de87", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1754, + "trimY": 1849, + "width": 123, + "height": 100, + "rawWidth": 123, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "nz1.png": { + "ver": "1.0.6", + "uuid": "ba34e77f-9256-4e6a-af3c-777316c1d21e", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1760, + "trimY": 1, + "width": 211, + "height": 219, + "rawWidth": 211, + "rawHeight": 219, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "nz2.png": { + "ver": "1.0.6", + "uuid": "ae011ea3-5bb9-4cee-9865-a2bfb66abc8e", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 397, + "trimY": 1605, + "width": 312, + "height": 292, + "rawWidth": 312, + "rawHeight": 292, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "pause.png": { + "ver": "1.0.6", + "uuid": "3643a167-546c-4acb-a522-f8fd1eab0ee4", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1781, + "trimY": 1692, + "width": 155, + "height": 155, + "rawWidth": 155, + "rawHeight": 155, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "pauseBtn.png": { + "ver": "1.0.6", + "uuid": "5990fd5a-af2c-4ddc-8860-f9a8d9ed41bf", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1462, + "trimY": 726, + "width": 319, + "height": 81, + "rawWidth": 319, + "rawHeight": 81, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "pause_BtnBg.png": { + "ver": "1.0.6", + "uuid": "b278aa00-f6e3-44f8-b6bb-37ed1fc367cc", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 1441, + "width": 519, + "height": 158, + "rawWidth": 519, + "rawHeight": 158, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "prop_freeze.png": { + "ver": "1.0.6", + "uuid": "7a330033-a898-4b55-a466-5f59a9e1d875", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1396, + "trimY": 809, + "width": 276, + "height": 285, + "rawWidth": 276, + "rawHeight": 285, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "prop_hammer.png": { + "ver": "1.0.6", + "uuid": "adcbd990-b677-4645-8cca-f1b0b6ff1e1d", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 1293, + "width": 320, + "height": 310, + "rawWidth": 320, + "rawHeight": 310, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "prop_magic.png": { + "ver": "1.0.6", + "uuid": "9c6e3c64-1b79-4ad1-a6e9-e9b4d6f88402", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 97, + "trimY": 1700, + "width": 271, + "height": 298, + "rawWidth": 271, + "rawHeight": 298, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rankBtn.png": { + "ver": "1.0.6", + "uuid": "213d54e8-9413-40dd-a7be-bf0e40c4757e", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1841, + "trimY": 1060, + "width": 168, + "height": 191, + "rawWidth": 168, + "rawHeight": 191, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_Home.png": { + "ver": "1.0.6", + "uuid": "7fddb6aa-fb05-4d65-9025-745d86af4c9b", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1382, + "trimY": 1101, + "width": 328, + "height": 66, + "rawWidth": 328, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_Label1.png": { + "ver": "1.0.6", + "uuid": "86b5aac1-785b-4edb-9536-9eb05f8fdc52", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1061, + "trimY": 265, + "width": 740, + "height": 55, + "rawWidth": 740, + "rawHeight": 55, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_boom.png": { + "ver": "1.0.6", + "uuid": "f345280b-6859-4898-a22a-ba2837741f03", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 269, + "width": 484, + "height": 559, + "rawWidth": 484, + "rawHeight": 559, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_close.png": { + "ver": "1.0.6", + "uuid": "36d6f89e-a68d-47a9-b67c-4b190aa8b8c0", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1841, + "trimY": 1253, + "width": 162, + "height": 169, + "rawWidth": 162, + "rawHeight": 169, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_coin.png": { + "ver": "1.0.6", + "uuid": "d928396e-6659-461c-b105-559ab7e014e7", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1482, + "trimY": 1666, + "width": 76, + "height": 78, + "rawWidth": 76, + "rawHeight": 78, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_fangqi.png": { + "ver": "1.0.6", + "uuid": "77fd4e5d-8a7c-4db9-a48e-56f19a203d7f", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1555, + "trimY": 1744, + "width": 132, + "height": 66, + "rawWidth": 132, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_hp.png": { + "ver": "1.0.6", + "uuid": "3de74abd-a830-4ee0-8d46-7c9e7f3684fe", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 1015, + "width": 364, + "height": 276, + "rawWidth": 364, + "rawHeight": 276, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_men.png": { + "ver": "1.0.6", + "uuid": "ed4cbe59-3cb9-43de-a845-51a3055ef83b", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 940, + "trimY": 512, + "width": 615, + "height": 93, + "rawWidth": 615, + "rawHeight": 93, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_remove.png": { + "ver": "1.0.6", + "uuid": "8cc4adf7-306f-4318-96ce-9857ff6fddf3", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1630, + "trimY": 1108, + "width": 283, + "height": 70, + "rawWidth": 283, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title1.png": { + "ver": "1.0.6", + "uuid": "a4c293eb-9195-409b-9563-ccef937b4933", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1552, + "width": 412, + "height": 94, + "rawWidth": 412, + "rawHeight": 94, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title10.png": { + "ver": "1.0.6", + "uuid": "22b460ef-99a5-428a-ae8e-e7bd6bf4b6b4", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1555, + "trimY": 1744, + "width": 132, + "height": 66, + "rawWidth": 132, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title2.png": { + "ver": "1.0.6", + "uuid": "97d66d78-96f8-48e5-b771-14983a974839", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1557, + "trimY": 590, + "width": 354, + "height": 69, + "rawWidth": 354, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title3.png": { + "ver": "1.0.6", + "uuid": "85f30dc3-c0a7-4079-8233-5c495b0555d0", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 1601, + "width": 485, + "height": 97, + "rawWidth": 485, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title4.png": { + "ver": "1.0.6", + "uuid": "4770f64e-31c2-4e5c-ae2e-67f8451db1dc", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 167, + "trimY": 830, + "width": 701, + "height": 136, + "rawWidth": 701, + "rawHeight": 136, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title5.png": { + "ver": "1.0.6", + "uuid": "6c29ab4e-3e5b-4340-ace6-a1d5742a4253", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 940, + "trimY": 661, + "width": 520, + "height": 72, + "rawWidth": 520, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title6.png": { + "ver": "1.0.6", + "uuid": "440a0e6e-4fb4-4afd-8906-046ba1906505", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 940, + "trimY": 607, + "width": 576, + "height": 52, + "rawWidth": 576, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title7.png": { + "ver": "1.0.6", + "uuid": "dad1793a-e95e-4099-b4ce-eb564c5f6768", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1462, + "trimY": 661, + "width": 341, + "height": 63, + "rawWidth": 341, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_title9.png": { + "ver": "1.0.6", + "uuid": "c19a75cb-d35a-4a99-a6a9-b46297361ae4", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1702, + "trimY": 1110, + "width": 281, + "height": 70, + "rawWidth": 281, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rewardBtn.png": { + "ver": "1.0.6", + "uuid": "43614b1f-b917-4fa8-a281-9fcc6985e35c", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1781, + "trimY": 1417, + "width": 168, + "height": 191, + "rawWidth": 168, + "rawHeight": 191, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "setting.png": { + "ver": "1.0.6", + "uuid": "d1cb1c61-3ba0-4e4a-a7ec-7734ba8384dd", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1630, + "trimY": 1663, + "width": 149, + "height": 73, + "rawWidth": 149, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shezhi.png": { + "ver": "1.0.6", + "uuid": "6458912f-e379-433e-918c-a62a03a7367b", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1253, + "trimY": 1801, + "width": 154, + "height": 169, + "rawWidth": 154, + "rawHeight": 169, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "startBtnBg.png": { + "ver": "1.0.6", + "uuid": "e50ac604-5211-46d3-8592-ca2985644745", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 874, + "trimY": 735, + "width": 520, + "height": 194, + "rawWidth": 520, + "rawHeight": 194, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tanchuang3.png": { + "ver": "1.0.6", + "uuid": "9f0c34c5-7d95-4577-adf5-a30309c15f82", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 830, + "width": 720, + "height": 164, + "rawWidth": 720, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tanchuang_bt1.png": { + "ver": "1.0.6", + "uuid": "1d1669ce-3fff-424b-ab6b-88996b961cb8", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1547, + "trimY": 322, + "width": 481, + "height": 170, + "rawWidth": 481, + "rawHeight": 170, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tb_fanhui.png": { + "ver": "1.0.6", + "uuid": "f431f76c-9bb7-4b5a-93c5-c501631b299d", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1914, + "trimY": 222, + "width": 107, + "height": 96, + "rawWidth": 107, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tc_bt_hyph.png": { + "ver": "1.0.6", + "uuid": "6014a83d-a470-4bb8-aec3-90e53b34d1f4", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 1700, + "width": 355, + "height": 85, + "rawWidth": 355, + "rawHeight": 85, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tc_bt_tili.png": { + "ver": "1.0.6", + "uuid": "37dc15a4-03f7-429d-9384-e53c6396474e", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1167, + "trimY": 1801, + "width": 170, + "height": 84, + "rawWidth": 170, + "rawHeight": 84, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tc_tb.png": { + "ver": "1.0.6", + "uuid": "89667c39-65ca-42fe-a9c3-1b8316bda016", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 675, + "width": 377, + "height": 338, + "rawWidth": 377, + "rawHeight": 338, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tilia_aixin.png": { + "ver": "1.0.6", + "uuid": "1a71c062-06ff-407b-bd86-523b367ddbe8", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 487, + "trimY": 269, + "width": 451, + "height": 404, + "rawWidth": 451, + "rawHeight": 404, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time1.png": { + "ver": "1.0.6", + "uuid": "dab99635-8d69-4b56-808f-888557fcacbb", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1973, + "trimY": 68, + "width": 92, + "height": 45, + "rawWidth": 92, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time2.png": { + "ver": "1.0.6", + "uuid": "555782ca-3a8e-490b-b55f-24dd62832d44", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1983, + "trimY": 1832, + "width": 92, + "height": 45, + "rawWidth": 92, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time3.png": { + "ver": "1.0.6", + "uuid": "b429526c-8ec4-402b-9a34-308553cea275", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1409, + "trimY": 1914, + "width": 92, + "height": 45, + "rawWidth": 92, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tu_aixin.png": { + "ver": "1.0.6", + "uuid": "c00afd58-6ef6-4674-a68a-373015c8d376", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 874, + "trimY": 675, + "width": 63, + "height": 56, + "rawWidth": 63, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tx.png": { + "ver": "1.0.6", + "uuid": "e21bf9e2-2981-4ab4-8d7a-b3f339a27122", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1839, + "trimY": 878, + "width": 180, + "height": 180, + "rawWidth": 180, + "rawHeight": 180, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ui_Custom.png": { + "ver": "1.0.6", + "uuid": "67aa2442-f871-4873-ab24-a38784d22bd1", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 1787, + "width": 348, + "height": 90, + "rawWidth": 348, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ui_Hard.png": { + "ver": "1.0.6", + "uuid": "1700775b-47c7-4e13-82f3-36e8fb7212c6", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1562, + "trimY": 1382, + "width": 239, + "height": 66, + "rawWidth": 239, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "word_gx.png": { + "ver": "1.0.6", + "uuid": "a25aff99-0c6c-4a9a-804a-444e05166ed0", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 767, + "trimY": 1879, + "width": 156, + "height": 89, + "rawWidth": 156, + "rawHeight": 89, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "word_sjdl.png": { + "ver": "1.0.6", + "uuid": "3f18beb1-816c-466d-ad90-369e7be8ba31", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1557, + "trimY": 494, + "width": 393, + "height": 94, + "rawWidth": 393, + "rawHeight": 94, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "word_zdyzl.png": { + "ver": "1.0.6", + "uuid": "1168233f-2cce-48a1-8568-6f8a662e889f", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 1601, + "width": 485, + "height": 97, + "rawWidth": 485, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xs_smz.png": { + "ver": "1.0.6", + "uuid": "c3063f58-52e1-4552-8660-fe0b4fbc6036", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1952, + "trimY": 494, + "width": 382, + "height": 85, + "rawWidth": 382, + "rawHeight": 85, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zd1.png": { + "ver": "1.0.6", + "uuid": "81a0ae94-d401-41bf-a4c6-87bae0c9cf3f", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 269, + "width": 484, + "height": 559, + "rawWidth": 484, + "rawHeight": 559, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhendong.png": { + "ver": "1.0.6", + "uuid": "05409d05-c235-4e8a-af70-d5f2b73dd11e", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1781, + "trimY": 1610, + "width": 157, + "height": 80, + "rawWidth": 157, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhendong_icon.png": { + "ver": "1.0.6", + "uuid": "9563609d-e840-4199-aee3-12e6dfeb7302", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1630, + "trimY": 1393, + "width": 136, + "height": 117, + "rawWidth": 136, + "rawHeight": 117, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhong.png": { + "ver": "1.0.6", + "uuid": "0c83acfe-399d-4375-8e85-db76234268f6", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1803, + "trimY": 222, + "width": 98, + "height": 109, + "rawWidth": 98, + "rawHeight": 109, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "开关.png": { + "ver": "1.0.6", + "uuid": "a688098b-eb7a-4f82-b737-8cd50c9f6d8c", + "importer": "sprite-frame", + "rawTextureUuid": "eb639914-71d8-4def-a989-c4469533754d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 711, + "trimY": 1605, + "width": 264, + "height": 104, + "rawWidth": 264, + "rawHeight": 104, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/publicUI.png b/assets/UI/UI/publicUI.png new file mode 100644 index 0000000..2c09f3f Binary files /dev/null and b/assets/UI/UI/publicUI.png differ diff --git a/assets/UI/UI/publicUI.png.meta b/assets/UI/UI/publicUI.png.meta new file mode 100644 index 0000000..9633dc9 --- /dev/null +++ b/assets/UI/UI/publicUI.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "eb639914-71d8-4def-a989-c4469533754d", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2038, + "height": 1972, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/red.png b/assets/UI/UI/red.png new file mode 100644 index 0000000..82d1961 Binary files /dev/null and b/assets/UI/UI/red.png differ diff --git a/assets/UI/UI/red.png.meta b/assets/UI/UI/red.png.meta new file mode 100644 index 0000000..dce0b00 --- /dev/null +++ b/assets/UI/UI/red.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "c5b5b585-bc43-4439-858e-36d1bae029ee", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 56, + "height": 56, + "platformSettings": {}, + "subMetas": { + "red": { + "ver": "1.0.6", + "uuid": "e124860a-ae6d-4aac-a0e2-5efc12a67b22", + "importer": "sprite-frame", + "rawTextureUuid": "c5b5b585-bc43-4439-858e-36d1bae029ee", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 56, + "height": 56, + "rawWidth": 56, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/result_btn1.png b/assets/UI/UI/result_btn1.png new file mode 100644 index 0000000..fb634e2 Binary files /dev/null and b/assets/UI/UI/result_btn1.png differ diff --git a/assets/UI/UI/result_btn1.png.meta b/assets/UI/UI/result_btn1.png.meta new file mode 100644 index 0000000..1b8d7c6 --- /dev/null +++ b/assets/UI/UI/result_btn1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4b15a631-612d-4c2a-8507-96df5812ec08", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 424, + "height": 143, + "platformSettings": {}, + "subMetas": { + "result_btn1": { + "ver": "1.0.6", + "uuid": "e2fc4d08-5c7f-403b-a227-ac033b3f1ef1", + "importer": "sprite-frame", + "rawTextureUuid": "4b15a631-612d-4c2a-8507-96df5812ec08", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 424, + "height": 143, + "rawWidth": 424, + "rawHeight": 143, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/result_btn2.png b/assets/UI/UI/result_btn2.png new file mode 100644 index 0000000..470e35f Binary files /dev/null and b/assets/UI/UI/result_btn2.png differ diff --git a/assets/UI/UI/result_btn2.png.meta b/assets/UI/UI/result_btn2.png.meta new file mode 100644 index 0000000..0ed93dd --- /dev/null +++ b/assets/UI/UI/result_btn2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "62e825ca-bd6a-4e05-8b08-cba467c91243", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 625, + "height": 190, + "platformSettings": {}, + "subMetas": { + "result_btn2": { + "ver": "1.0.6", + "uuid": "b9365ad6-cc45-4c1f-97fc-d022eb9a920a", + "importer": "sprite-frame", + "rawTextureUuid": "62e825ca-bd6a-4e05-8b08-cba467c91243", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 625, + "height": 190, + "rawWidth": 625, + "rawHeight": 190, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/result_btn3.png b/assets/UI/UI/result_btn3.png new file mode 100644 index 0000000..e725df4 Binary files /dev/null and b/assets/UI/UI/result_btn3.png differ diff --git a/assets/UI/UI/result_btn3.png.meta b/assets/UI/UI/result_btn3.png.meta new file mode 100644 index 0000000..19894ef --- /dev/null +++ b/assets/UI/UI/result_btn3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "ba2b6483-46df-41a9-b5f8-76ad05164bf3", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 554, + "height": 183, + "platformSettings": {}, + "subMetas": { + "result_btn3": { + "ver": "1.0.6", + "uuid": "ecc886ef-9354-4d91-92bf-7c83d21c07b9", + "importer": "sprite-frame", + "rawTextureUuid": "ba2b6483-46df-41a9-b5f8-76ad05164bf3", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 554, + "height": 183, + "rawWidth": 554, + "rawHeight": 183, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/shopIcon.png b/assets/UI/UI/shopIcon.png new file mode 100644 index 0000000..2a16171 Binary files /dev/null and b/assets/UI/UI/shopIcon.png differ diff --git a/assets/UI/UI/shopIcon.png.meta b/assets/UI/UI/shopIcon.png.meta new file mode 100644 index 0000000..14288d2 --- /dev/null +++ b/assets/UI/UI/shopIcon.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "fdcb2159-2153-44e0-bcb9-dccb7b3dc179", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 154, + "height": 173, + "platformSettings": {}, + "subMetas": { + "shopIcon": { + "ver": "1.0.6", + "uuid": "4b9e9399-6a87-4aee-8790-3fc571749f02", + "importer": "sprite-frame", + "rawTextureUuid": "fdcb2159-2153-44e0-bcb9-dccb7b3dc179", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 154, + "height": 173, + "rawWidth": 154, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month.meta b/assets/UI/UI/skin_month.meta new file mode 100644 index 0000000..e9e013f --- /dev/null +++ b/assets/UI/UI/skin_month.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "e7ecc637-f973-4041-83b5-459476ae11ac", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai.atlas b/assets/UI/UI/skin_month/caidai.atlas new file mode 100644 index 0000000..e88d935 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai.atlas @@ -0,0 +1,373 @@ + +caidai.png +size: 1916,2000 +format: RGBA8888 +filter: Linear,Linear +repeat: none +001 + rotate: true + xy: 0, 0 + size: 95, 145 + orig: 650, 750 + offset: 278, 111 + index: -1 +019 + rotate: false + xy: 0, 1365 + size: 650, 632 + orig: 650, 750 + offset: 0, 108 + index: -1 +020 + rotate: true + xy: 1286, 696 + size: 650, 629 + orig: 650, 750 + offset: 0, 111 + index: -1 +021 + rotate: true + xy: 1286, 1348 + size: 649, 630 + orig: 650, 750 + offset: 1, 110 + index: -1 +022 + rotate: true + xy: 652, 43 + size: 650, 630 + orig: 650, 750 + offset: 0, 110 + index: -1 +023 + rotate: true + xy: 1284, 43 + size: 650, 630 + orig: 650, 750 + offset: 0, 110 + index: -1 +024 + rotate: false + xy: 0, 731 + size: 650, 632 + orig: 650, 750 + offset: 0, 108 + index: -1 +025 + rotate: false + xy: 0, 97 + size: 650, 632 + orig: 650, 750 + offset: 0, 108 + index: -1 +026 + rotate: true + xy: 652, 1347 + size: 650, 632 + orig: 650, 750 + offset: 0, 108 + index: -1 +029 + rotate: true + xy: 652, 695 + size: 650, 632 + orig: 650, 750 + offset: 0, 108 + index: -1 + +caidai2.png +size: 1916,1920 +format: RGBA8888 +filter: Linear,Linear +repeat: none +013 + rotate: true + xy: 1264, 1268 + size: 650, 601 + orig: 650, 750 + offset: 0, 139 + index: -1 +018 + rotate: true + xy: 652, 628 + size: 638, 621 + orig: 650, 750 + offset: 6, 119 + index: -1 +027 + rotate: false + xy: 0, 667 + size: 650, 622 + orig: 650, 750 + offset: 0, 108 + index: -1 +028 + rotate: false + xy: 0, 49 + size: 650, 616 + orig: 650, 750 + offset: 0, 108 + index: -1 +030 + rotate: true + xy: 652, 1268 + size: 650, 610 + orig: 650, 750 + offset: 0, 110 + index: -1 +032 + rotate: false + xy: 0, 1291 + size: 650, 627 + orig: 650, 750 + offset: 0, 108 + index: -1 +033 + rotate: false + xy: 652, 20 + size: 650, 606 + orig: 650, 750 + offset: 0, 113 + index: -1 +035 + rotate: false + xy: 1275, 634 + size: 611, 632 + orig: 650, 750 + offset: 39, 108 + index: -1 +036 + rotate: false + xy: 1304, 0 + size: 611, 632 + orig: 650, 750 + offset: 39, 108 + index: -1 + +caidai3.png +size: 1932,1836 +format: RGBA8888 +filter: Linear,Linear +repeat: none +011 + rotate: false + xy: 624, 45 + size: 644, 582 + orig: 650, 750 + offset: 0, 158 + index: -1 +012 + rotate: false + xy: 652, 1244 + size: 650, 591 + orig: 650, 750 + offset: 0, 149 + index: -1 +014 + rotate: false + xy: 652, 629 + size: 622, 613 + orig: 650, 750 + offset: 0, 127 + index: -1 +015 + rotate: true + xy: 1276, 611 + size: 611, 620 + orig: 650, 750 + offset: 19, 120 + index: -1 +016 + rotate: true + xy: 0, 628 + size: 613, 622 + orig: 650, 750 + offset: 28, 118 + index: -1 +017 + rotate: false + xy: 1304, 1224 + size: 625, 611 + orig: 650, 750 + offset: 20, 129 + index: -1 +031 + rotate: false + xy: 0, 1243 + size: 650, 592 + orig: 650, 750 + offset: 0, 110 + index: -1 +034 + rotate: false + xy: 1270, 0 + size: 611, 609 + orig: 650, 750 + offset: 39, 110 + index: -1 +039 + rotate: false + xy: 0, 15 + size: 611, 611 + orig: 650, 750 + offset: 39, 108 + index: -1 + +caidai4.png +size: 2032,1856 +format: RGBA8888 +filter: Linear,Linear +repeat: none +002 + rotate: false + xy: 1689, 114 + size: 343, 590 + orig: 650, 750 + offset: 156, 150 + index: -1 +004 + rotate: false + xy: 1257, 706 + size: 555, 514 + orig: 650, 750 + offset: 40, 226 + index: -1 +006 + rotate: true + xy: 1257, 1222 + size: 632, 539 + orig: 650, 750 + offset: 0, 201 + index: -1 +007 + rotate: false + xy: 613, 695 + size: 642, 546 + orig: 650, 750 + offset: 0, 194 + index: -1 +008 + rotate: true + xy: 574, 0 + size: 650, 552 + orig: 650, 750 + offset: 0, 188 + index: -1 +009 + rotate: true + xy: 1128, 72 + size: 621, 559 + orig: 650, 750 + offset: 0, 181 + index: -1 +010 + rotate: true + xy: 0, 18 + size: 632, 572 + orig: 650, 750 + offset: 0, 168 + index: -1 +037 + rotate: false + xy: 0, 1246 + size: 611, 608 + orig: 650, 750 + offset: 39, 115 + index: -1 +038 + rotate: false + xy: 0, 652 + size: 611, 592 + orig: 650, 750 + offset: 39, 127 + index: -1 +040 + rotate: false + xy: 613, 1243 + size: 583, 611 + orig: 650, 750 + offset: 39, 108 + index: -1 + +caidai5.png +size: 1932,1836 +format: RGBA8888 +filter: Linear,Linear +repeat: none +003 + rotate: true + xy: 1067, 799 + size: 508, 460 + orig: 650, 750 + offset: 66, 280 + index: -1 +005 + rotate: true + xy: 528, 5 + size: 606, 529 + orig: 650, 750 + offset: 14, 211 + index: -1 +041 + rotate: false + xy: 0, 0 + size: 526, 611 + orig: 650, 750 + offset: 39, 108 + index: -1 +042 + rotate: false + xy: 536, 1264 + size: 526, 571 + orig: 650, 750 + offset: 39, 148 + index: -1 +043 + rotate: false + xy: 535, 618 + size: 530, 604 + orig: 650, 750 + offset: 35, 115 + index: -1 +044 + rotate: false + xy: 0, 613 + size: 533, 609 + orig: 650, 750 + offset: 32, 110 + index: -1 +045 + rotate: false + xy: 0, 1224 + size: 534, 611 + orig: 650, 750 + offset: 31, 108 + index: -1 +046 + rotate: true + xy: 1529, 1062 + size: 533, 357 + orig: 650, 750 + offset: 32, 362 + index: -1 +048 + rotate: true + xy: 1529, 533 + size: 527, 400 + orig: 650, 750 + offset: 38, 319 + index: -1 +049 + rotate: true + xy: 1064, 1309 + size: 526, 445 + orig: 650, 750 + offset: 39, 274 + index: -1 +050 + rotate: true + xy: 1059, 5 + size: 526, 490 + orig: 650, 750 + offset: 39, 229 + index: -1 diff --git a/assets/UI/UI/skin_month/caidai.atlas.meta b/assets/UI/UI/skin_month/caidai.atlas.meta new file mode 100644 index 0000000..8383de9 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "8cc0b279-a715-4db3-800f-002160041ecb", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai.json b/assets/UI/UI/skin_month/caidai.json new file mode 100644 index 0000000..6e4d443 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"1OJhuyHN4ToaX/nxeb8hbd7Vpoo","spine":"3.8.99","x":-325,"y":-375,"width":650,"height":750,"images":"","audio":""},"bones":[{"name":"root","scaleX":0.5,"scaleY":0.5}],"slots":[{"name":"001","bone":"root","attachment":"050"}],"skins":[{"name":"default","attachments":{"001":{"001":{"width":1300,"height":1500},"002":{"width":1300,"height":1500},"003":{"width":1300,"height":1500},"004":{"width":1300,"height":1500},"005":{"width":1300,"height":1500},"006":{"width":1300,"height":1500},"007":{"width":1300,"height":1500},"008":{"width":1300,"height":1500},"009":{"width":1300,"height":1500},"010":{"width":1300,"height":1500},"011":{"width":1300,"height":1500},"012":{"width":1300,"height":1500},"013":{"width":1300,"height":1500},"014":{"width":1300,"height":1500},"015":{"width":1300,"height":1500},"016":{"width":1300,"height":1500},"017":{"width":1300,"height":1500},"018":{"width":1300,"height":1500},"019":{"width":1300,"height":1500},"020":{"width":1300,"height":1500},"021":{"width":1300,"height":1500},"022":{"width":1300,"height":1500},"023":{"width":1300,"height":1500},"024":{"width":1300,"height":1500},"025":{"width":1300,"height":1500},"026":{"width":1300,"height":1500},"027":{"width":1300,"height":1500},"028":{"width":1300,"height":1500},"029":{"width":1300,"height":1500},"030":{"width":1300,"height":1500},"031":{"width":1300,"height":1500},"032":{"width":1300,"height":1500},"033":{"width":1300,"height":1500},"034":{"width":1300,"height":1500},"035":{"width":1300,"height":1500},"036":{"width":1300,"height":1500},"037":{"width":1300,"height":1500},"038":{"width":1300,"height":1500},"039":{"width":1300,"height":1500},"040":{"width":1300,"height":1500},"041":{"width":1300,"height":1500},"042":{"width":1300,"height":1500},"043":{"width":1300,"height":1500},"044":{"width":1300,"height":1500},"045":{"width":1300,"height":1500},"046":{"width":1300,"height":1500},"048":{"width":1300,"height":1500},"049":{"width":1300,"height":1500},"050":{"width":1300,"height":1500}}}}],"animations":{"animation":{"slots":{"001":{"attachment":[{"name":"001"},{"time":0.0333,"name":"002"},{"time":0.0667,"name":"003"},{"time":0.1,"name":"004"},{"time":0.1333,"name":"005"},{"time":0.1667,"name":"006"},{"time":0.2,"name":"007"},{"time":0.2333,"name":"008"},{"time":0.2667,"name":"009"},{"time":0.3,"name":"010"},{"time":0.3333,"name":"011"},{"time":0.3667,"name":"012"},{"time":0.4,"name":"013"},{"time":0.4333,"name":"014"},{"time":0.4667,"name":"015"},{"time":0.5,"name":"016"},{"time":0.5333,"name":"017"},{"time":0.5667,"name":"018"},{"time":0.6,"name":"019"},{"time":0.6333,"name":"020"},{"time":0.6667,"name":"021"},{"time":0.7,"name":"022"},{"time":0.7333,"name":"023"},{"time":0.7667,"name":"024"},{"time":0.8,"name":"025"},{"time":0.8333,"name":"026"},{"time":0.8667,"name":"027"},{"time":0.9,"name":"028"},{"time":0.9333,"name":"029"},{"time":0.9667,"name":"030"},{"time":1,"name":"031"},{"time":1.0333,"name":"032"},{"time":1.0667,"name":"033"},{"time":1.1,"name":"034"},{"time":1.1333,"name":"035"},{"time":1.1667,"name":"036"},{"time":1.2,"name":"037"},{"time":1.2333,"name":"038"},{"time":1.2667,"name":"039"},{"time":1.3,"name":"040"},{"time":1.3333,"name":"041"},{"time":1.3667,"name":"042"},{"time":1.4,"name":"043"},{"time":1.4333,"name":"044"},{"time":1.4667,"name":"045"},{"time":1.5,"name":"046"},{"time":1.5333,"name":"048"},{"time":1.5667,"name":"049"},{"time":1.6,"name":"050"}]}}}}} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai.json.meta b/assets/UI/UI/skin_month/caidai.json.meta new file mode 100644 index 0000000..47ef2cc --- /dev/null +++ b/assets/UI/UI/skin_month/caidai.json.meta @@ -0,0 +1,14 @@ +{ + "ver": "1.2.5", + "uuid": "a22a0d35-3bff-4c75-9001-fb024d1f0f58", + "importer": "spine", + "textures": [ + "77f8d412-8182-4147-98f7-807fe1f89368", + "8aa6814c-6944-4df0-a89d-41f362da989e", + "bfa0b997-c369-47fc-9410-3e2250f258c3", + "7520519c-8e98-4c9c-ac56-3f518c32ebba", + "33015543-ee76-4fb5-8182-52932a3e5b35" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai.png b/assets/UI/UI/skin_month/caidai.png new file mode 100644 index 0000000..e58b93a Binary files /dev/null and b/assets/UI/UI/skin_month/caidai.png differ diff --git a/assets/UI/UI/skin_month/caidai.png.meta b/assets/UI/UI/skin_month/caidai.png.meta new file mode 100644 index 0000000..3ed3275 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "77f8d412-8182-4147-98f7-807fe1f89368", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1916, + "height": 2000, + "platformSettings": {}, + "subMetas": { + "caidai": { + "ver": "1.0.6", + "uuid": "76e52d45-d39c-49d5-90c7-657845449a82", + "importer": "sprite-frame", + "rawTextureUuid": "77f8d412-8182-4147-98f7-807fe1f89368", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1.5, + "trimX": 0, + "trimY": 0, + "width": 1916, + "height": 1997, + "rawWidth": 1916, + "rawHeight": 2000, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai1.plist b/assets/UI/UI/skin_month/caidai1.plist new file mode 100644 index 0000000..514be68 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai1.plist @@ -0,0 +1,326 @@ + + + + + frames + + 02.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{0,0},{400,400}} + textureRotated + + + 03.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{400,0},{400,400}} + textureRotated + + + 04.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{800,0},{400,400}} + textureRotated + + + 05.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{1200,0},{400,400}} + textureRotated + + + 06.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{1600,0},{400,400}} + textureRotated + + + 07.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{0,400},{400,400}} + textureRotated + + + 08.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{400,400},{400,400}} + textureRotated + + + 09.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{800,400},{400,400}} + textureRotated + + + 10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{1200,400},{400,400}} + textureRotated + + + 11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{1600,400},{400,400}} + textureRotated + + + 12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{0,800},{400,400}} + textureRotated + + + 13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{400,800},{400,400}} + textureRotated + + + 14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{800,800},{400,400}} + textureRotated + + + 15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{1200,800},{400,400}} + textureRotated + + + 16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{1600,800},{400,400}} + textureRotated + + + 17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{0,1200},{400,400}} + textureRotated + + + 18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{400,1200},{400,400}} + textureRotated + + + 19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{800,1200},{400,400}} + textureRotated + + + 20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{1200,1200},{400,400}} + textureRotated + + + 21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {400,400} + spriteSourceSize + {400,400} + textureRect + {{1600,1200},{400,400}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + caidai1.png + size + {2000,1600} + smartupdate + $TexturePacker:SmartUpdate:a34d727b88633035466a324086392400:74d622c64dedce524e69dcfca962aa88:9a55058ebcc0755a72996cee73df55ad$ + textureFileName + caidai1.png + + + diff --git a/assets/UI/UI/skin_month/caidai1.plist.meta b/assets/UI/UI/skin_month/caidai1.plist.meta new file mode 100644 index 0000000..1b5a9a2 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai1.plist.meta @@ -0,0 +1,473 @@ +{ + "ver": "1.2.6", + "uuid": "4ab64ad5-36e2-4dd6-96a4-f184d39f5bfd", + "importer": "asset", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "size": { + "width": 2000, + "height": 1600 + }, + "type": "Texture Packer", + "subMetas": { + "02.png": { + "ver": "1.0.6", + "uuid": "2285b83c-30f1-40fd-837d-5ad53f304172", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "03.png": { + "ver": "1.0.6", + "uuid": "2e144a0b-648c-4b59-8b0f-ee68b92601cf", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 400, + "trimY": 0, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "04.png": { + "ver": "1.0.6", + "uuid": "79de0736-b778-43c7-9e9e-439667ed62fd", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 800, + "trimY": 0, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "05.png": { + "ver": "1.0.6", + "uuid": "e5e9249b-4bb6-471d-badb-79ffcea77101", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1200, + "trimY": 0, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "06.png": { + "ver": "1.0.6", + "uuid": "cad13f7f-075d-440d-873e-7ac7b4465c5f", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1600, + "trimY": 0, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "07.png": { + "ver": "1.0.6", + "uuid": "e8a470fc-29c4-4301-ad7c-47f68ba2151c", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 400, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "08.png": { + "ver": "1.0.6", + "uuid": "23e18515-3d1d-4da1-a711-0c21db4d8b39", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 400, + "trimY": 400, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "09.png": { + "ver": "1.0.6", + "uuid": "b5d54010-1c01-4012-bfd7-66bac95861c3", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 800, + "trimY": 400, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10.png": { + "ver": "1.0.6", + "uuid": "1325c35d-f6c5-4eda-bcec-54193bf36a30", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1200, + "trimY": 400, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "11.png": { + "ver": "1.0.6", + "uuid": "f7f13be7-6d5b-46ea-bb79-251cef8fb162", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1600, + "trimY": 400, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "12.png": { + "ver": "1.0.6", + "uuid": "6c40c69b-0897-41d5-8daa-72430f07ab9d", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 800, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "13.png": { + "ver": "1.0.6", + "uuid": "8b62ffce-8a28-4ee1-b635-f05e99f8889f", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 400, + "trimY": 800, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "14.png": { + "ver": "1.0.6", + "uuid": "e0820bf4-750e-446f-82a4-5a9de0684c80", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 800, + "trimY": 800, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "15.png": { + "ver": "1.0.6", + "uuid": "f453f11d-5bff-4b35-bbad-36cd93e62f41", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1200, + "trimY": 800, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "16.png": { + "ver": "1.0.6", + "uuid": "a6fe3c42-6720-40b6-9e32-ed47755e78b1", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1600, + "trimY": 800, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "17.png": { + "ver": "1.0.6", + "uuid": "1085c94a-3a49-452d-af1b-d8997bb798dd", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1200, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "18.png": { + "ver": "1.0.6", + "uuid": "82142a24-4205-4925-8b8a-190ab1511979", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 400, + "trimY": 1200, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "19.png": { + "ver": "1.0.6", + "uuid": "aa906b91-ef31-4d4e-8e12-cbf5f985d462", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 800, + "trimY": 1200, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "20.png": { + "ver": "1.0.6", + "uuid": "ec9823b3-0084-4eab-a6c4-87440fb397d5", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1200, + "trimY": 1200, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "21.png": { + "ver": "1.0.6", + "uuid": "caa0c9b7-bbd1-4ef4-b05e-6a488e7ff66c", + "importer": "sprite-frame", + "rawTextureUuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1600, + "trimY": 1200, + "width": 400, + "height": 400, + "rawWidth": 400, + "rawHeight": 400, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai1.png b/assets/UI/UI/skin_month/caidai1.png new file mode 100644 index 0000000..5a4b742 Binary files /dev/null and b/assets/UI/UI/skin_month/caidai1.png differ diff --git a/assets/UI/UI/skin_month/caidai1.png.meta b/assets/UI/UI/skin_month/caidai1.png.meta new file mode 100644 index 0000000..3478462 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai1.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "b664cad9-e63f-4b8e-840b-36abf186abe2", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2000, + "height": 1600, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai2.png b/assets/UI/UI/skin_month/caidai2.png new file mode 100644 index 0000000..89f9629 Binary files /dev/null and b/assets/UI/UI/skin_month/caidai2.png differ diff --git a/assets/UI/UI/skin_month/caidai2.png.meta b/assets/UI/UI/skin_month/caidai2.png.meta new file mode 100644 index 0000000..62acf37 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "8aa6814c-6944-4df0-a89d-41f362da989e", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1916, + "height": 1920, + "platformSettings": {}, + "subMetas": { + "caidai2": { + "ver": "1.0.6", + "uuid": "23a25bb9-707a-4ccd-adc9-b06e5155718f", + "importer": "sprite-frame", + "rawTextureUuid": "8aa6814c-6944-4df0-a89d-41f362da989e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 1, + "trimX": 0, + "trimY": 0, + "width": 1915, + "height": 1918, + "rawWidth": 1916, + "rawHeight": 1920, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai3.png b/assets/UI/UI/skin_month/caidai3.png new file mode 100644 index 0000000..5476dbe Binary files /dev/null and b/assets/UI/UI/skin_month/caidai3.png differ diff --git a/assets/UI/UI/skin_month/caidai3.png.meta b/assets/UI/UI/skin_month/caidai3.png.meta new file mode 100644 index 0000000..1c108c6 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "bfa0b997-c369-47fc-9410-3e2250f258c3", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1932, + "height": 1836, + "platformSettings": {}, + "subMetas": { + "caidai3": { + "ver": "1.0.6", + "uuid": "c1268578-dc50-4930-bb96-431cec96b136", + "importer": "sprite-frame", + "rawTextureUuid": "bfa0b997-c369-47fc-9410-3e2250f258c3", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1.5, + "offsetY": -3, + "trimX": 0, + "trimY": 7, + "width": 1929, + "height": 1828, + "rawWidth": 1932, + "rawHeight": 1836, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai4.png b/assets/UI/UI/skin_month/caidai4.png new file mode 100644 index 0000000..d6ed7eb Binary files /dev/null and b/assets/UI/UI/skin_month/caidai4.png differ diff --git a/assets/UI/UI/skin_month/caidai4.png.meta b/assets/UI/UI/skin_month/caidai4.png.meta new file mode 100644 index 0000000..86c10a2 --- /dev/null +++ b/assets/UI/UI/skin_month/caidai4.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "7520519c-8e98-4c9c-ac56-3f518c32ebba", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2032, + "height": 1856, + "platformSettings": {}, + "subMetas": { + "caidai4": { + "ver": "1.0.6", + "uuid": "927e609e-04b5-4b5c-aba1-a2e9ba10308f", + "importer": "sprite-frame", + "rawTextureUuid": "7520519c-8e98-4c9c-ac56-3f518c32ebba", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 0, + "trimY": 0, + "width": 2032, + "height": 1854, + "rawWidth": 2032, + "rawHeight": 1856, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/caidai5.png b/assets/UI/UI/skin_month/caidai5.png new file mode 100644 index 0000000..95df25a Binary files /dev/null and b/assets/UI/UI/skin_month/caidai5.png differ diff --git a/assets/UI/UI/skin_month/caidai5.png.meta b/assets/UI/UI/skin_month/caidai5.png.meta new file mode 100644 index 0000000..cbdc62f --- /dev/null +++ b/assets/UI/UI/skin_month/caidai5.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "33015543-ee76-4fb5-8182-52932a3e5b35", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1932, + "height": 1836, + "platformSettings": {}, + "subMetas": { + "caidai5": { + "ver": "1.0.6", + "uuid": "7e100c9a-0208-4268-8fc9-12df382147c9", + "importer": "sprite-frame", + "rawTextureUuid": "33015543-ee76-4fb5-8182-52932a3e5b35", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1.5, + "offsetY": 0.5, + "trimX": 0, + "trimY": 0, + "width": 1929, + "height": 1835, + "rawWidth": 1932, + "rawHeight": 1836, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/jiesuan.plist b/assets/UI/UI/skin_month/jiesuan.plist new file mode 100644 index 0000000..3ea4c1a --- /dev/null +++ b/assets/UI/UI/skin_month/jiesuan.plist @@ -0,0 +1,161 @@ + + + + + frames + + btn_fanhui.png + + aliases + + spriteOffset + {0,0} + spriteSize + {434,143} + spriteSourceSize + {434,143} + textureRect + {{1254,0},{434,143}} + textureRotated + + + btn_xiayiguan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {635,173} + spriteSourceSize + {635,173} + textureRect + {{0,143},{635,173}} + textureRotated + + + gold.png + + aliases + + spriteOffset + {0,0} + spriteSize + {297,333} + spriteSourceSize + {297,333} + textureRect + {{1408,143},{297,333}} + textureRotated + + + gongxi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,96} + spriteSourceSize + {378,96} + textureRect + {{75,0},{378,96}} + textureRotated + + + light.png + + aliases + + spriteOffset + {0,0} + spriteSize + {1388,1366} + spriteSourceSize + {1388,1366} + textureRect + {{510,476},{1388,1366}} + textureRotated + + + pian.png + + aliases + + spriteOffset + {0,0} + spriteSize + {510,510} + spriteSourceSize + {510,510} + textureRect + {{0,476},{510,510}} + textureRotated + + + star.png + + aliases + + spriteOffset + {0,0} + spriteSize + {75,72} + spriteSourceSize + {75,72} + textureRect + {{0,0},{75,72}} + textureRotated + + + tiaofu.png + + aliases + + spriteOffset + {0,0} + spriteSize + {773,180} + spriteSourceSize + {773,180} + textureRect + {{635,143},{773,180}} + textureRotated + + + wenzibg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {801,118} + spriteSourceSize + {801,118} + textureRect + {{453,0},{801,118}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + jiesuan.png + size + {1898,1842} + smartupdate + $TexturePacker:SmartUpdate:ce0beae0c989327746c2fefab9d6fefe:665e82919d3fab905a0e8d8e668105a2:656815dd6ca417357113fad23ed2a364$ + textureFileName + jiesuan.png + + + diff --git a/assets/UI/UI/skin_month/jiesuan.plist.meta b/assets/UI/UI/skin_month/jiesuan.plist.meta new file mode 100644 index 0000000..52f4756 --- /dev/null +++ b/assets/UI/UI/skin_month/jiesuan.plist.meta @@ -0,0 +1,220 @@ +{ + "ver": "1.2.6", + "uuid": "8b69cdeb-958b-4b97-b258-6c4755a7e20a", + "importer": "asset", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "size": { + "width": 1898, + "height": 1842 + }, + "type": "Texture Packer", + "subMetas": { + "btn_fanhui.png": { + "ver": "1.0.6", + "uuid": "37709131-c3ed-42cd-b41f-7317b11a9588", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1254, + "trimY": 0, + "width": 434, + "height": 143, + "rawWidth": 434, + "rawHeight": 143, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn_xiayiguan.png": { + "ver": "1.0.6", + "uuid": "a9e414e8-f44f-4d70-8e26-afeb4b0a857f", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 143, + "width": 635, + "height": 173, + "rawWidth": 635, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "gold.png": { + "ver": "1.0.6", + "uuid": "54413671-178f-432e-91ea-f48e927b8b90", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1408, + "trimY": 143, + "width": 297, + "height": 333, + "rawWidth": 297, + "rawHeight": 333, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "gongxi.png": { + "ver": "1.0.6", + "uuid": "e60f639b-1996-43f7-b1f4-1f7b9478d332", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 75, + "trimY": 0, + "width": 378, + "height": 96, + "rawWidth": 378, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "light.png": { + "ver": "1.0.6", + "uuid": "34ead193-0963-4181-bf4d-fc0bda204007", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 510, + "trimY": 476, + "width": 1388, + "height": 1366, + "rawWidth": 1388, + "rawHeight": 1366, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "pian.png": { + "ver": "1.0.6", + "uuid": "c73c5e21-0f4c-4a64-9ff4-c29cece42e06", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 476, + "width": 510, + "height": 510, + "rawWidth": 510, + "rawHeight": 510, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star.png": { + "ver": "1.0.6", + "uuid": "c778235f-88d0-4e75-b116-6fa1e41f78df", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 75, + "height": 72, + "rawWidth": 75, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tiaofu.png": { + "ver": "1.0.6", + "uuid": "caa66450-561a-4729-a87a-eb145afa934d", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 635, + "trimY": 143, + "width": 773, + "height": 180, + "rawWidth": 773, + "rawHeight": 180, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wenzibg.png": { + "ver": "1.0.6", + "uuid": "a5d97763-d56d-4048-86dd-ad71d7fd30d3", + "importer": "sprite-frame", + "rawTextureUuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 453, + "trimY": 0, + "width": 801, + "height": 118, + "rawWidth": 801, + "rawHeight": 118, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/skin_month/jiesuan.png b/assets/UI/UI/skin_month/jiesuan.png new file mode 100644 index 0000000..0e3a52c Binary files /dev/null and b/assets/UI/UI/skin_month/jiesuan.png differ diff --git a/assets/UI/UI/skin_month/jiesuan.png.meta b/assets/UI/UI/skin_month/jiesuan.png.meta new file mode 100644 index 0000000..3d0a4df --- /dev/null +++ b/assets/UI/UI/skin_month/jiesuan.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "95c3ba7d-aa40-49b4-9678-a4cc2a23b737", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1898, + "height": 1842, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/skylineHealth.png b/assets/UI/UI/skylineHealth.png new file mode 100644 index 0000000..097a373 Binary files /dev/null and b/assets/UI/UI/skylineHealth.png differ diff --git a/assets/UI/UI/skylineHealth.png.meta b/assets/UI/UI/skylineHealth.png.meta new file mode 100644 index 0000000..722ef0c --- /dev/null +++ b/assets/UI/UI/skylineHealth.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "34625e3f-02b1-40c4-902a-5d7e0823c3ae", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 137, + "height": 121, + "platformSettings": {}, + "subMetas": { + "skylineHealth": { + "ver": "1.0.6", + "uuid": "591a3b58-c345-4c24-84a2-f4faa8acdda1", + "importer": "sprite-frame", + "rawTextureUuid": "34625e3f-02b1-40c4-902a-5d7e0823c3ae", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 137, + "height": 121, + "rawWidth": 137, + "rawHeight": 121, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/specailBtn.png b/assets/UI/UI/specailBtn.png new file mode 100644 index 0000000..c2f5750 Binary files /dev/null and b/assets/UI/UI/specailBtn.png differ diff --git a/assets/UI/UI/specailBtn.png.meta b/assets/UI/UI/specailBtn.png.meta new file mode 100644 index 0000000..cdc0100 --- /dev/null +++ b/assets/UI/UI/specailBtn.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "2669a6d7-c3d4-40ff-a6fd-2d5185e26087", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 223, + "height": 194, + "platformSettings": {}, + "subMetas": { + "specailBtn": { + "ver": "1.0.6", + "uuid": "272d0a72-53f9-47cb-b4b9-b69d0dbdc931", + "importer": "sprite-frame", + "rawTextureUuid": "2669a6d7-c3d4-40ff-a6fd-2d5185e26087", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 223, + "height": 194, + "rawWidth": 223, + "rawHeight": 194, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/start.meta b/assets/UI/UI/start.meta new file mode 100644 index 0000000..648116b --- /dev/null +++ b/assets/UI/UI/start.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "3c71c961-6f67-4945-8fc8-4423bde5a407", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/start/bg.jpg b/assets/UI/UI/start/bg.jpg new file mode 100644 index 0000000..0f10431 Binary files /dev/null and b/assets/UI/UI/start/bg.jpg differ diff --git a/assets/UI/UI/start/bg.jpg.meta b/assets/UI/UI/start/bg.jpg.meta new file mode 100644 index 0000000..5c36c2d --- /dev/null +++ b/assets/UI/UI/start/bg.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5446346a-3fb9-4f57-bd44-4858f8fd3af2", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg": { + "ver": "1.0.6", + "uuid": "f79670d6-8e4a-4e61-b781-a48fe0de6044", + "importer": "sprite-frame", + "rawTextureUuid": "5446346a-3fb9-4f57-bd44-4858f8fd3af2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/start/bg_1.jpg b/assets/UI/UI/start/bg_1.jpg new file mode 100644 index 0000000..fdfd10b Binary files /dev/null and b/assets/UI/UI/start/bg_1.jpg differ diff --git a/assets/UI/UI/start/bg_1.jpg.meta b/assets/UI/UI/start/bg_1.jpg.meta new file mode 100644 index 0000000..cbd1a3a --- /dev/null +++ b/assets/UI/UI/start/bg_1.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4ef763e2-6a9f-4632-8dd6-5f6394e2c593", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg_1": { + "ver": "1.0.6", + "uuid": "4fb12ecd-62ef-4fe3-a15a-a5aebfca87bb", + "importer": "sprite-frame", + "rawTextureUuid": "4ef763e2-6a9f-4632-8dd6-5f6394e2c593", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/start/guide.png b/assets/UI/UI/start/guide.png new file mode 100644 index 0000000..cea528e Binary files /dev/null and b/assets/UI/UI/start/guide.png differ diff --git a/assets/UI/UI/start/guide.png.meta b/assets/UI/UI/start/guide.png.meta new file mode 100644 index 0000000..39519d9 --- /dev/null +++ b/assets/UI/UI/start/guide.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5ac610d5-e378-44b9-b3a0-7a97532a9a9a", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 174, + "height": 236, + "platformSettings": {}, + "subMetas": { + "guide": { + "ver": "1.0.6", + "uuid": "b11b546b-c8c9-4809-a7c3-64155998227b", + "importer": "sprite-frame", + "rawTextureUuid": "5ac610d5-e378-44b9-b3a0-7a97532a9a9a", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 174, + "height": 236, + "rawWidth": 174, + "rawHeight": 236, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/start/logo.png b/assets/UI/UI/start/logo.png new file mode 100644 index 0000000..54a102f Binary files /dev/null and b/assets/UI/UI/start/logo.png differ diff --git a/assets/UI/UI/start/logo.png.meta b/assets/UI/UI/start/logo.png.meta new file mode 100644 index 0000000..6a34588 --- /dev/null +++ b/assets/UI/UI/start/logo.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "c8d5d71b-f258-4537-9490-86e913376bf6", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 931, + "height": 218, + "platformSettings": {}, + "subMetas": { + "logo": { + "ver": "1.0.6", + "uuid": "7a869fe9-3b4f-4e12-adca-f5b113bb575a", + "importer": "sprite-frame", + "rawTextureUuid": "c8d5d71b-f258-4537-9490-86e913376bf6", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 929, + "height": 216, + "rawWidth": 931, + "rawHeight": 218, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/tanchuang1.png b/assets/UI/UI/tanchuang1.png new file mode 100644 index 0000000..1e8de29 Binary files /dev/null and b/assets/UI/UI/tanchuang1.png differ diff --git a/assets/UI/UI/tanchuang1.png.meta b/assets/UI/UI/tanchuang1.png.meta new file mode 100644 index 0000000..6f1592f --- /dev/null +++ b/assets/UI/UI/tanchuang1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "46fd7fa0-2fd8-4c2d-96ef-4df704c27b9b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 277, + "height": 272, + "platformSettings": {}, + "subMetas": { + "tanchuang1": { + "ver": "1.0.6", + "uuid": "5ed815f9-d87b-4d09-a0c1-9749eaec9750", + "importer": "sprite-frame", + "rawTextureUuid": "46fd7fa0-2fd8-4c2d-96ef-4df704c27b9b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 277, + "height": 272, + "rawWidth": 277, + "rawHeight": 272, + "borderTop": 60, + "borderBottom": 79, + "borderLeft": 59, + "borderRight": 67, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/tanchuang2.png b/assets/UI/UI/tanchuang2.png new file mode 100644 index 0000000..c0493fe Binary files /dev/null and b/assets/UI/UI/tanchuang2.png differ diff --git a/assets/UI/UI/tanchuang2.png.meta b/assets/UI/UI/tanchuang2.png.meta new file mode 100644 index 0000000..8c9e986 --- /dev/null +++ b/assets/UI/UI/tanchuang2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f0797bd4-cc39-44cf-84d7-c7ce8ae1c9e6", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 114, + "height": 116, + "platformSettings": {}, + "subMetas": { + "tanchuang2": { + "ver": "1.0.6", + "uuid": "d8bb9b6b-1245-4847-b518-0c04fa32ca67", + "importer": "sprite-frame", + "rawTextureUuid": "f0797bd4-cc39-44cf-84d7-c7ce8ae1c9e6", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 114, + "height": 116, + "rawWidth": 114, + "rawHeight": 116, + "borderTop": 33, + "borderBottom": 43, + "borderLeft": 36, + "borderRight": 37, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/taoxin.png b/assets/UI/UI/taoxin.png new file mode 100644 index 0000000..172b482 Binary files /dev/null and b/assets/UI/UI/taoxin.png differ diff --git a/assets/UI/UI/taoxin.png.meta b/assets/UI/UI/taoxin.png.meta new file mode 100644 index 0000000..00acb2d --- /dev/null +++ b/assets/UI/UI/taoxin.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "3b874962-9c86-4187-adf5-d40b8ab24192", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 285, + "height": 252, + "platformSettings": {}, + "subMetas": { + "taoxin": { + "ver": "1.0.6", + "uuid": "fff011d4-0e20-46a4-b608-300b4e1af5e7", + "importer": "sprite-frame", + "rawTextureUuid": "3b874962-9c86-4187-adf5-d40b8ab24192", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 285, + "height": 252, + "rawWidth": 285, + "rawHeight": 252, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang.meta b/assets/UI/UI/touxiang.meta new file mode 100644 index 0000000..00ef751 --- /dev/null +++ b/assets/UI/UI/touxiang.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "e5561364-6398-44f2-8944-9e6ffc70dbb5", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/bg.png b/assets/UI/UI/touxiang/bg.png new file mode 100644 index 0000000..2407e57 Binary files /dev/null and b/assets/UI/UI/touxiang/bg.png differ diff --git a/assets/UI/UI/touxiang/bg.png.meta b/assets/UI/UI/touxiang/bg.png.meta new file mode 100644 index 0000000..7c4c7ba --- /dev/null +++ b/assets/UI/UI/touxiang/bg.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "26da60be-4e61-48d9-bd38-5f72a4e4b0cc", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 646, + "height": 104, + "platformSettings": {}, + "subMetas": { + "bg": { + "ver": "1.0.6", + "uuid": "ca47a86d-4d0e-4767-a07d-4685bc70e1d3", + "importer": "sprite-frame", + "rawTextureUuid": "26da60be-4e61-48d9-bd38-5f72a4e4b0cc", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 646, + "height": 104, + "rawWidth": 646, + "rawHeight": 104, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/bg2.png b/assets/UI/UI/touxiang/bg2.png new file mode 100644 index 0000000..0f03d27 Binary files /dev/null and b/assets/UI/UI/touxiang/bg2.png differ diff --git a/assets/UI/UI/touxiang/bg2.png.meta b/assets/UI/UI/touxiang/bg2.png.meta new file mode 100644 index 0000000..9a3b7d0 --- /dev/null +++ b/assets/UI/UI/touxiang/bg2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5a10c0d8-3b62-413d-958d-ec4167f63054", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 320, + "height": 99, + "platformSettings": {}, + "subMetas": { + "bg2": { + "ver": "1.0.6", + "uuid": "7a202ae3-3ba3-4faf-8434-7dd05de4c638", + "importer": "sprite-frame", + "rawTextureUuid": "5a10c0d8-3b62-413d-958d-ec4167f63054", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 320, + "height": 99, + "rawWidth": 320, + "rawHeight": 99, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/btn.png b/assets/UI/UI/touxiang/btn.png new file mode 100644 index 0000000..d8b17a3 Binary files /dev/null and b/assets/UI/UI/touxiang/btn.png differ diff --git a/assets/UI/UI/touxiang/btn.png.meta b/assets/UI/UI/touxiang/btn.png.meta new file mode 100644 index 0000000..b916d39 --- /dev/null +++ b/assets/UI/UI/touxiang/btn.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "2c3ce40d-8cd6-4fb4-9bf3-961f088e952d", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 476, + "height": 164, + "platformSettings": {}, + "subMetas": { + "btn": { + "ver": "1.0.6", + "uuid": "ae195337-feca-4650-a194-8d63f8d7ee9f", + "importer": "sprite-frame", + "rawTextureUuid": "2c3ce40d-8cd6-4fb4-9bf3-961f088e952d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 476, + "height": 164, + "rawWidth": 476, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/daxiao.png b/assets/UI/UI/touxiang/daxiao.png new file mode 100644 index 0000000..e1f8d03 Binary files /dev/null and b/assets/UI/UI/touxiang/daxiao.png differ diff --git a/assets/UI/UI/touxiang/daxiao.png.meta b/assets/UI/UI/touxiang/daxiao.png.meta new file mode 100644 index 0000000..963d928 --- /dev/null +++ b/assets/UI/UI/touxiang/daxiao.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4c613641-72b6-4409-93b6-83eb6223efce", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 150, + "height": 150, + "platformSettings": {}, + "subMetas": { + "daxiao": { + "ver": "1.0.6", + "uuid": "abc9ceeb-d0a5-403c-9624-f8e232acbb52", + "importer": "sprite-frame", + "rawTextureUuid": "4c613641-72b6-4409-93b6-83eb6223efce", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 150, + "height": 150, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/kuang.png b/assets/UI/UI/touxiang/kuang.png new file mode 100644 index 0000000..14a8bf6 Binary files /dev/null and b/assets/UI/UI/touxiang/kuang.png differ diff --git a/assets/UI/UI/touxiang/kuang.png.meta b/assets/UI/UI/touxiang/kuang.png.meta new file mode 100644 index 0000000..dd9bdab --- /dev/null +++ b/assets/UI/UI/touxiang/kuang.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "900ddedd-83d9-4e50-af39-2d3b781aa7ff", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 860, + "height": 556, + "platformSettings": {}, + "subMetas": { + "kuang": { + "ver": "1.0.6", + "uuid": "16159b7a-674a-40a2-a202-044bbcb972b1", + "importer": "sprite-frame", + "rawTextureUuid": "900ddedd-83d9-4e50-af39-2d3b781aa7ff", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 860, + "height": 556, + "rawWidth": 860, + "rawHeight": 556, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/kuang1.png b/assets/UI/UI/touxiang/kuang1.png new file mode 100644 index 0000000..8870fdf Binary files /dev/null and b/assets/UI/UI/touxiang/kuang1.png differ diff --git a/assets/UI/UI/touxiang/kuang1.png.meta b/assets/UI/UI/touxiang/kuang1.png.meta new file mode 100644 index 0000000..c0a4cb1 --- /dev/null +++ b/assets/UI/UI/touxiang/kuang1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b7bac4fc-174b-4836-9162-f3ecfb6ea578", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 176, + "height": 62, + "platformSettings": {}, + "subMetas": { + "kuang1": { + "ver": "1.0.6", + "uuid": "816a50fd-6570-4404-944c-96dba069a402", + "importer": "sprite-frame", + "rawTextureUuid": "b7bac4fc-174b-4836-9162-f3ecfb6ea578", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 176, + "height": 62, + "rawWidth": 176, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/kuang2.png b/assets/UI/UI/touxiang/kuang2.png new file mode 100644 index 0000000..63135bc Binary files /dev/null and b/assets/UI/UI/touxiang/kuang2.png differ diff --git a/assets/UI/UI/touxiang/kuang2.png.meta b/assets/UI/UI/touxiang/kuang2.png.meta new file mode 100644 index 0000000..3812276 --- /dev/null +++ b/assets/UI/UI/touxiang/kuang2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "74895829-85c4-44e3-a0bf-48cb1e5dc24e", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 168, + "height": 54, + "platformSettings": {}, + "subMetas": { + "kuang2": { + "ver": "1.0.6", + "uuid": "2ed5eff3-0560-4284-858f-ddc9e93336fe", + "importer": "sprite-frame", + "rawTextureUuid": "74895829-85c4-44e3-a0bf-48cb1e5dc24e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 168, + "height": 54, + "rawWidth": 168, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/selcet2.png b/assets/UI/UI/touxiang/selcet2.png new file mode 100644 index 0000000..c61f256 Binary files /dev/null and b/assets/UI/UI/touxiang/selcet2.png differ diff --git a/assets/UI/UI/touxiang/selcet2.png.meta b/assets/UI/UI/touxiang/selcet2.png.meta new file mode 100644 index 0000000..337b11d --- /dev/null +++ b/assets/UI/UI/touxiang/selcet2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d23e9dfe-6592-42b6-aa35-9aee935f3a4c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 66, + "height": 66, + "platformSettings": {}, + "subMetas": { + "selcet2": { + "ver": "1.0.6", + "uuid": "de665a44-d95b-4bed-9bb5-f09926c2b47b", + "importer": "sprite-frame", + "rawTextureUuid": "d23e9dfe-6592-42b6-aa35-9aee935f3a4c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 66, + "height": 66, + "rawWidth": 66, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/select.png b/assets/UI/UI/touxiang/select.png new file mode 100644 index 0000000..45e8c98 Binary files /dev/null and b/assets/UI/UI/touxiang/select.png differ diff --git a/assets/UI/UI/touxiang/select.png.meta b/assets/UI/UI/touxiang/select.png.meta new file mode 100644 index 0000000..9b94ea3 --- /dev/null +++ b/assets/UI/UI/touxiang/select.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b32ee521-eb9f-486b-8872-8b2535237e87", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 176, + "height": 176, + "platformSettings": {}, + "subMetas": { + "select": { + "ver": "1.0.6", + "uuid": "378dca8c-f35f-4043-8cf4-7e09e999f3ec", + "importer": "sprite-frame", + "rawTextureUuid": "b32ee521-eb9f-486b-8872-8b2535237e87", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 176, + "height": 176, + "rawWidth": 176, + "rawHeight": 176, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/title.png b/assets/UI/UI/touxiang/title.png new file mode 100644 index 0000000..e993a19 Binary files /dev/null and b/assets/UI/UI/touxiang/title.png differ diff --git a/assets/UI/UI/touxiang/title.png.meta b/assets/UI/UI/touxiang/title.png.meta new file mode 100644 index 0000000..ed8d27b --- /dev/null +++ b/assets/UI/UI/touxiang/title.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e371002e-932c-423e-a690-09b7c07bf141", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 261, + "height": 66, + "platformSettings": {}, + "subMetas": { + "title": { + "ver": "1.0.6", + "uuid": "8ea49b2e-54ca-4c91-8c9c-6e79455545d6", + "importer": "sprite-frame", + "rawTextureUuid": "e371002e-932c-423e-a690-09b7c07bf141", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 261, + "height": 66, + "rawWidth": 261, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/tou1.png b/assets/UI/UI/touxiang/tou1.png new file mode 100644 index 0000000..30c1e24 Binary files /dev/null and b/assets/UI/UI/touxiang/tou1.png differ diff --git a/assets/UI/UI/touxiang/tou1.png.meta b/assets/UI/UI/touxiang/tou1.png.meta new file mode 100644 index 0000000..9b31013 --- /dev/null +++ b/assets/UI/UI/touxiang/tou1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "904e7c24-2283-4050-ad0f-ce4ef36082ed", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 120, + "height": 62, + "platformSettings": {}, + "subMetas": { + "tou1": { + "ver": "1.0.6", + "uuid": "857cdd7b-5703-4d7f-a09e-75f303adf5a4", + "importer": "sprite-frame", + "rawTextureUuid": "904e7c24-2283-4050-ad0f-ce4ef36082ed", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 120, + "height": 62, + "rawWidth": 120, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/tou2.png b/assets/UI/UI/touxiang/tou2.png new file mode 100644 index 0000000..23f7d89 Binary files /dev/null and b/assets/UI/UI/touxiang/tou2.png differ diff --git a/assets/UI/UI/touxiang/tou2.png.meta b/assets/UI/UI/touxiang/tou2.png.meta new file mode 100644 index 0000000..58b65dd --- /dev/null +++ b/assets/UI/UI/touxiang/tou2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "0b170c47-3c3d-4f89-b3b7-0ddb53924182", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 112, + "height": 54, + "platformSettings": {}, + "subMetas": { + "tou2": { + "ver": "1.0.6", + "uuid": "84a116a2-430f-4efd-97ee-72214d45b5ab", + "importer": "sprite-frame", + "rawTextureUuid": "0b170c47-3c3d-4f89-b3b7-0ddb53924182", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 112, + "height": 54, + "rawWidth": 112, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/useing.png b/assets/UI/UI/touxiang/useing.png new file mode 100644 index 0000000..77bc37f Binary files /dev/null and b/assets/UI/UI/touxiang/useing.png differ diff --git a/assets/UI/UI/touxiang/useing.png.meta b/assets/UI/UI/touxiang/useing.png.meta new file mode 100644 index 0000000..6915a99 --- /dev/null +++ b/assets/UI/UI/touxiang/useing.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a5f2b143-e155-4bba-bf14-621c8c1e2196", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 172, + "height": 54, + "platformSettings": {}, + "subMetas": { + "useing": { + "ver": "1.0.6", + "uuid": "e0d7168d-18b4-45e6-9db7-7a931d9205b8", + "importer": "sprite-frame", + "rawTextureUuid": "a5f2b143-e155-4bba-bf14-621c8c1e2196", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 172, + "height": 54, + "rawWidth": 172, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/touxiang/实力.png b/assets/UI/UI/touxiang/实力.png new file mode 100644 index 0000000..810cccd Binary files /dev/null and b/assets/UI/UI/touxiang/实力.png differ diff --git a/assets/UI/UI/touxiang/实力.png.meta b/assets/UI/UI/touxiang/实力.png.meta new file mode 100644 index 0000000..427400c --- /dev/null +++ b/assets/UI/UI/touxiang/实力.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5394ae86-6720-4643-9f0f-2d72a51950c7", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 142, + "height": 142, + "platformSettings": {}, + "subMetas": { + "实力": { + "ver": "1.0.6", + "uuid": "dee93fd0-480f-4cdd-ae6f-457f8b4ed71a", + "importer": "sprite-frame", + "rawTextureUuid": "5394ae86-6720-4643-9f0f-2d72a51950c7", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 142, + "height": 142, + "rawWidth": 142, + "rawHeight": 142, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/UI/xinshou.png b/assets/UI/UI/xinshou.png new file mode 100644 index 0000000..83110d7 Binary files /dev/null and b/assets/UI/UI/xinshou.png differ diff --git a/assets/UI/UI/xinshou.png.meta b/assets/UI/UI/xinshou.png.meta new file mode 100644 index 0000000..036d7f6 --- /dev/null +++ b/assets/UI/UI/xinshou.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f2ef6fe6-1d6f-4de4-9123-6ba4fa02f307", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 216, + "height": 216, + "platformSettings": {}, + "subMetas": { + "xinshou": { + "ver": "1.0.6", + "uuid": "ee1b534d-4481-4c29-8d84-9c9e0a768e76", + "importer": "sprite-frame", + "rawTextureUuid": "f2ef6fe6-1d6f-4de4-9123-6ba4fa02f307", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0.5, + "trimX": 17, + "trimY": 0, + "width": 182, + "height": 215, + "rawWidth": 216, + "rawHeight": 216, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/font.meta b/assets/UI/font.meta new file mode 100644 index 0000000..517227e --- /dev/null +++ b/assets/UI/font.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "c5ee34da-68b8-453a-996d-dcb9cd04c942", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/UI/font/font.plist b/assets/UI/font/font.plist new file mode 100644 index 0000000..52c7685 --- /dev/null +++ b/assets/UI/font/font.plist @@ -0,0 +1,3026 @@ + + + + + frames + + big_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {25,39} + spriteSourceSize + {25,39} + textureRect + {{180,1668},{25,39}} + textureRotated + + + big_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {20,38} + spriteSourceSize + {20,38} + textureRect + {{109,1866},{20,38}} + textureRotated + + + big_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,37} + spriteSourceSize + {24,37} + textureRect + {{191,1449},{24,37}} + textureRotated + + + big_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {23,38} + spriteSourceSize + {23,38} + textureRect + {{131,1891},{23,38}} + textureRotated + + + big_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {26,38} + spriteSourceSize + {26,38} + textureRect + {{38,1948},{26,38}} + textureRotated + + + big_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,38} + spriteSourceSize + {24,38} + textureRect + {{191,1409},{24,38}} + textureRotated + + + big_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {25,38} + spriteSourceSize + {25,38} + textureRect + {{190,1369},{25,38}} + textureRotated + + + big_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {25,39} + spriteSourceSize + {25,39} + textureRect + {{194,1166},{25,39}} + textureRotated + + + big_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,38} + spriteSourceSize + {24,38} + textureRect + {{171,1891},{24,38}} + textureRotated + + + big_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {25,38} + spriteSourceSize + {25,38} + textureRect + {{78,1947},{25,38}} + textureRotated + + + button_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {37,40} + spriteSourceSize + {37,40} + textureRect + {{144,997},{37,40}} + textureRotated + + + button_1.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {23,40} + spriteSourceSize + {37,40} + textureRect + {{186,994},{23,40}} + textureRotated + + + button_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,40} + spriteSourceSize + {37,40} + textureRect + {{221,1658},{33,40}} + textureRotated + + + button_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {31,40} + spriteSourceSize + {37,40} + textureRect + {{94,1687},{31,40}} + textureRotated + + + button_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {37,40} + spriteSourceSize + {37,40} + textureRect + {{136,1691},{37,40}} + textureRotated + + + button_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,40} + spriteSourceSize + {37,40} + textureRect + {{178,1695},{33,40}} + textureRotated + + + button_6.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {35,40} + spriteSourceSize + {37,40} + textureRect + {{220,1700},{35,40}} + textureRotated + + + button_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {37,40} + spriteSourceSize + {37,40} + textureRect + {{181,1730},{37,40}} + textureRotated + + + button_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {35,40} + spriteSourceSize + {37,40} + textureRect + {{220,1742},{35,40}} + textureRotated + + + button_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {35,40} + spriteSourceSize + {37,40} + textureRect + {{96,1766},{35,40}} + textureRotated + + + coin_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {36,38} + spriteSourceSize + {36,38} + textureRect + {{54,1692},{36,38}} + textureRotated + + + coin_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {26,38} + spriteSourceSize + {36,38} + textureRect + {{190,1329},{26,38}} + textureRotated + + + coin_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {16,30} + spriteSourceSize + {36,38} + textureRect + {{182,1086},{16,30}} + textureRotated + + + coin_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {34,38} + spriteSourceSize + {36,38} + textureRect + {{221,1214},{34,38}} + textureRotated + + + coin_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,38} + spriteSourceSize + {36,38} + textureRect + {{216,239},{32,38}} + textureRotated + + + coin_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {36,38} + spriteSourceSize + {36,38} + textureRect + {{179,1772},{36,38}} + textureRotated + + + coin_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {34,38} + spriteSourceSize + {36,38} + textureRect + {{221,1254},{34,38}} + textureRotated + + + coin_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {34,38} + spriteSourceSize + {36,38} + textureRect + {{221,1294},{34,38}} + textureRotated + + + coin_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {36,38} + spriteSourceSize + {36,38} + textureRect + {{219,1784},{36,38}} + textureRotated + + + coin_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {34,38} + spriteSourceSize + {36,38} + textureRect + {{221,1334},{34,38}} + textureRotated + + + coin_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {36,38} + spriteSourceSize + {36,38} + textureRect + {{219,1824},{36,38}} + textureRotated + + + coins0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,59} + spriteSourceSize + {47,59} + textureRect + {{105,545},{47,59}} + textureRotated + + + coins1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,61} + spriteSourceSize + {32,61} + textureRect + {{153,239},{32,61}} + textureRotated + + + coins2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,60} + spriteSourceSize + {45,60} + textureRect + {{1,1979},{45,60}} + textureRotated + + + coins3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,60} + spriteSourceSize + {42,60} + textureRect + {{151,433},{42,60}} + textureRotated + + + coins4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,59} + spriteSourceSize + {50,59} + textureRect + {{205,492},{50,59}} + textureRotated + + + coins5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,59} + spriteSourceSize + {44,59} + textureRect + {{137,936},{44,59}} + textureRotated + + + coins6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,58} + spriteSourceSize + {47,58} + textureRect + {{154,339},{47,58}} + textureRotated + + + coins7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,58} + spriteSourceSize + {43,58} + textureRect + {{154,388},{43,58}} + textureRotated + + + coins8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,58} + spriteSourceSize + {47,58} + textureRect + {{151,676},{47,58}} + textureRotated + + + coins9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,58} + spriteSourceSize + {44,58} + textureRect + {{62,1194},{44,58}} + textureRotated + + + coins_+.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,42} + spriteSourceSize + {44,42} + textureRect + {{107,1475},{44,42}} + textureRotated + + + coins_,.png + + aliases + + spriteOffset + {0,0} + spriteSize + {23,26} + spriteSourceSize + {23,26} + textureRect + {{191,1207},{23,26}} + textureRotated + + + coins_..png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,20} + spriteSourceSize + {24,20} + textureRect + {{109,1906},{24,20}} + textureRotated + + + coins_x.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,49} + spriteSourceSize + {43,49} + textureRect + {{100,673},{43,49}} + textureRotated + + + cost_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{212,789},{43,46}} + textureRotated + + + cost_1.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {29,46} + spriteSourceSize + {43,46} + textureRect + {{226,186},{29,46}} + textureRotated + + + cost_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,42} + spriteSourceSize + {47,42} + textureRect + {{58,1472},{47,42}} + textureRotated + + + cost_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,46} + spriteSourceSize + {43,46} + textureRect + {{216,933},{39,46}} + textureRotated + + + cost_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {37,46} + spriteSourceSize + {43,46} + textureRect + {{212,1562},{37,46}} + textureRotated + + + cost_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{212,837},{43,46}} + textureRotated + + + cost_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,46} + spriteSourceSize + {43,46} + textureRect + {{216,981},{39,46}} + textureRotated + + + cost_6.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {41,46} + spriteSourceSize + {43,46} + textureRect + {{214,380},{41,46}} + textureRotated + + + cost_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{212,885},{43,46}} + textureRotated + + + cost_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {41,46} + spriteSourceSize + {43,46} + textureRect + {{164,808},{41,46}} + textureRotated + + + cost_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {41,46} + spriteSourceSize + {43,46} + textureRect + {{194,1118},{41,46}} + textureRotated + + + discount_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,44} + textureRect + {{211,1029},{40,44}} + textureRotated + + + discount_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {28,42} + spriteSourceSize + {40,44} + textureRect + {{182,851},{28,42}} + textureRotated + + + discount_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,44} + spriteSourceSize + {40,44} + textureRect + {{217,1422},{38,44}} + textureRotated + + + discount_3.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {36,44} + spriteSourceSize + {40,44} + textureRect + {{135,1730},{36,44}} + textureRotated + + + discount_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,44} + textureRect + {{53,1730},{40,44}} + textureRotated + + + discount_5.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {38,44} + spriteSourceSize + {40,44} + textureRect + {{217,1468},{38,44}} + textureRotated + + + discount_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,44} + spriteSourceSize + {40,44} + textureRect + {{95,1720},{38,44}} + textureRotated + + + discount_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,44} + textureRect + {{54,1776},{40,44}} + textureRotated + + + discount_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,44} + textureRect + {{54,1822},{40,44}} + textureRotated + + + discount_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,44} + textureRect + {{133,1768},{40,44}} + textureRotated + + + hp_,.png + + aliases + + spriteOffset + {0,0} + spriteSize + {46,68} + spriteSourceSize + {46,68} + textureRect + {{62,1124},{46,68}} + textureRotated + + + hp_-.png + + aliases + + spriteOffset + {0,0} + spriteSize + {66,29} + spriteSourceSize + {66,29} + textureRect + {{38,1880},{66,29}} + textureRotated + + + hp_..png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,42} + spriteSourceSize + {45,42} + textureRect + {{213,1071},{45,42}} + textureRotated + + + hp_0.png + + aliases + + spriteOffset + {0,1} + spriteSize + {97,104} + spriteSourceSize + {97,108} + textureRect + {{1,596},{97,104}} + textureRotated + + + hp_1.png + + aliases + + spriteOffset + {0,1} + spriteSize + {57,104} + spriteSourceSize + {97,108} + textureRect + {{100,92},{57,104}} + textureRotated + + + hp_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {85,104} + spriteSourceSize + {97,108} + textureRect + {{1,808},{85,104}} + textureRotated + + + hp_3.png + + aliases + + spriteOffset + {0,1} + spriteSize + {81,104} + spriteSourceSize + {97,108} + textureRect + {{1,1018},{81,104}} + textureRotated + + + hp_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {95,104} + spriteSourceSize + {97,108} + textureRect + {{1,702},{95,104}} + textureRotated + + + hp_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {85,102} + spriteSourceSize + {97,108} + textureRect + {{1,914},{85,102}} + textureRotated + + + hp_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {98,128} + spriteSourceSize + {98,128} + textureRect + {{1,228},{98,128}} + textureRotated + + + hp_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {94,125} + spriteSourceSize + {94,125} + textureRect + {{1,358},{94,125}} + textureRotated + + + hp_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {97,134} + spriteSourceSize + {97,134} + textureRect + {{1,92},{97,134}} + textureRotated + + + hp_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {96,129} + spriteSourceSize + {96,129} + textureRect + {{159,1},{96,129}} + textureRotated + + + hp_x.png + + aliases + + spriteOffset + {0,0} + spriteSize + {102,109} + spriteSourceSize + {102,109} + textureRect + {{1,485},{102,109}} + textureRotated + + + ice_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {51,65} + spriteSourceSize + {51,65} + textureRect + {{101,277},{51,65}} + textureRotated + + + ice_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,64} + spriteSourceSize + {27,64} + textureRect + {{88,808},{27,64}} + textureRotated + + + ice_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {51,65} + spriteSourceSize + {51,65} + textureRect + {{159,186},{51,65}} + textureRotated + + + ice_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,65} + spriteSourceSize + {45,65} + textureRect + {{105,478},{45,65}} + textureRotated + + + ice_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {52,65} + spriteSourceSize + {52,65} + textureRect + {{97,411},{52,65}} + textureRotated + + + ice_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {49,65} + spriteSourceSize + {49,65} + textureRect + {{152,477},{49,65}} + textureRotated + + + ice_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {49,65} + spriteSourceSize + {49,65} + textureRect + {{100,606},{49,65}} + textureRotated + + + ice_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {46,64} + spriteSourceSize + {46,64} + textureRect + {{98,718},{46,64}} + textureRotated + + + ice_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {51,65} + spriteSourceSize + {51,65} + textureRect + {{101,344},{51,65}} + textureRotated + + + ice_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {49,65} + spriteSourceSize + {49,65} + textureRect + {{154,544},{49,65}} + textureRotated + + + level_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,54} + spriteSourceSize + {42,54} + textureRect + {{94,1519},{42,54}} + textureRotated + + + level_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {30,54} + spriteSourceSize + {42,54} + textureRect + {{88,1004},{30,54}} + textureRotated + + + level_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,54} + spriteSourceSize + {42,54} + textureRect + {{138,1635},{40,54}} + textureRotated + + + level_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,54} + spriteSourceSize + {42,54} + textureRect + {{128,1036},{38,54}} + textureRotated + + + level_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,54} + spriteSourceSize + {42,54} + textureRect + {{94,1575},{42,54}} + textureRotated + + + level_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,54} + spriteSourceSize + {42,54} + textureRect + {{148,1356},{40,54}} + textureRotated + + + level_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,54} + spriteSourceSize + {42,54} + textureRect + {{149,1412},{40,54}} + textureRotated + + + level_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,54} + spriteSourceSize + {42,54} + textureRect + {{94,1631},{42,54}} + textureRotated + + + level_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,54} + spriteSourceSize + {42,54} + textureRect + {{84,1036},{42,54}} + textureRotated + + + level_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,54} + spriteSourceSize + {42,54} + textureRect + {{150,1124},{42,54}} + textureRotated + + + lock_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,32} + spriteSourceSize + {22,32} + textureRect + {{98,784},{22,32}} + textureRotated + + + lock_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {17,32} + spriteSourceSize + {17,32} + textureRect + {{96,1847},{17,32}} + textureRotated + + + lock_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {21,31} + spriteSourceSize + {21,31} + textureRect + {{166,785},{21,31}} + textureRotated + + + lock_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {21,32} + spriteSourceSize + {21,32} + textureRect + {{132,785},{21,32}} + textureRotated + + + lock_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {23,32} + spriteSourceSize + {23,32} + textureRect + {{122,2013},{23,32}} + textureRotated + + + lock_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {21,32} + spriteSourceSize + {21,32} + textureRect + {{118,1951},{21,32}} + textureRotated + + + lock_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,32} + spriteSourceSize + {22,32} + textureRect + {{157,1967},{22,32}} + textureRotated + + + lock_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,32} + spriteSourceSize + {22,32} + textureRect + {{181,1952},{22,32}} + textureRotated + + + lock_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {21,32} + spriteSourceSize + {21,32} + textureRect + {{205,1967},{21,32}} + textureRotated + + + lock_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,32} + spriteSourceSize + {22,32} + textureRect + {{181,1986},{22,32}} + textureRotated + + + month_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,46} + textureRect + {{131,1810},{40,44}} + textureRotated + + + month_1.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {26,44} + spriteSourceSize + {40,46} + textureRect + {{190,1283},{26,44}} + textureRotated + + + month_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,44} + spriteSourceSize + {40,46} + textureRect + {{69,1868},{38,44}} + textureRotated + + + month_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {34,44} + spriteSourceSize + {40,46} + textureRect + {{221,1168},{34,44}} + textureRotated + + + month_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{179,1235},{40,46}} + textureRotated + + + month_5.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {38,44} + spriteSourceSize + {40,46} + textureRect + {{82,1974},{38,44}} + textureRotated + + + month_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,46} + spriteSourceSize + {40,46} + textureRect + {{217,1374},{38,46}} + textureRotated + + + month_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,46} + textureRect + {{177,1810},{40,44}} + textureRotated + + + month_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{203,1514},{40,46}} + textureRotated + + + month_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{213,1610},{40,46}} + textureRotated + + + mul0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,37} + spriteSourceSize + {33,37} + textureRect + {{96,1808},{33,37}} + textureRotated + + + mul1.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {25,37} + spriteSourceSize + {33,37} + textureRect + {{205,1864},{25,37}} + textureRotated + + + mul10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,64} + spriteSourceSize + {58,64} + textureRect + {{154,273},{58,64}} + textureRotated + + + mul2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,37} + spriteSourceSize + {33,37} + textureRect + {{131,1852},{33,37}} + textureRotated + + + mul3.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {31,37} + spriteSourceSize + {33,37} + textureRect + {{69,1914},{31,37}} + textureRotated + + + mul4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,37} + spriteSourceSize + {33,37} + textureRect + {{166,1856},{33,37}} + textureRotated + + + mul5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {31,35} + spriteSourceSize + {33,37} + textureRect + {{211,1891},{31,35}} + textureRotated + + + mul6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,37} + spriteSourceSize + {33,37} + textureRect + {{131,1916},{33,37}} + textureRotated + + + mul7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,37} + spriteSourceSize + {33,37} + textureRect + {{170,1917},{33,37}} + textureRotated + + + mul8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,37} + spriteSourceSize + {33,37} + textureRect + {{209,1928},{33,37}} + textureRotated + + + mul9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,37} + spriteSourceSize + {33,37} + textureRect + {{122,1974},{33,37}} + textureRotated + + + mulo0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,93} + spriteSourceSize + {55,93} + textureRect + {{1,1219},{55,93}} + textureRotated + + + mulo1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {35,97} + spriteSourceSize + {35,97} + textureRect + {{1,1880},{35,97}} + textureRotated + + + mulo10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,77} + spriteSourceSize + {50,77} + textureRect + {{101,198},{50,77}} + textureRotated + + + mulo2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {52,96} + spriteSourceSize + {52,96} + textureRect + {{159,132},{52,96}} + textureRotated + + + mulo3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {49,95} + spriteSourceSize + {49,95} + textureRect + {{1,1501},{49,95}} + textureRotated + + + mulo4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {59,93} + spriteSourceSize + {59,93} + textureRect + {{1,1124},{59,93}} + textureRotated + + + mulo5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {51,93} + spriteSourceSize + {51,93} + textureRect + {{1,1598},{51,93}} + textureRotated + + + mulo6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {56,92} + spriteSourceSize + {56,92} + textureRect + {{1,1314},{56,92}} + textureRotated + + + mulo7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,92} + spriteSourceSize + {50,92} + textureRect + {{1,1693},{50,92}} + textureRotated + + + mulo8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,91} + spriteSourceSize + {55,91} + textureRect + {{1,1408},{55,91}} + textureRotated + + + mulo9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {51,91} + spriteSourceSize + {51,91} + textureRect + {{1,1787},{51,91}} + textureRotated + + + rank_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {33,48} + spriteSourceSize + {33,48} + textureRect + {{168,1519},{33,48}} + textureRotated + + + rank_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,47} + spriteSourceSize + {27,47} + textureRect + {{183,895},{27,47}} + textureRotated + + + rank_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {31,47} + spriteSourceSize + {31,47} + textureRect + {{180,1619},{31,47}} + textureRotated + + + rank_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {30,47} + spriteSourceSize + {30,47} + textureRect + {{84,1092},{30,47}} + textureRotated + + + rank_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {34,48} + spriteSourceSize + {34,48} + textureRect + {{176,1569},{34,48}} + textureRotated + + + rank_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {30,47} + spriteSourceSize + {30,47} + textureRect + {{133,1092},{30,47}} + textureRotated + + + rank_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,47} + spriteSourceSize + {32,47} + textureRect + {{48,1976},{32,47}} + textureRotated + + + rank_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,49} + spriteSourceSize + {32,49} + textureRect + {{153,1468},{32,49}} + textureRotated + + + rank_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {31,48} + spriteSourceSize + {31,48} + textureRect + {{183,944},{31,48}} + textureRotated + + + rank_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,48} + spriteSourceSize + {32,48} + textureRect + {{168,1036},{32,48}} + textureRotated + + + result,.png + + aliases + + spriteOffset + {0,0} + spriteSize + {21,24} + spriteSourceSize + {21,24} + textureRect + {{187,1488},{21,24}} + textureRotated + + + result_..png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,18} + spriteSourceSize + {22,18} + textureRect + {{157,2001},{22,18}} + textureRotated + + + result_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,57} + spriteSourceSize + {45,57} + textureRect + {{58,1240},{45,57}} + textureRotated + + + result_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {30,59} + spriteSourceSize + {30,59} + textureRect + {{105,1240},{30,59}} + textureRotated + + + result_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,58} + spriteSourceSize + {43,58} + textureRect + {{59,1299},{43,58}} + textureRotated + + + result_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,58} + spriteSourceSize + {40,58} + textureRect + {{52,1516},{40,58}} + textureRotated + + + result_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {48,57} + spriteSourceSize + {48,57} + textureRect + {{205,553},{48,57}} + textureRotated + + + result_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,57} + spriteSourceSize + {42,57} + textureRect + {{213,433},{42,57}} + textureRotated + + + result_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,56} + spriteSourceSize + {45,56} + textureRect + {{199,742},{45,56}} + textureRotated + + + result_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {41,56} + spriteSourceSize + {41,56} + textureRect + {{214,273},{41,56}} + textureRotated + + + result_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,56} + spriteSourceSize + {45,56} + textureRect + {{59,1359},{45,56}} + textureRotated + + + result_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {42,56} + spriteSourceSize + {42,56} + textureRect + {{104,1301},{42,56}} + textureRotated + + + result_x.png + + aliases + + spriteOffset + {0,0} + spriteSize + {41,47} + spriteSourceSize + {41,47} + textureRect + {{214,331},{41,47}} + textureRotated + + + scoin_0.png + + aliases + + spriteOffset + {0,1} + spriteSize + {47,51} + spriteSourceSize + {47,63} + textureRect + {{146,736},{47,51}} + textureRotated + + + scoin_09.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,63} + spriteSourceSize + {47,63} + textureRect + {{117,808},{45,63}} + textureRotated + + + scoin_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {25,53} + spriteSourceSize + {47,63} + textureRect + {{164,1180},{25,53}} + textureRotated + + + scoin_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {21,25} + spriteSourceSize + {47,63} + textureRect + {{205,1990},{21,25}} + textureRotated + + + scoin_2.png + + aliases + + spriteOffset + {0,1} + spriteSize + {47,53} + spriteSourceSize + {47,63} + textureRect + {{58,1417},{47,53}} + textureRotated + + + scoin_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{151,611},{47,63}} + textureRotated + + + scoin_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{200,612},{47,63}} + textureRotated + + + scoin_5.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {45,63} + spriteSourceSize + {47,63} + textureRect + {{88,874},{45,63}} + textureRotated + + + scoin_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{200,677},{47,63}} + textureRotated + + + scoin_7.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {45,61} + spriteSourceSize + {47,63} + textureRect + {{135,873},{45,61}} + textureRotated + + + scoin_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{88,939},{47,63}} + textureRotated + + + tili_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,46} + textureRect + {{131,1810},{40,44}} + textureRotated + + + tili_1.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {26,44} + spriteSourceSize + {40,46} + textureRect + {{190,1283},{26,44}} + textureRotated + + + tili_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,44} + spriteSourceSize + {40,46} + textureRect + {{69,1868},{38,44}} + textureRotated + + + tili_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {34,44} + spriteSourceSize + {40,46} + textureRect + {{221,1168},{34,44}} + textureRotated + + + tili_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{179,1235},{40,46}} + textureRotated + + + tili_5.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {38,44} + spriteSourceSize + {40,46} + textureRect + {{82,1974},{38,44}} + textureRotated + + + tili_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,46} + spriteSourceSize + {40,46} + textureRect + {{217,1374},{38,46}} + textureRotated + + + tili_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,44} + spriteSourceSize + {40,46} + textureRect + {{177,1810},{40,44}} + textureRotated + + + tili_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{203,1514},{40,46}} + textureRotated + + + tili_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{213,1610},{40,46}} + textureRotated + + + tili_x.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {16,32} + spriteSourceSize + {40,46} + textureRect + {{82,2020},{16,32}} + textureRotated + + + time_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,56} + spriteSourceSize + {40,56} + textureRect + {{106,1359},{40,56}} + textureRotated + + + time_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {28,56} + spriteSourceSize + {40,56} + textureRect + {{138,1519},{28,56}} + textureRotated + + + time_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {18,48} + spriteSourceSize + {40,56} + textureRect + {{237,1118},{18,48}} + textureRotated + + + time_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,56} + spriteSourceSize + {40,56} + textureRect + {{54,1576},{38,56}} + textureRotated + + + time_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {36,56} + spriteSourceSize + {40,56} + textureRect + {{138,1577},{36,56}} + textureRotated + + + time_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,56} + spriteSourceSize + {40,56} + textureRect + {{107,1417},{40,56}} + textureRotated + + + time_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,56} + spriteSourceSize + {40,56} + textureRect + {{54,1634},{38,56}} + textureRotated + + + time_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {38,56} + spriteSourceSize + {40,56} + textureRect + {{110,1124},{38,56}} + textureRotated + + + time_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,56} + spriteSourceSize + {40,56} + textureRect + {{122,1182},{40,56}} + textureRotated + + + time_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,56} + spriteSourceSize + {40,56} + textureRect + {{137,1240},{40,56}} + textureRotated + + + time_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,56} + spriteSourceSize + {40,56} + textureRect + {{148,1298},{40,56}} + textureRotated + + + word_gx.png + + aliases + + spriteOffset + {0,0} + spriteSize + {156,89} + spriteSourceSize + {156,89} + textureRect + {{1,1},{156,89}} + textureRotated + + + x.png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,22} + spriteSourceSize + {22,22} + textureRect + {{205,2017},{22,22}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + font.png + size + {256,2040} + smartupdate + $TexturePacker:SmartUpdate:b43195dff15c8126595451a22022634e:038b722b3d3f0405b262c4249637d1ba:90bd8558f1bc1540882ee9b431362e98$ + textureFileName + font.png + + + diff --git a/assets/UI/font/font.plist.meta b/assets/UI/font/font.plist.meta new file mode 100644 index 0000000..eb6829e --- /dev/null +++ b/assets/UI/font/font.plist.meta @@ -0,0 +1,4613 @@ +{ + "ver": "1.2.6", + "uuid": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8", + "importer": "asset", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "size": { + "width": 256, + "height": 2040 + }, + "type": "Texture Packer", + "subMetas": { + "big_0.png": { + "ver": "1.0.6", + "uuid": "98b92eb9-9ac6-4dcf-bbb4-d8d7e0f55697", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 180, + "trimY": 1668, + "width": 25, + "height": 39, + "rawWidth": 25, + "rawHeight": 39, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_1.png": { + "ver": "1.0.6", + "uuid": "dca5df16-714f-49bc-93d9-072a95869af6", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 109, + "trimY": 1866, + "width": 20, + "height": 38, + "rawWidth": 20, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_2.png": { + "ver": "1.0.6", + "uuid": "34314178-7f7a-4abd-885c-1860b478da56", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 1449, + "width": 24, + "height": 37, + "rawWidth": 24, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_3.png": { + "ver": "1.0.6", + "uuid": "857a2b1c-22dc-40bf-9e48-3ca8d6649e34", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1891, + "width": 23, + "height": 38, + "rawWidth": 23, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_4.png": { + "ver": "1.0.6", + "uuid": "4a9e1f76-acf1-48b7-a574-c0e79e935e7c", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 38, + "trimY": 1948, + "width": 26, + "height": 38, + "rawWidth": 26, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_5.png": { + "ver": "1.0.6", + "uuid": "37ef93ee-6301-4c1a-ad9a-0d22f11e9104", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 1409, + "width": 24, + "height": 38, + "rawWidth": 24, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_6.png": { + "ver": "1.0.6", + "uuid": "65fc153a-4019-4fba-84fc-a75a9e90c479", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 190, + "trimY": 1369, + "width": 25, + "height": 38, + "rawWidth": 25, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_7.png": { + "ver": "1.0.6", + "uuid": "67297c4b-f01b-407b-a5d4-64b551ef61e9", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 194, + "trimY": 1166, + "width": 25, + "height": 39, + "rawWidth": 25, + "rawHeight": 39, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_8.png": { + "ver": "1.0.6", + "uuid": "8f395139-64a0-4519-bf7b-7cdb56697220", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 171, + "trimY": 1891, + "width": 24, + "height": 38, + "rawWidth": 24, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "big_9.png": { + "ver": "1.0.6", + "uuid": "034f8752-96af-4186-9d0a-a49eedb95bb9", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 78, + "trimY": 1947, + "width": 25, + "height": 38, + "rawWidth": 25, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_0.png": { + "ver": "1.0.6", + "uuid": "f07349a7-72bf-41dd-a345-4d4fd13878bf", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 144, + "trimY": 997, + "width": 37, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_1.png": { + "ver": "1.0.6", + "uuid": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 186, + "trimY": 994, + "width": 23, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_2.png": { + "ver": "1.0.6", + "uuid": "9ee57ec6-6818-4c16-983b-0c2ce36dcdfd", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 221, + "trimY": 1658, + "width": 33, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_3.png": { + "ver": "1.0.6", + "uuid": "145fa91f-8c74-436f-9996-ca878fb7bc70", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 94, + "trimY": 1687, + "width": 31, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_4.png": { + "ver": "1.0.6", + "uuid": "931c1ecd-3ce1-4eba-95ad-8624422236c4", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 136, + "trimY": 1691, + "width": 37, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_5.png": { + "ver": "1.0.6", + "uuid": "02083668-1c42-4283-98ed-8b05cb28cf97", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 178, + "trimY": 1695, + "width": 33, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_6.png": { + "ver": "1.0.6", + "uuid": "ba2ec759-1879-46d5-854a-41fe5145b6ba", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 220, + "trimY": 1700, + "width": 35, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_7.png": { + "ver": "1.0.6", + "uuid": "eae51ad3-ec08-4f9a-99db-dca83dbe85f7", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 181, + "trimY": 1730, + "width": 37, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_8.png": { + "ver": "1.0.6", + "uuid": "a376d1fb-abf8-4145-8a9e-ebe64fae8a4f", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 1742, + "width": 35, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "button_9.png": { + "ver": "1.0.6", + "uuid": "f1d1f16c-4ec6-499c-a1d9-04a51680f297", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 96, + "trimY": 1766, + "width": 35, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_0.png": { + "ver": "1.0.6", + "uuid": "695e881d-f1ba-4d2c-8b29-2bb77e6c0f60", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 54, + "trimY": 1692, + "width": 36, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_1.png": { + "ver": "1.0.6", + "uuid": "b2ec870f-5ac8-4b00-ad61-7986b947ecf6", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 190, + "trimY": 1329, + "width": 26, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_10.png": { + "ver": "1.0.6", + "uuid": "d91347ca-acd5-4f6f-9ded-1da1d272fee2", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 182, + "trimY": 1086, + "width": 16, + "height": 30, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_2.png": { + "ver": "1.0.6", + "uuid": "e4e797c9-da14-4ead-bb8f-a8beec287ddc", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 221, + "trimY": 1214, + "width": 34, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_3.png": { + "ver": "1.0.6", + "uuid": "4b9ffa17-ba49-45c1-94e6-60f6488b98a7", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 216, + "trimY": 239, + "width": 32, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_4.png": { + "ver": "1.0.6", + "uuid": "a869a67e-1a22-49df-8a81-1731746c1641", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 179, + "trimY": 1772, + "width": 36, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_5.png": { + "ver": "1.0.6", + "uuid": "cffb741d-aa2b-417d-955b-9e1e485a5351", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 221, + "trimY": 1254, + "width": 34, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_6.png": { + "ver": "1.0.6", + "uuid": "d8b3546a-d3c2-42fe-a545-7714bb16627c", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 221, + "trimY": 1294, + "width": 34, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_7.png": { + "ver": "1.0.6", + "uuid": "9aff338f-d5d2-436c-84f4-ab7b7b1abda3", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 219, + "trimY": 1784, + "width": 36, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_8.png": { + "ver": "1.0.6", + "uuid": "23750c3c-c51d-40bc-9ef4-32af82924691", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 221, + "trimY": 1334, + "width": 34, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin_9.png": { + "ver": "1.0.6", + "uuid": "e9089c82-db47-44ae-b9e1-2d4e99abb41e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 219, + "trimY": 1824, + "width": 36, + "height": 38, + "rawWidth": 36, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins0.png": { + "ver": "1.0.6", + "uuid": "a8743269-1766-4da5-a1db-aab5c3de7234", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 105, + "trimY": 545, + "width": 47, + "height": 59, + "rawWidth": 47, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins1.png": { + "ver": "1.0.6", + "uuid": "01b33f17-a428-4b45-bd9d-6879f3e80d4d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 153, + "trimY": 239, + "width": 32, + "height": 61, + "rawWidth": 32, + "rawHeight": 61, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins2.png": { + "ver": "1.0.6", + "uuid": "7b93a019-5dc2-4925-bb61-1226de4cc1eb", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1979, + "width": 45, + "height": 60, + "rawWidth": 45, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins3.png": { + "ver": "1.0.6", + "uuid": "b8346db6-71a3-4353-9655-cc7eae388af8", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 151, + "trimY": 433, + "width": 42, + "height": 60, + "rawWidth": 42, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins4.png": { + "ver": "1.0.6", + "uuid": "020554de-b0ec-4d2f-bc1d-3a8ff2214703", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 205, + "trimY": 492, + "width": 50, + "height": 59, + "rawWidth": 50, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins5.png": { + "ver": "1.0.6", + "uuid": "cc8de5c6-9230-4842-9f4a-f2ad5e3f4615", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 137, + "trimY": 936, + "width": 44, + "height": 59, + "rawWidth": 44, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins6.png": { + "ver": "1.0.6", + "uuid": "e299c220-3c0b-45cb-8765-5f93818af5d4", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 154, + "trimY": 339, + "width": 47, + "height": 58, + "rawWidth": 47, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins7.png": { + "ver": "1.0.6", + "uuid": "97362dcd-96e3-42ec-b73f-281ac9778643", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 154, + "trimY": 388, + "width": 43, + "height": 58, + "rawWidth": 43, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins8.png": { + "ver": "1.0.6", + "uuid": "837692cc-2850-4a36-b913-0851d05d17f8", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 151, + "trimY": 676, + "width": 47, + "height": 58, + "rawWidth": 47, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins9.png": { + "ver": "1.0.6", + "uuid": "c23b5782-56d1-4758-8d81-22689679d867", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 62, + "trimY": 1194, + "width": 44, + "height": 58, + "rawWidth": 44, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_+.png": { + "ver": "1.0.6", + "uuid": "90e816d5-45c8-4ff7-a072-bb59e162d9f6", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 107, + "trimY": 1475, + "width": 44, + "height": 42, + "rawWidth": 44, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_,.png": { + "ver": "1.0.6", + "uuid": "46ee4c6c-2832-43e9-aada-139f7f6c1c19", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 191, + "trimY": 1207, + "width": 23, + "height": 26, + "rawWidth": 23, + "rawHeight": 26, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_..png": { + "ver": "1.0.6", + "uuid": "8e5ee732-7c6f-4016-b040-5850d8ad0c1a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 109, + "trimY": 1906, + "width": 24, + "height": 20, + "rawWidth": 24, + "rawHeight": 20, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_x.png": { + "ver": "1.0.6", + "uuid": "ee1f756f-b070-44b1-a415-4809b2634490", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 100, + "trimY": 673, + "width": 43, + "height": 49, + "rawWidth": 43, + "rawHeight": 49, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_0.png": { + "ver": "1.0.6", + "uuid": "229107be-b856-42e6-9d8e-2315685442ed", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 212, + "trimY": 789, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_1.png": { + "ver": "1.0.6", + "uuid": "efcfc450-7096-423f-80fa-097f310a453c", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 226, + "trimY": 186, + "width": 29, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_10.png": { + "ver": "1.0.6", + "uuid": "32a301c2-9fce-420b-9018-bc0a0d6f9e06", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 58, + "trimY": 1472, + "width": 47, + "height": 42, + "rawWidth": 47, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_2.png": { + "ver": "1.0.6", + "uuid": "13873957-4e59-4488-9d92-8e2bbb9e3a3a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 216, + "trimY": 933, + "width": 39, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_3.png": { + "ver": "1.0.6", + "uuid": "f37ad52f-0da0-41ae-9ffe-655a5d1ca131", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 212, + "trimY": 1562, + "width": 37, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_4.png": { + "ver": "1.0.6", + "uuid": "ddf55804-ab2f-4385-9098-39ca598f382e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 212, + "trimY": 837, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_5.png": { + "ver": "1.0.6", + "uuid": "b5498c3a-31f8-45fc-942c-9478eaa145b3", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 216, + "trimY": 981, + "width": 39, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_6.png": { + "ver": "1.0.6", + "uuid": "4dc14547-4696-48d8-be43-b06f713dd4c8", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 214, + "trimY": 380, + "width": 41, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_7.png": { + "ver": "1.0.6", + "uuid": "ad13c68b-f592-45fa-bd87-fd3ce3a23df4", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 212, + "trimY": 885, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_8.png": { + "ver": "1.0.6", + "uuid": "6f445f4a-48d4-4c86-ac0e-12a5c1f0c456", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 164, + "trimY": 808, + "width": 41, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_9.png": { + "ver": "1.0.6", + "uuid": "77f49e6b-2699-4187-8e0c-ade003ce1a9e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 194, + "trimY": 1118, + "width": 41, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_0.png": { + "ver": "1.0.6", + "uuid": "8bf71b2d-8110-4f80-b372-7664958fa972", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 211, + "trimY": 1029, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_1.png": { + "ver": "1.0.6", + "uuid": "573856d6-bcf2-4f74-a296-b938735b3a6e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 182, + "trimY": 851, + "width": 28, + "height": 42, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_2.png": { + "ver": "1.0.6", + "uuid": "e81e3849-47b0-4002-8396-1c6890c56208", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 217, + "trimY": 1422, + "width": 38, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_3.png": { + "ver": "1.0.6", + "uuid": "d7e579d0-af4f-4a02-9c38-e1fe585db121", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 0, + "trimX": 135, + "trimY": 1730, + "width": 36, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_4.png": { + "ver": "1.0.6", + "uuid": "7a51cfc8-dc08-482d-91e8-d851ed02b4d0", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 53, + "trimY": 1730, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_5.png": { + "ver": "1.0.6", + "uuid": "6143b77a-3c94-42ca-9026-dca9db58f56b", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 217, + "trimY": 1468, + "width": 38, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_6.png": { + "ver": "1.0.6", + "uuid": "e8659f41-d9d0-4e43-adc8-f13b0cbf66a1", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 95, + "trimY": 1720, + "width": 38, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_7.png": { + "ver": "1.0.6", + "uuid": "535a83dd-d70a-480e-9190-b8776cc97c65", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 54, + "trimY": 1776, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_8.png": { + "ver": "1.0.6", + "uuid": "d458276c-fa7a-452d-a01a-fa19cd196e1d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 54, + "trimY": 1822, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "discount_9.png": { + "ver": "1.0.6", + "uuid": "e61fdba9-d3ad-47c9-ba96-14f843fc2f6b", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 133, + "trimY": 1768, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_,.png": { + "ver": "1.0.6", + "uuid": "f1cb68b4-fc78-45bd-9786-d4e21fd02523", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 62, + "trimY": 1124, + "width": 46, + "height": 68, + "rawWidth": 46, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_-.png": { + "ver": "1.0.6", + "uuid": "44cbc1be-fe4c-40df-8e52-3c2f768d61ee", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 38, + "trimY": 1880, + "width": 66, + "height": 29, + "rawWidth": 66, + "rawHeight": 29, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_..png": { + "ver": "1.0.6", + "uuid": "216f1c34-9ab1-4bf7-9136-1d7bfc736010", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 213, + "trimY": 1071, + "width": 45, + "height": 42, + "rawWidth": 45, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_0.png": { + "ver": "1.0.6", + "uuid": "203beaca-9661-4c1b-99bb-becf7957363a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 1, + "trimY": 596, + "width": 97, + "height": 104, + "rawWidth": 97, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_1.png": { + "ver": "1.0.6", + "uuid": "9026aa5a-1be4-4f61-8d50-e44e1df4c071", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 100, + "trimY": 92, + "width": 57, + "height": 104, + "rawWidth": 97, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_2.png": { + "ver": "1.0.6", + "uuid": "716cc039-f633-4417-b4f9-67da0d6f5fec", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 808, + "width": 85, + "height": 104, + "rawWidth": 97, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_3.png": { + "ver": "1.0.6", + "uuid": "57bd7dec-ac07-4d7e-b7f7-87460aee85cc", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 1, + "trimY": 1018, + "width": 81, + "height": 104, + "rawWidth": 97, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_4.png": { + "ver": "1.0.6", + "uuid": "40211b69-06ef-42b7-aaa8-25e491b09da5", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 702, + "width": 95, + "height": 104, + "rawWidth": 97, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_5.png": { + "ver": "1.0.6", + "uuid": "9f5415c1-d607-4c61-b4c2-1736cdd4fb6c", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 914, + "width": 85, + "height": 102, + "rawWidth": 97, + "rawHeight": 108, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_6.png": { + "ver": "1.0.6", + "uuid": "51f8b607-237c-411f-af14-c6f866e7e38c", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 228, + "width": 98, + "height": 128, + "rawWidth": 98, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_7.png": { + "ver": "1.0.6", + "uuid": "657a131a-53f2-42b1-bc38-4d7273632553", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 358, + "width": 94, + "height": 125, + "rawWidth": 94, + "rawHeight": 125, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_8.png": { + "ver": "1.0.6", + "uuid": "819dac08-fe48-4d0c-911d-00b118f7140e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 92, + "width": 97, + "height": 134, + "rawWidth": 97, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_9.png": { + "ver": "1.0.6", + "uuid": "73949c0b-e669-4649-b17b-fefcbaad4ed7", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 159, + "trimY": 1, + "width": 96, + "height": 129, + "rawWidth": 96, + "rawHeight": 129, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hp_x.png": { + "ver": "1.0.6", + "uuid": "a6aca617-eb9e-444c-959e-c04120e8254e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 485, + "width": 102, + "height": 109, + "rawWidth": 102, + "rawHeight": 109, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_0.png": { + "ver": "1.0.6", + "uuid": "3dc12def-8413-43df-86d4-ef7a83ae31ea", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 101, + "trimY": 277, + "width": 51, + "height": 65, + "rawWidth": 51, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_1.png": { + "ver": "1.0.6", + "uuid": "a65869ec-122b-4c0f-a784-d7966481c44a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 88, + "trimY": 808, + "width": 27, + "height": 64, + "rawWidth": 27, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_2.png": { + "ver": "1.0.6", + "uuid": "e6f8ce70-a963-4152-9fac-334128bc1eba", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 159, + "trimY": 186, + "width": 51, + "height": 65, + "rawWidth": 51, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_3.png": { + "ver": "1.0.6", + "uuid": "1ea68b47-e0bf-43b0-8334-4611e21be374", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 105, + "trimY": 478, + "width": 45, + "height": 65, + "rawWidth": 45, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_4.png": { + "ver": "1.0.6", + "uuid": "b87fb2bd-9fba-4804-80ea-d2bea6921273", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 97, + "trimY": 411, + "width": 52, + "height": 65, + "rawWidth": 52, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_5.png": { + "ver": "1.0.6", + "uuid": "fca32751-bd3a-46fb-8ab7-e839748ae30b", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 152, + "trimY": 477, + "width": 49, + "height": 65, + "rawWidth": 49, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_6.png": { + "ver": "1.0.6", + "uuid": "7fa7c02b-be24-40f2-a122-14c3fc0040ef", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 100, + "trimY": 606, + "width": 49, + "height": 65, + "rawWidth": 49, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_7.png": { + "ver": "1.0.6", + "uuid": "2172963e-6052-4735-88cc-563688c7be12", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 98, + "trimY": 718, + "width": 46, + "height": 64, + "rawWidth": 46, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_8.png": { + "ver": "1.0.6", + "uuid": "472313fd-c6e9-47db-a993-66a0b2d5be4a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 101, + "trimY": 344, + "width": 51, + "height": 65, + "rawWidth": 51, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "ice_9.png": { + "ver": "1.0.6", + "uuid": "cb6aff57-a633-4151-a025-39ef62ccedd0", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 154, + "trimY": 544, + "width": 49, + "height": 65, + "rawWidth": 49, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_0.png": { + "ver": "1.0.6", + "uuid": "4c9cf9f3-575f-4c7d-911c-401a985db86d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 94, + "trimY": 1519, + "width": 42, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_1.png": { + "ver": "1.0.6", + "uuid": "d4315808-edb8-4246-b8c6-e0ab7177ed19", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 88, + "trimY": 1004, + "width": 30, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_2.png": { + "ver": "1.0.6", + "uuid": "6c50e399-9112-433c-9d9e-550aabb198e1", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 138, + "trimY": 1635, + "width": 40, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_3.png": { + "ver": "1.0.6", + "uuid": "1508d376-9925-42c4-8ae5-7a9cded3e40b", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 128, + "trimY": 1036, + "width": 38, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_4.png": { + "ver": "1.0.6", + "uuid": "0fdfe9f0-c116-49d2-bd6e-eab7ad33fa48", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 94, + "trimY": 1575, + "width": 42, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_5.png": { + "ver": "1.0.6", + "uuid": "b560848e-7d71-4e7a-b9ea-899e21188021", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 148, + "trimY": 1356, + "width": 40, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_6.png": { + "ver": "1.0.6", + "uuid": "45fc7e5a-7b80-4a12-a3bb-096431c70f03", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 149, + "trimY": 1412, + "width": 40, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_7.png": { + "ver": "1.0.6", + "uuid": "52b59341-eb34-42db-8878-6d2477e38744", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 94, + "trimY": 1631, + "width": 42, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_8.png": { + "ver": "1.0.6", + "uuid": "028c9dd2-7f6f-4b7d-b2f0-dd30b4b82e1d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 84, + "trimY": 1036, + "width": 42, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "level_9.png": { + "ver": "1.0.6", + "uuid": "8bafce7a-1a22-40fe-994e-a9eae23c5efa", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 150, + "trimY": 1124, + "width": 42, + "height": 54, + "rawWidth": 42, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_0.png": { + "ver": "1.0.6", + "uuid": "1a12d721-df35-43d4-99a9-c43b8afcad40", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 98, + "trimY": 784, + "width": 22, + "height": 32, + "rawWidth": 22, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_1.png": { + "ver": "1.0.6", + "uuid": "4e01f77e-81ed-4dc3-a7ab-259c444bae4d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 96, + "trimY": 1847, + "width": 17, + "height": 32, + "rawWidth": 17, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_2.png": { + "ver": "1.0.6", + "uuid": "1ebad263-9a15-41b2-8036-ae85dd6829b6", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 166, + "trimY": 785, + "width": 21, + "height": 31, + "rawWidth": 21, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_3.png": { + "ver": "1.0.6", + "uuid": "38417192-cb81-4587-8709-7e7c85155746", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 132, + "trimY": 785, + "width": 21, + "height": 32, + "rawWidth": 21, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_4.png": { + "ver": "1.0.6", + "uuid": "fdf291e2-8e11-4136-8e8d-4427a8e14e48", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 122, + "trimY": 2013, + "width": 23, + "height": 32, + "rawWidth": 23, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_5.png": { + "ver": "1.0.6", + "uuid": "258e0ea9-88e6-4682-b224-5ff026c50fbc", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 118, + "trimY": 1951, + "width": 21, + "height": 32, + "rawWidth": 21, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_6.png": { + "ver": "1.0.6", + "uuid": "5896f6d0-930d-4020-b36a-a16adb1a7882", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 157, + "trimY": 1967, + "width": 22, + "height": 32, + "rawWidth": 22, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_7.png": { + "ver": "1.0.6", + "uuid": "441e695e-43a2-43e8-a839-446f3547fb82", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 181, + "trimY": 1952, + "width": 22, + "height": 32, + "rawWidth": 22, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_8.png": { + "ver": "1.0.6", + "uuid": "767d79d8-f0ed-4339-915e-15804014f2e5", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 205, + "trimY": 1967, + "width": 21, + "height": 32, + "rawWidth": 21, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lock_9.png": { + "ver": "1.0.6", + "uuid": "2e14686a-5d29-4889-927c-c049d96dc35d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 181, + "trimY": 1986, + "width": 22, + "height": 32, + "rawWidth": 22, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_0.png": { + "ver": "1.0.6", + "uuid": "a5271624-c7f9-44c1-84ac-d09d343073fa", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1810, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_1.png": { + "ver": "1.0.6", + "uuid": "22bb8f83-6177-455d-a211-084abdeef7a0", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 190, + "trimY": 1283, + "width": 26, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_2.png": { + "ver": "1.0.6", + "uuid": "82d291e7-9a0a-4d7e-8161-a59ef2f5b5c3", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 69, + "trimY": 1868, + "width": 38, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_3.png": { + "ver": "1.0.6", + "uuid": "c33af047-7ee9-4ce1-b046-ecfda565e25d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 221, + "trimY": 1168, + "width": 34, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_4.png": { + "ver": "1.0.6", + "uuid": "36a13da7-2c48-4482-9887-777dce4aeb96", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 179, + "trimY": 1235, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_5.png": { + "ver": "1.0.6", + "uuid": "074e1409-5a97-4e96-87b1-9ce25110e3af", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 82, + "trimY": 1974, + "width": 38, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_6.png": { + "ver": "1.0.6", + "uuid": "9e6e4fec-807b-441a-90c6-c7c5038e4ad1", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 217, + "trimY": 1374, + "width": 38, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_7.png": { + "ver": "1.0.6", + "uuid": "5833de6e-dcaf-4b12-9d19-5ee924492a51", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 177, + "trimY": 1810, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_8.png": { + "ver": "1.0.6", + "uuid": "e6bebd7a-a17a-4286-8c25-fed037b99b61", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 203, + "trimY": 1514, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_9.png": { + "ver": "1.0.6", + "uuid": "ef5df143-ca56-43b6-a9ac-28dc83d3b196", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 213, + "trimY": 1610, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul0.png": { + "ver": "1.0.6", + "uuid": "7ddb72a4-8e2c-4ade-bdef-5ffdedb4a265", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 96, + "trimY": 1808, + "width": 33, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul1.png": { + "ver": "1.0.6", + "uuid": "13ddd564-96a4-4f41-ac93-176a65aafaa6", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 0, + "trimX": 205, + "trimY": 1864, + "width": 25, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul10.png": { + "ver": "1.0.6", + "uuid": "d7c12d61-f696-4de5-b62b-449dbf8788f0", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 154, + "trimY": 273, + "width": 58, + "height": 64, + "rawWidth": 58, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul2.png": { + "ver": "1.0.6", + "uuid": "70efdd8e-f02f-4751-bc7f-e5101ca94c8a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1852, + "width": 33, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul3.png": { + "ver": "1.0.6", + "uuid": "9a17964d-d911-4b67-8107-7c55470ed386", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 0, + "trimX": 69, + "trimY": 1914, + "width": 31, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul4.png": { + "ver": "1.0.6", + "uuid": "a7b3a8dc-4945-4c2f-a957-fcf819fd71ac", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 166, + "trimY": 1856, + "width": 33, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul5.png": { + "ver": "1.0.6", + "uuid": "59cb433c-8cb3-4935-a236-e453ab3f712d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 211, + "trimY": 1891, + "width": 31, + "height": 35, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul6.png": { + "ver": "1.0.6", + "uuid": "a1a3b18f-6d55-4006-81d4-71c3eebb4321", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1916, + "width": 33, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul7.png": { + "ver": "1.0.6", + "uuid": "27218a8d-6fb9-4bce-b6bc-c5c50e0c10bb", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 170, + "trimY": 1917, + "width": 33, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul8.png": { + "ver": "1.0.6", + "uuid": "d79188f8-7935-4a7c-b6cf-dba62fbb5289", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 209, + "trimY": 1928, + "width": 33, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mul9.png": { + "ver": "1.0.6", + "uuid": "4b5d6eeb-70a8-4da1-8b37-bb4ec4d0bf70", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 122, + "trimY": 1974, + "width": 33, + "height": 37, + "rawWidth": 33, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo0.png": { + "ver": "1.0.6", + "uuid": "6d2ab521-216b-4930-9c1a-58709903f2fd", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1219, + "width": 55, + "height": 93, + "rawWidth": 55, + "rawHeight": 93, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo1.png": { + "ver": "1.0.6", + "uuid": "bd32bddb-8d8c-4bce-894a-aef7171d5c05", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1880, + "width": 35, + "height": 97, + "rawWidth": 35, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo10.png": { + "ver": "1.0.6", + "uuid": "44e66484-2774-4deb-a017-4c88eaf6341e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 101, + "trimY": 198, + "width": 50, + "height": 77, + "rawWidth": 50, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo2.png": { + "ver": "1.0.6", + "uuid": "f84d3125-a5d1-48fd-ad80-32a5d342c465", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 159, + "trimY": 132, + "width": 52, + "height": 96, + "rawWidth": 52, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo3.png": { + "ver": "1.0.6", + "uuid": "1d95b241-ab66-4382-a413-ae2ce529c699", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1501, + "width": 49, + "height": 95, + "rawWidth": 49, + "rawHeight": 95, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo4.png": { + "ver": "1.0.6", + "uuid": "a0763fb2-75db-4904-a11c-6f67c44fcd97", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1124, + "width": 59, + "height": 93, + "rawWidth": 59, + "rawHeight": 93, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo5.png": { + "ver": "1.0.6", + "uuid": "26c1749a-26c8-4a60-b4bc-82fd14bc6ca9", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1598, + "width": 51, + "height": 93, + "rawWidth": 51, + "rawHeight": 93, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo6.png": { + "ver": "1.0.6", + "uuid": "d5810d7c-6d75-441e-82da-8013da3d170e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1314, + "width": 56, + "height": 92, + "rawWidth": 56, + "rawHeight": 92, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo7.png": { + "ver": "1.0.6", + "uuid": "260ad127-1183-41ef-a318-1965c317f91e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1693, + "width": 50, + "height": 92, + "rawWidth": 50, + "rawHeight": 92, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo8.png": { + "ver": "1.0.6", + "uuid": "69731048-81f3-438e-84c6-54feea6d7363", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1408, + "width": 55, + "height": 91, + "rawWidth": 55, + "rawHeight": 91, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mulo9.png": { + "ver": "1.0.6", + "uuid": "3999dedf-c60e-4375-94c1-c6ba70583d63", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1787, + "width": 51, + "height": 91, + "rawWidth": 51, + "rawHeight": 91, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_0.png": { + "ver": "1.0.6", + "uuid": "02d553df-1ae3-43bb-bc69-83318300ffb9", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 168, + "trimY": 1519, + "width": 33, + "height": 48, + "rawWidth": 33, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_1.png": { + "ver": "1.0.6", + "uuid": "c1ab5d3c-ab1b-4378-9665-5f7e66c9cede", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 183, + "trimY": 895, + "width": 27, + "height": 47, + "rawWidth": 27, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_2.png": { + "ver": "1.0.6", + "uuid": "5fbadca8-607d-431e-8dcf-c03968d4ff15", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 180, + "trimY": 1619, + "width": 31, + "height": 47, + "rawWidth": 31, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_3.png": { + "ver": "1.0.6", + "uuid": "88c8c1ac-e6e7-46a2-9383-85036d1fae0e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 84, + "trimY": 1092, + "width": 30, + "height": 47, + "rawWidth": 30, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_4.png": { + "ver": "1.0.6", + "uuid": "ed4e3289-95aa-4940-a517-67f9fd931afe", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 176, + "trimY": 1569, + "width": 34, + "height": 48, + "rawWidth": 34, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_5.png": { + "ver": "1.0.6", + "uuid": "563c9081-5afa-483c-97f0-ace4fcd1e8ec", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 133, + "trimY": 1092, + "width": 30, + "height": 47, + "rawWidth": 30, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_6.png": { + "ver": "1.0.6", + "uuid": "81052fbf-a8f3-45f8-bc0f-d2688d6565f1", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 48, + "trimY": 1976, + "width": 32, + "height": 47, + "rawWidth": 32, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_7.png": { + "ver": "1.0.6", + "uuid": "6f9fad22-7dd8-455e-8b03-cc150fe12d7d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 153, + "trimY": 1468, + "width": 32, + "height": 49, + "rawWidth": 32, + "rawHeight": 49, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_8.png": { + "ver": "1.0.6", + "uuid": "b8e22375-daee-4ed2-912b-b483735df685", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 183, + "trimY": 944, + "width": 31, + "height": 48, + "rawWidth": 31, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "rank_9.png": { + "ver": "1.0.6", + "uuid": "7837bd39-c732-4f78-8d66-0b148588efb0", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 168, + "trimY": 1036, + "width": 32, + "height": 48, + "rawWidth": 32, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result,.png": { + "ver": "1.0.6", + "uuid": "70f3ac76-dc6b-41fa-9ef6-be110841156a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 187, + "trimY": 1488, + "width": 21, + "height": 24, + "rawWidth": 21, + "rawHeight": 24, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_..png": { + "ver": "1.0.6", + "uuid": "c8446482-2a18-4251-b5ea-d4be7414150c", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 157, + "trimY": 2001, + "width": 22, + "height": 18, + "rawWidth": 22, + "rawHeight": 18, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_0.png": { + "ver": "1.0.6", + "uuid": "726eeac3-19a8-4937-835f-76cda762f3f0", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 58, + "trimY": 1240, + "width": 45, + "height": 57, + "rawWidth": 45, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_1.png": { + "ver": "1.0.6", + "uuid": "1059094e-6b24-437e-be12-0491319d6171", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 105, + "trimY": 1240, + "width": 30, + "height": 59, + "rawWidth": 30, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_2.png": { + "ver": "1.0.6", + "uuid": "3514385f-5c8c-4d6a-a049-162bd75f97f8", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 59, + "trimY": 1299, + "width": 43, + "height": 58, + "rawWidth": 43, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_3.png": { + "ver": "1.0.6", + "uuid": "c676176b-18c6-4b6e-ab24-f0d13125de65", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 52, + "trimY": 1516, + "width": 40, + "height": 58, + "rawWidth": 40, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_4.png": { + "ver": "1.0.6", + "uuid": "2b1e1018-f9ee-40ee-b26c-2b574bf00961", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 205, + "trimY": 553, + "width": 48, + "height": 57, + "rawWidth": 48, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_5.png": { + "ver": "1.0.6", + "uuid": "edfa4e39-8e12-47f3-ab71-75e139d7c0e5", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 213, + "trimY": 433, + "width": 42, + "height": 57, + "rawWidth": 42, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_6.png": { + "ver": "1.0.6", + "uuid": "02056d80-0cdb-45ea-b38e-e1395f6ef01f", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 199, + "trimY": 742, + "width": 45, + "height": 56, + "rawWidth": 45, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_7.png": { + "ver": "1.0.6", + "uuid": "2c1f7a9e-e103-4260-9967-e3c0610c3762", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 214, + "trimY": 273, + "width": 41, + "height": 56, + "rawWidth": 41, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_8.png": { + "ver": "1.0.6", + "uuid": "274fe752-61ae-417a-849e-8526bf8aa32c", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 59, + "trimY": 1359, + "width": 45, + "height": 56, + "rawWidth": 45, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_9.png": { + "ver": "1.0.6", + "uuid": "82dc8a04-4dee-493b-ad96-31310a7261c8", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 104, + "trimY": 1301, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "result_x.png": { + "ver": "1.0.6", + "uuid": "585fa1b5-8fc0-4997-aee2-5e6fa51b934e", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 214, + "trimY": 331, + "width": 41, + "height": 47, + "rawWidth": 41, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_0.png": { + "ver": "1.0.6", + "uuid": "a7cdc23d-abb6-4a7e-a9a7-6c1a46eb5294", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 1, + "trimX": 146, + "trimY": 736, + "width": 47, + "height": 51, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_09.png": { + "ver": "1.0.6", + "uuid": "6799078c-3754-46b2-86c7-b220f6d889b0", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 117, + "trimY": 808, + "width": 45, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_1.png": { + "ver": "1.0.6", + "uuid": "bccf63ba-b29f-4020-b862-3480eb2cfcdf", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 164, + "trimY": 1180, + "width": 25, + "height": 53, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_10.png": { + "ver": "1.0.6", + "uuid": "906df537-9686-4ce0-952f-0671f9a48306", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 205, + "trimY": 1990, + "width": 21, + "height": 25, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_2.png": { + "ver": "1.0.6", + "uuid": "c6a8ba23-1b36-4812-89e6-cd3ea75f34bd", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 58, + "trimY": 1417, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_3.png": { + "ver": "1.0.6", + "uuid": "1fba440d-aa3c-4fab-90d4-3457fbdc3db6", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 151, + "trimY": 611, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_4.png": { + "ver": "1.0.6", + "uuid": "890ff2d5-cb4a-4415-93ce-4613c416c197", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 200, + "trimY": 612, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_5.png": { + "ver": "1.0.6", + "uuid": "45562d2f-a2a7-405c-8f51-329095530a64", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 88, + "trimY": 874, + "width": 45, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_6.png": { + "ver": "1.0.6", + "uuid": "6d4c8955-52e9-4427-9473-b5e0e172f8d8", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 200, + "trimY": 677, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_7.png": { + "ver": "1.0.6", + "uuid": "022986fa-6332-4366-9068-4de5704c07b3", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 135, + "trimY": 873, + "width": 45, + "height": 61, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "scoin_8.png": { + "ver": "1.0.6", + "uuid": "a7e479c1-38b2-40ca-8cc5-dc833669ba16", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 88, + "trimY": 939, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_0.png": { + "ver": "1.0.6", + "uuid": "7dbec799-7e71-41ae-8da3-d7fdd109cb85", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 131, + "trimY": 1810, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_1.png": { + "ver": "1.0.6", + "uuid": "114b450a-214f-4cb7-97fd-1bd8e08563ff", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 190, + "trimY": 1283, + "width": 26, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_2.png": { + "ver": "1.0.6", + "uuid": "b758e7f5-50b5-49e4-97ae-54918751795d", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 69, + "trimY": 1868, + "width": 38, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_3.png": { + "ver": "1.0.6", + "uuid": "d48b7235-bdf7-4757-a7bf-5275f9603b76", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 221, + "trimY": 1168, + "width": 34, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_4.png": { + "ver": "1.0.6", + "uuid": "f46fd98e-f9a9-4db3-ab06-98ebadb7b4ce", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 179, + "trimY": 1235, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_5.png": { + "ver": "1.0.6", + "uuid": "5b741c25-cd08-4f47-8cfe-86a7b42338b3", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 82, + "trimY": 1974, + "width": 38, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_6.png": { + "ver": "1.0.6", + "uuid": "4e285c01-9447-4aeb-94f5-ae7704d4176b", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 217, + "trimY": 1374, + "width": 38, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_7.png": { + "ver": "1.0.6", + "uuid": "1e34f475-18e5-4b4a-b259-a85cc416f879", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 177, + "trimY": 1810, + "width": 40, + "height": 44, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_8.png": { + "ver": "1.0.6", + "uuid": "5f0399c7-e85b-490a-835a-4750c7698991", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 203, + "trimY": 1514, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_9.png": { + "ver": "1.0.6", + "uuid": "5ed9fb49-e964-4a3b-90b9-38917f21fee2", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 213, + "trimY": 1610, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tili_x.png": { + "ver": "1.0.6", + "uuid": "c338bce2-4885-458f-b504-08498d005817", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 0, + "trimX": 82, + "trimY": 2020, + "width": 16, + "height": 32, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_0.png": { + "ver": "1.0.6", + "uuid": "1d09fecb-502f-4098-9fcc-98fff2d06541", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 106, + "trimY": 1359, + "width": 40, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_1.png": { + "ver": "1.0.6", + "uuid": "32724ad0-6817-45d2-8d28-49e32309ee58", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 138, + "trimY": 1519, + "width": 28, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_10.png": { + "ver": "1.0.6", + "uuid": "ff947612-64d1-4ad2-add0-b7d8fbd5df4f", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 237, + "trimY": 1118, + "width": 18, + "height": 48, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_2.png": { + "ver": "1.0.6", + "uuid": "b70f31d7-7729-49aa-af3c-ce6f678528bc", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 54, + "trimY": 1576, + "width": 38, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_3.png": { + "ver": "1.0.6", + "uuid": "cea47276-16b9-48ce-87ee-cb85a2b79b11", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 138, + "trimY": 1577, + "width": 36, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_4.png": { + "ver": "1.0.6", + "uuid": "b732b8f1-0410-403a-b176-04c956dbeb21", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 107, + "trimY": 1417, + "width": 40, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_5.png": { + "ver": "1.0.6", + "uuid": "eea2ffb8-378e-4a0b-abd9-f57a0db4cd1f", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 54, + "trimY": 1634, + "width": 38, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_6.png": { + "ver": "1.0.6", + "uuid": "533c2acb-d13e-4a25-bc66-9dbbc2824815", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 1124, + "width": 38, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_7.png": { + "ver": "1.0.6", + "uuid": "500774c4-a143-4b11-bc58-c4348a3488e5", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 122, + "trimY": 1182, + "width": 40, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_8.png": { + "ver": "1.0.6", + "uuid": "c974dbb8-a4e7-4c0b-b8ac-33de600e7096", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 137, + "trimY": 1240, + "width": 40, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "time_9.png": { + "ver": "1.0.6", + "uuid": "8b5538ad-4dbc-4f45-87a8-2bf931ca0c7a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 148, + "trimY": 1298, + "width": 40, + "height": 56, + "rawWidth": 40, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "word_gx.png": { + "ver": "1.0.6", + "uuid": "15ecc92e-aa18-412b-ab38-8e537c898d49", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 156, + "height": 89, + "rawWidth": 156, + "rawHeight": 89, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "x.png": { + "ver": "1.0.6", + "uuid": "c4f3aa5b-740d-4a59-bf36-0d1fc85acc0a", + "importer": "sprite-frame", + "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 205, + "trimY": 2017, + "width": 22, + "height": 22, + "rawWidth": 22, + "rawHeight": 22, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/UI/font/font.png b/assets/UI/font/font.png new file mode 100644 index 0000000..58a2ca7 Binary files /dev/null and b/assets/UI/font/font.png differ diff --git a/assets/UI/font/font.png.meta b/assets/UI/font/font.png.meta new file mode 100644 index 0000000..ab0e205 --- /dev/null +++ b/assets/UI/font/font.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "f8d067a0-98d0-4a97-8159-506946262d4b", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 256, + "height": 2040, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle.meta b/assets/action_bundle.meta new file mode 100644 index 0000000..74076e1 --- /dev/null +++ b/assets/action_bundle.meta @@ -0,0 +1,21 @@ +{ + "ver": "1.1.3", + "uuid": "c8b1861c-701d-45fb-9f64-23d4e49599ed", + "importer": "folder", + "isBundle": true, + "bundleName": "", + "priority": 2, + "compressionType": { + "wechatgame": "subpackage" + }, + "optimizeHotUpdate": { + "wechatgame": false + }, + "inlineSpriteFrames": { + "wechatgame": false + }, + "isRemoteBundle": { + "wechatgame": false + }, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/Avatar.meta b/assets/action_bundle/Avatar.meta new file mode 100644 index 0000000..245d741 --- /dev/null +++ b/assets/action_bundle/Avatar.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "fb9e35fb-e274-47b4-8718-e1326c73f4b7", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/Avatar/avatar.plist b/assets/action_bundle/Avatar/avatar.plist new file mode 100644 index 0000000..2ece37d --- /dev/null +++ b/assets/action_bundle/Avatar/avatar.plist @@ -0,0 +1,401 @@ + + + + + frames + + bg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {646,104} + spriteSourceSize + {646,104} + textureRect + {{1087,1},{646,104}} + textureRotated + + + bg2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {320,99} + spriteSourceSize + {320,99} + textureRect + {{749,167},{320,99}} + textureRotated + + + btn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {476,164} + spriteSourceSize + {476,164} + textureRect + {{609,1},{476,164}} + textureRotated + + + daxiao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {150,150} + spriteSourceSize + {150,150} + textureRect + {{1,863},{150,150}} + textureRotated + + + icon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {150,150} + spriteSourceSize + {150,150} + textureRect + {{153,863},{150,150}} + textureRotated + + + icon_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {150,150} + spriteSourceSize + {150,150} + textureRect + {{305,863},{150,150}} + textureRotated + + + icon_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {150,150} + spriteSourceSize + {150,150} + textureRect + {{457,863},{150,150}} + textureRotated + + + icon_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {150,150} + spriteSourceSize + {150,150} + textureRect + {{665,849},{150,150}} + textureRotated + + + icon_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {150,150} + spriteSourceSize + {150,150} + textureRect + {{817,849},{150,150}} + textureRotated + + + kuang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {860,556} + spriteSourceSize + {860,556} + textureRect + {{1,1},{860,556}} + textureRotated + + + kuang1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {176,62} + spriteSourceSize + {176,62} + textureRect + {{1129,649},{176,62}} + textureRotated + + + kuang2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {168,54} + spriteSourceSize + {168,54} + textureRect + {{609,849},{168,54}} + textureRotated + + + kuang_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,198} + spriteSourceSize + {188,198} + textureRect + {{559,649},{188,198}} + textureRotated + + + kuang_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,198} + spriteSourceSize + {188,198} + textureRect + {{559,167},{188,198}} + textureRotated + + + kuang_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,198} + spriteSourceSize + {188,198} + textureRect + {{749,649},{188,198}} + textureRotated + + + kuang_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,198} + spriteSourceSize + {188,198} + textureRect + {{939,649},{188,198}} + textureRotated + + + kuang_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,198} + spriteSourceSize + {188,198} + textureRect + {{627,367},{188,198}} + textureRotated + + + kuang_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,198} + spriteSourceSize + {188,198} + textureRect + {{817,268},{188,198}} + textureRotated + + + selcet2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {66,66} + spriteSourceSize + {66,66} + textureRect + {{969,949},{66,66}} + textureRotated + + + select.png + + aliases + + spriteOffset + {0,0} + spriteSize + {176,176} + spriteSourceSize + {176,176} + textureRect + {{817,458},{176,176}} + textureRotated + + + title.png + + aliases + + spriteOffset + {0,0} + spriteSize + {261,66} + spriteSourceSize + {261,66} + textureRect + {{559,367},{261,66}} + textureRotated + + + tou1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,62} + spriteSourceSize + {120,62} + textureRect + {{1129,827},{120,62}} + textureRotated + + + tou2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {112,54} + spriteSourceSize + {112,54} + textureRect + {{969,849},{112,54}} + textureRotated + + + update.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,62} + spriteSourceSize + {62,62} + textureRect + {{1037,949},{62,62}} + textureRotated + + + useing.png + + aliases + + spriteOffset + {0,0} + spriteSize + {172,54} + spriteSourceSize + {172,54} + textureRect + {{627,567},{172,54}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + avatar.png + size + {1192,1018} + smartupdate + $TexturePacker:SmartUpdate:e707064ee467ecbe8a4e3aa0bf8e39d4:17563b109e11b8a4c81f7b90497a37f5:db3594e7e80887c479b4f04a5ee0989e$ + textureFileName + avatar.png + + + diff --git a/assets/action_bundle/Avatar/avatar.plist.meta b/assets/action_bundle/Avatar/avatar.plist.meta new file mode 100644 index 0000000..0b8b719 --- /dev/null +++ b/assets/action_bundle/Avatar/avatar.plist.meta @@ -0,0 +1,588 @@ +{ + "ver": "1.2.6", + "uuid": "fd85df88-648f-4407-bab2-da4f15478fb9", + "importer": "asset", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "size": { + "width": 1192, + "height": 1018 + }, + "type": "Texture Packer", + "subMetas": { + "bg.png": { + "ver": "1.0.6", + "uuid": "fe06f4dd-7386-47e8-90ac-e4068ee1beb3", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1087, + "trimY": 1, + "width": 646, + "height": 104, + "rawWidth": 646, + "rawHeight": 104, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "bg2.png": { + "ver": "1.0.6", + "uuid": "0b6d0846-ff52-46d7-8b2c-6c8fec478422", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 749, + "trimY": 167, + "width": 320, + "height": 99, + "rawWidth": 320, + "rawHeight": 99, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn.png": { + "ver": "1.0.6", + "uuid": "5031805f-72fc-44a3-9616-1ebdc8ef6440", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 609, + "trimY": 1, + "width": 476, + "height": 164, + "rawWidth": 476, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "daxiao.png": { + "ver": "1.0.6", + "uuid": "dec791d6-e1b8-4af0-9978-7b3f3af77d2f", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 863, + "width": 150, + "height": 150, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "icon.png": { + "ver": "1.0.6", + "uuid": "f9022ff6-96af-4763-abe4-c047e8ef4a41", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 153, + "trimY": 863, + "width": 150, + "height": 150, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "icon_0.png": { + "ver": "1.0.6", + "uuid": "ba781d2e-4d85-401b-a392-72237c02b0e5", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 305, + "trimY": 863, + "width": 150, + "height": 150, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "icon_1.png": { + "ver": "1.0.6", + "uuid": "a10b3eca-6801-4c7d-9102-b2a50ed87c44", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 457, + "trimY": 863, + "width": 150, + "height": 150, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "icon_2.png": { + "ver": "1.0.6", + "uuid": "cc395abb-94dd-443a-9d20-72d09c605744", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 665, + "trimY": 849, + "width": 150, + "height": 150, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "icon_3.png": { + "ver": "1.0.6", + "uuid": "475155fc-1a6a-411c-b378-60475e192018", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 849, + "width": 150, + "height": 150, + "rawWidth": 150, + "rawHeight": 150, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang.png": { + "ver": "1.0.6", + "uuid": "0eb0ed79-0553-4a3e-9d4d-2274af436f4f", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 860, + "height": 556, + "rawWidth": 860, + "rawHeight": 556, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang1.png": { + "ver": "1.0.6", + "uuid": "8955cb71-e69c-4dd2-b95f-0e2d56273a24", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1129, + "trimY": 649, + "width": 176, + "height": 62, + "rawWidth": 176, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang2.png": { + "ver": "1.0.6", + "uuid": "08f49977-5da0-419f-9a0f-a36bcf307944", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 609, + "trimY": 849, + "width": 168, + "height": 54, + "rawWidth": 168, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang_1.png": { + "ver": "1.0.6", + "uuid": "c2b141f2-de71-4481-b9ee-440c893c28b3", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 559, + "trimY": 649, + "width": 188, + "height": 198, + "rawWidth": 188, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang_2.png": { + "ver": "1.0.6", + "uuid": "e47a43c7-9516-4eb2-bdf7-945a3c832bcd", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 559, + "trimY": 167, + "width": 188, + "height": 198, + "rawWidth": 188, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang_3.png": { + "ver": "1.0.6", + "uuid": "806030dc-9927-4a12-9cf8-f820e07075c7", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 749, + "trimY": 649, + "width": 188, + "height": 198, + "rawWidth": 188, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang_4.png": { + "ver": "1.0.6", + "uuid": "b88e8157-48ca-442a-8d86-94614138292f", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 939, + "trimY": 649, + "width": 188, + "height": 198, + "rawWidth": 188, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang_5.png": { + "ver": "1.0.6", + "uuid": "07e0a54f-1d33-4126-bf71-10765a98f87d", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 627, + "trimY": 367, + "width": 188, + "height": 198, + "rawWidth": 188, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "kuang_6.png": { + "ver": "1.0.6", + "uuid": "a63b4ac3-7374-42a7-99ab-3ea2417b2285", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 268, + "width": 188, + "height": 198, + "rawWidth": 188, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "selcet2.png": { + "ver": "1.0.6", + "uuid": "7453479c-fcfb-4019-b1a9-c81ca044b911", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 969, + "trimY": 949, + "width": 66, + "height": 66, + "rawWidth": 66, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "select.png": { + "ver": "1.0.6", + "uuid": "949ab4be-d9b5-4dda-a22c-26b8356d1324", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 458, + "width": 176, + "height": 176, + "rawWidth": 176, + "rawHeight": 176, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title.png": { + "ver": "1.0.6", + "uuid": "c186e62d-c82b-490a-a6c4-c2dbdb2b7f74", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 559, + "trimY": 367, + "width": 261, + "height": 66, + "rawWidth": 261, + "rawHeight": 66, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tou1.png": { + "ver": "1.0.6", + "uuid": "a8d2e566-a68d-4a93-9888-f807ac211446", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1129, + "trimY": 827, + "width": 120, + "height": 62, + "rawWidth": 120, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tou2.png": { + "ver": "1.0.6", + "uuid": "e931c133-a5da-4de9-a97c-825350c515f7", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 969, + "trimY": 849, + "width": 112, + "height": 54, + "rawWidth": 112, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "update.png": { + "ver": "1.0.6", + "uuid": "24dfd852-5bc5-4582-9483-f1ba90dae78d", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1037, + "trimY": 949, + "width": 62, + "height": 62, + "rawWidth": 62, + "rawHeight": 62, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "useing.png": { + "ver": "1.0.6", + "uuid": "be0be04e-415d-4c6a-9c3b-5b3337324f24", + "importer": "sprite-frame", + "rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 627, + "trimY": 567, + "width": 172, + "height": 54, + "rawWidth": 172, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/Avatar/avatar.png b/assets/action_bundle/Avatar/avatar.png new file mode 100644 index 0000000..ae3915a Binary files /dev/null and b/assets/action_bundle/Avatar/avatar.png differ diff --git a/assets/action_bundle/Avatar/avatar.png.meta b/assets/action_bundle/Avatar/avatar.png.meta new file mode 100644 index 0000000..3ff3017 --- /dev/null +++ b/assets/action_bundle/Avatar/avatar.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1192, + "height": 1018, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/Avatar/头像选择界面01.png b/assets/action_bundle/Avatar/头像选择界面01.png new file mode 100644 index 0000000..ecb8166 Binary files /dev/null and b/assets/action_bundle/Avatar/头像选择界面01.png differ diff --git a/assets/action_bundle/Avatar/头像选择界面01.png.meta b/assets/action_bundle/Avatar/头像选择界面01.png.meta new file mode 100644 index 0000000..28e197a --- /dev/null +++ b/assets/action_bundle/Avatar/头像选择界面01.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "127eb9fb-a29b-48e0-bb53-a18dd55782df", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "头像选择界面01": { + "ver": "1.0.6", + "uuid": "3ddd9f45-9bd5-4203-b451-05fe14bfa7f8", + "importer": "sprite-frame", + "rawTextureUuid": "127eb9fb-a29b-48e0-bb53-a18dd55782df", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img.meta b/assets/action_bundle/img.meta new file mode 100644 index 0000000..91ef911 --- /dev/null +++ b/assets/action_bundle/img.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "77a78fc2-5176-4b7b-b084-257acb692904", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/img/15.png b/assets/action_bundle/img/15.png new file mode 100644 index 0000000..3fd12f9 Binary files /dev/null and b/assets/action_bundle/img/15.png differ diff --git a/assets/action_bundle/img/15.png.meta b/assets/action_bundle/img/15.png.meta new file mode 100644 index 0000000..4af896a --- /dev/null +++ b/assets/action_bundle/img/15.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "fb90ecf5-3dc9-47b1-a158-e2cd35cd91a4", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 162, + "height": 38, + "platformSettings": {}, + "subMetas": { + "15": { + "ver": "1.0.6", + "uuid": "1309d8bc-0517-4f6a-a961-b14a72288062", + "importer": "sprite-frame", + "rawTextureUuid": "fb90ecf5-3dc9-47b1-a158-e2cd35cd91a4", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 162, + "height": 38, + "rawWidth": 162, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/DailyQuests.plist b/assets/action_bundle/img/DailyQuests.plist new file mode 100644 index 0000000..b3b6b1a --- /dev/null +++ b/assets/action_bundle/img/DailyQuests.plist @@ -0,0 +1,371 @@ + + + + + frames + + 15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {162,38} + spriteSourceSize + {162,38} + textureRect + {{1,1476},{162,38}} + textureRotated + + + allGet.png + + aliases + + spriteOffset + {0,0} + spriteSize + {516,164} + spriteSourceSize + {516,164} + textureRect + {{1,1196},{516,164}} + textureRotated + + + bgKuang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {879,876} + spriteSourceSize + {879,876} + textureRect + {{1,1},{879,876}} + textureRotated + + + bgLittle.png + + aliases + + spriteOffset + {0,0} + spriteSize + {834,277} + spriteSourceSize + {834,277} + textureRect + {{1,879},{834,277}} + textureRotated + + + dailyQuests1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {106,106} + spriteSourceSize + {106,106} + textureRect + {{624,1377},{106,106}} + textureRotated + + + dailyQuests2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {106,106} + spriteSourceSize + {106,106} + textureRect + {{732,1377},{106,106}} + textureRotated + + + dailyQuests3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {106,106} + spriteSourceSize + {106,106} + textureRect + {{837,1082},{106,106}} + textureRotated + + + dailyQuests4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {106,106} + spriteSourceSize + {106,106} + textureRect + {{815,1190},{106,106}} + textureRotated + + + dailyQuests5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {106,106} + spriteSourceSize + {106,106} + textureRect + {{840,1298},{106,106}} + textureRotated + + + dayTitle.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,65} + spriteSourceSize + {258,65} + textureRect + {{519,1310},{258,65}} + textureRotated + + + fuhao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {31,45} + spriteSourceSize + {31,45} + textureRect + {{882,771},{31,45}} + textureRotated + + + getBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {294,112} + spriteSourceSize + {294,112} + textureRect + {{1,1362},{294,112}} + textureRotated + + + icon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {80,37} + spriteSourceSize + {80,37} + textureRect + {{165,1476},{80,37}} + textureRotated + + + jindut.png + + aliases + + spriteOffset + {0,0} + spriteSize + {768,36} + spriteSourceSize + {768,36} + textureRect + {{882,1},{768,36}} + textureRotated + + + jindut01.png + + aliases + + spriteOffset + {0,0} + spriteSize + {768,36} + spriteSourceSize + {768,36} + textureRect + {{1,1158},{768,36}} + textureRotated + + + jumpBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {294,112} + spriteSourceSize + {294,112} + textureRect + {{519,1196},{294,112}} + textureRotated + + + openDay.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,174} + spriteSourceSize + {154,174} + textureRect + {{297,1362},{154,174}} + textureRotated + + + title1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {186,44} + spriteSourceSize + {186,44} + textureRect + {{920,571},{186,44}} + textureRotated + + + title2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {379,46} + spriteSourceSize + {379,46} + textureRect + {{920,1},{379,46}} + textureRotated + + + title3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {184,44} + spriteSourceSize + {184,44} + textureRect + {{877,879},{184,44}} + textureRotated + + + title4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {187,45} + spriteSourceSize + {187,45} + textureRect + {{920,382},{187,45}} + textureRotated + + + updateTitle.png + + aliases + + spriteOffset + {0,0} + spriteSize + {201,38} + spriteSourceSize + {201,38} + textureRect + {{837,879},{201,38}} + textureRotated + + + xiaoren.png + + aliases + + spriteOffset + {0,0} + spriteSize + {131,149} + spriteSourceSize + {131,149} + textureRect + {{473,1377},{131,149}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + DailyQuests.png + size + {967,1517} + smartupdate + $TexturePacker:SmartUpdate:b6d038cedabcb2d51dcc4bdca1eddf43:3aee5dcbe124d22516ae6ca7458e202b:e8e9bbf140e919199f05df27e9dd8979$ + textureFileName + DailyQuests.png + + + diff --git a/assets/action_bundle/img/DailyQuests.plist.meta b/assets/action_bundle/img/DailyQuests.plist.meta new file mode 100644 index 0000000..0f2a3f2 --- /dev/null +++ b/assets/action_bundle/img/DailyQuests.plist.meta @@ -0,0 +1,542 @@ +{ + "ver": "1.2.6", + "uuid": "2e466cd1-95aa-4e3c-bb69-759c50404dd1", + "importer": "asset", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "size": { + "width": 967, + "height": 1517 + }, + "type": "Texture Packer", + "subMetas": { + "15.png": { + "ver": "1.0.6", + "uuid": "11ecd330-0759-43eb-88a0-b0accc4ae798", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1476, + "width": 162, + "height": 38, + "rawWidth": 162, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "allGet.png": { + "ver": "1.0.6", + "uuid": "e58fcacb-1189-4c5c-a0c0-4d2ef8fe52ad", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1196, + "width": 516, + "height": 164, + "rawWidth": 516, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "bgKuang.png": { + "ver": "1.0.6", + "uuid": "35bf5f97-fef6-42d8-8094-2887a2c3b033", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 879, + "height": 876, + "rawWidth": 879, + "rawHeight": 876, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "bgLittle.png": { + "ver": "1.0.6", + "uuid": "9443a1fd-81dd-4cc3-8904-c466d142aada", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 879, + "width": 834, + "height": 277, + "rawWidth": 834, + "rawHeight": 277, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dailyQuests1.png": { + "ver": "1.0.6", + "uuid": "ee22ad0e-4e0c-4e92-8fb2-ba79bfecc598", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 624, + "trimY": 1377, + "width": 106, + "height": 106, + "rawWidth": 106, + "rawHeight": 106, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dailyQuests2.png": { + "ver": "1.0.6", + "uuid": "48dbc128-13f7-471a-a97f-da8a0de98e2e", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 732, + "trimY": 1377, + "width": 106, + "height": 106, + "rawWidth": 106, + "rawHeight": 106, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dailyQuests3.png": { + "ver": "1.0.6", + "uuid": "a28d2aa6-472a-4371-a9a0-b5489ef0eada", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 837, + "trimY": 1082, + "width": 106, + "height": 106, + "rawWidth": 106, + "rawHeight": 106, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dailyQuests4.png": { + "ver": "1.0.6", + "uuid": "a01b7b8b-d12f-4a2c-ab1d-684c5618120b", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 815, + "trimY": 1190, + "width": 106, + "height": 106, + "rawWidth": 106, + "rawHeight": 106, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dailyQuests5.png": { + "ver": "1.0.6", + "uuid": "f233562b-b0bf-4340-adbe-c52b22e3157d", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 840, + "trimY": 1298, + "width": 106, + "height": 106, + "rawWidth": 106, + "rawHeight": 106, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dayTitle.png": { + "ver": "1.0.6", + "uuid": "9aff6d7a-201e-4691-a99e-6f033ebf1a42", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 519, + "trimY": 1310, + "width": 258, + "height": 65, + "rawWidth": 258, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "fuhao.png": { + "ver": "1.0.6", + "uuid": "b534af29-fa28-4c73-903e-29dbc62c719f", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 882, + "trimY": 771, + "width": 31, + "height": 45, + "rawWidth": 31, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "getBtn.png": { + "ver": "1.0.6", + "uuid": "414ac329-666b-484c-825e-8feb0c0d4170", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1362, + "width": 294, + "height": 112, + "rawWidth": 294, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "icon.png": { + "ver": "1.0.6", + "uuid": "8c511e4a-7f66-449d-beec-75fe45e159dd", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 1476, + "width": 80, + "height": 37, + "rawWidth": 80, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jindut.png": { + "ver": "1.0.6", + "uuid": "ccfdaade-8f72-4636-8774-07ac95ec8817", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 882, + "trimY": 1, + "width": 768, + "height": 36, + "rawWidth": 768, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jindut01.png": { + "ver": "1.0.6", + "uuid": "170d9827-4e52-4c49-aeaa-4d2f54d3aa65", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1158, + "width": 768, + "height": 36, + "rawWidth": 768, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jumpBtn.png": { + "ver": "1.0.6", + "uuid": "0c60f4d2-464a-44be-9cda-689b17043553", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 519, + "trimY": 1196, + "width": 294, + "height": 112, + "rawWidth": 294, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "openDay.png": { + "ver": "1.0.6", + "uuid": "f75337ae-a288-4497-92e6-c3486c78cfe1", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 297, + "trimY": 1362, + "width": 154, + "height": 174, + "rawWidth": 154, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title1.png": { + "ver": "1.0.6", + "uuid": "8dbc1b65-1250-48db-9b75-412f44edd6b9", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 920, + "trimY": 571, + "width": 186, + "height": 44, + "rawWidth": 186, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title2.png": { + "ver": "1.0.6", + "uuid": "56df0374-c70d-4550-8bbf-490e4cf3821e", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 920, + "trimY": 1, + "width": 379, + "height": 46, + "rawWidth": 379, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title3.png": { + "ver": "1.0.6", + "uuid": "751060b7-8139-426e-af56-245f0911ab34", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 877, + "trimY": 879, + "width": 184, + "height": 44, + "rawWidth": 184, + "rawHeight": 44, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title4.png": { + "ver": "1.0.6", + "uuid": "b71f0cef-3240-42c1-bd81-5da86e69dbd9", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 920, + "trimY": 382, + "width": 187, + "height": 45, + "rawWidth": 187, + "rawHeight": 45, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "updateTitle.png": { + "ver": "1.0.6", + "uuid": "90966c3c-bd2b-4d62-adf3-5db0157571d7", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 837, + "trimY": 879, + "width": 201, + "height": 38, + "rawWidth": 201, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xiaoren.png": { + "ver": "1.0.6", + "uuid": "908c3c41-afef-41fc-a899-4631a0378445", + "importer": "sprite-frame", + "rawTextureUuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 473, + "trimY": 1377, + "width": 131, + "height": 149, + "rawWidth": 131, + "rawHeight": 149, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/DailyQuests.png b/assets/action_bundle/img/DailyQuests.png new file mode 100644 index 0000000..3eb8134 Binary files /dev/null and b/assets/action_bundle/img/DailyQuests.png differ diff --git a/assets/action_bundle/img/DailyQuests.png.meta b/assets/action_bundle/img/DailyQuests.png.meta new file mode 100644 index 0000000..6784b07 --- /dev/null +++ b/assets/action_bundle/img/DailyQuests.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "5ffe5ac7-fa91-45d7-9454-7e9215be185b", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 967, + "height": 1517, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/img/action_hammer.plist b/assets/action_bundle/img/action_hammer.plist new file mode 100644 index 0000000..1bac533 --- /dev/null +++ b/assets/action_bundle/img/action_hammer.plist @@ -0,0 +1,356 @@ + + + + + frames + + 0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1315,1378},{27,31}} + textureRotated + + + 1.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {19,31} + spriteSourceSize + {27,31} + textureRect + {{1528,1288},{19,31}} + textureRotated + + + 10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {78,35} + spriteSourceSize + {78,35} + textureRect + {{1572,1062},{78,35}} + textureRotated + + + 2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1595,677},{27,31}} + textureRotated + + + 3.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {25,31} + spriteSourceSize + {27,31} + textureRect + {{1595,776},{25,31}} + textureRotated + + + 4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1572,1142},{27,31}} + textureRotated + + + 5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {25,29} + spriteSourceSize + {27,31} + textureRect + {{958,1375},{25,29}} + textureRotated + + + 6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1595,710},{27,31}} + textureRotated + + + 7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1572,1175},{27,31}} + textureRotated + + + 8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1595,743},{27,31}} + textureRotated + + + 9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {27,31} + spriteSourceSize + {27,31} + textureRect + {{1572,1208},{27,31}} + textureRotated + + + action_hammer.png + + aliases + + spriteOffset + {0,0} + spriteSize + {158,162} + spriteSourceSize + {158,162} + textureRect + {{1354,1313},{158,162}} + textureRotated + + + beginBg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {955,240} + spriteSourceSize + {955,240} + textureRect + {{1,1375},{955,240}} + textureRotated + + + beginBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {634,172} + spriteSourceSize + {634,172} + textureRect + {{1354,677},{634,172}} + textureRotated + + + biaoti.png + + aliases + + spriteOffset + {0,0} + spriteSize + {750,222} + spriteSourceSize + {750,222} + textureRect + {{989,677},{750,222}} + textureRotated + + + hamer_texiao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {239,182} + spriteSourceSize + {239,182} + textureRect + {{958,1429},{239,182}} + textureRotated + + + hammer_action.png + + aliases + + spriteOffset + {0,0} + spriteSize + {674,638} + spriteSourceSize + {674,638} + textureRect + {{989,1},{674,638}} + textureRotated + + + mianfei.png + + aliases + + spriteOffset + {0,0} + spriteSize + {100,56} + spriteSourceSize + {100,56} + textureRect + {{1213,1378},{100,56}} + textureRotated + + + shengXiao.png + + aliases + + spriteOffset + {0,0} + spriteSize + {224,42} + spriteSourceSize + {224,42} + textureRect + {{1528,1062},{224,42}} + textureRotated + + + title_hammer.png + + aliases + + spriteOffset + {0,0} + spriteSize + {383,65} + spriteSourceSize + {383,65} + textureRect + {{1528,677},{383,65}} + textureRotated + + + title_tishi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {699,139} + spriteSourceSize + {699,139} + textureRect + {{1213,677},{699,139}} + textureRotated + + + waikuang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {986,1372} + spriteSourceSize + {986,1372} + textureRect + {{1,1},{986,1372}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + action_hammer.png + size + {1628,1616} + smartupdate + $TexturePacker:SmartUpdate:91763baf6ab7d2d89491adf9a182c291:cc0f56ce542dc004b6b0298f4a26aa96:c1af61fc1c31da7ad78ba28ab2f50dda$ + textureFileName + action_hammer.png + + + diff --git a/assets/action_bundle/img/action_hammer.plist.meta b/assets/action_bundle/img/action_hammer.plist.meta new file mode 100644 index 0000000..5a8748a --- /dev/null +++ b/assets/action_bundle/img/action_hammer.plist.meta @@ -0,0 +1,519 @@ +{ + "ver": "1.2.6", + "uuid": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02", + "importer": "asset", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "size": { + "width": 1628, + "height": 1616 + }, + "type": "Texture Packer", + "subMetas": { + "0.png": { + "ver": "1.0.6", + "uuid": "bc114c9b-9b46-4a3b-a162-5f9873c5b92c", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1315, + "trimY": 1378, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1.png": { + "ver": "1.0.6", + "uuid": "72ec265d-c8e5-4494-88f6-76dca680ed7a", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": -1, + "offsetY": 0, + "trimX": 1528, + "trimY": 1288, + "width": 19, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10.png": { + "ver": "1.0.6", + "uuid": "921be357-605d-4338-acf9-12c9121e25ab", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 1062, + "width": 78, + "height": 35, + "rawWidth": 78, + "rawHeight": 35, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2.png": { + "ver": "1.0.6", + "uuid": "7ee7139a-e21b-40cb-84a5-f8f7f7f999f8", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1595, + "trimY": 677, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3.png": { + "ver": "1.0.6", + "uuid": "0bdcd04f-9234-4201-a624-10c4452fc381", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1595, + "trimY": 776, + "width": 25, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4.png": { + "ver": "1.0.6", + "uuid": "36944ad8-a006-4624-ae83-06a3efba7a59", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 1142, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5.png": { + "ver": "1.0.6", + "uuid": "d91c5952-c6b8-474e-970c-9510dc0b0e87", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 958, + "trimY": 1375, + "width": 25, + "height": 29, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6.png": { + "ver": "1.0.6", + "uuid": "641bf738-5dcc-43a0-abe2-6715b3b50428", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1595, + "trimY": 710, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7.png": { + "ver": "1.0.6", + "uuid": "1c66f888-4257-474c-a295-9117447e7f0f", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 1175, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8.png": { + "ver": "1.0.6", + "uuid": "3bbd1f92-b945-41dc-afaa-6a8871d3bca0", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1595, + "trimY": 743, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9.png": { + "ver": "1.0.6", + "uuid": "669d584e-ffca-473b-853f-72f797270dfe", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 1208, + "width": 27, + "height": 31, + "rawWidth": 27, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "action_hammer.png": { + "ver": "1.0.6", + "uuid": "2c1683f1-1669-4350-8248-7b246e34b534", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1354, + "trimY": 1313, + "width": 158, + "height": 162, + "rawWidth": 158, + "rawHeight": 162, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "beginBg.png": { + "ver": "1.0.6", + "uuid": "357160b9-67bc-46f5-8f65-ea549ea589a0", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1375, + "width": 955, + "height": 240, + "rawWidth": 955, + "rawHeight": 240, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "beginBtn.png": { + "ver": "1.0.6", + "uuid": "e7cb0b83-8ca3-4c48-a251-233932b16e48", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1354, + "trimY": 677, + "width": 634, + "height": 172, + "rawWidth": 634, + "rawHeight": 172, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "biaoti.png": { + "ver": "1.0.6", + "uuid": "fc7a8427-2750-446c-be2e-407918e940d2", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 989, + "trimY": 677, + "width": 750, + "height": 222, + "rawWidth": 750, + "rawHeight": 222, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hamer_texiao.png": { + "ver": "1.0.6", + "uuid": "0b9d59c6-cb80-4f0c-a550-01df745ff3c8", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 958, + "trimY": 1429, + "width": 239, + "height": 182, + "rawWidth": 239, + "rawHeight": 182, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "hammer_action.png": { + "ver": "1.0.6", + "uuid": "bd0fb4cf-eb5a-44fc-8329-27f292bfbad2", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 989, + "trimY": 1, + "width": 674, + "height": 638, + "rawWidth": 674, + "rawHeight": 638, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mianfei.png": { + "ver": "1.0.6", + "uuid": "59d7a637-28c3-4011-8de3-a01f32b14b6d", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1213, + "trimY": 1378, + "width": 100, + "height": 56, + "rawWidth": 100, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shengXiao.png": { + "ver": "1.0.6", + "uuid": "9be4d7e4-4a11-4a3f-8dc2-663f7d2d1774", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1528, + "trimY": 1062, + "width": 224, + "height": 42, + "rawWidth": 224, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title_hammer.png": { + "ver": "1.0.6", + "uuid": "68eb7643-487f-4284-8c0a-9e29a15b8c75", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1528, + "trimY": 677, + "width": 383, + "height": 65, + "rawWidth": 383, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "title_tishi.png": { + "ver": "1.0.6", + "uuid": "70b90cf7-9bd4-43a9-b749-74c14e56a82d", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1213, + "trimY": 677, + "width": 699, + "height": 139, + "rawWidth": 699, + "rawHeight": 139, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "waikuang.png": { + "ver": "1.0.6", + "uuid": "1d8afc6b-dedd-4f03-bd1b-bc2094a6fe76", + "importer": "sprite-frame", + "rawTextureUuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 986, + "height": 1372, + "rawWidth": 986, + "rawHeight": 1372, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/action_hammer.png b/assets/action_bundle/img/action_hammer.png new file mode 100644 index 0000000..00ed2d6 Binary files /dev/null and b/assets/action_bundle/img/action_hammer.png differ diff --git a/assets/action_bundle/img/action_hammer.png.meta b/assets/action_bundle/img/action_hammer.png.meta new file mode 100644 index 0000000..034519b --- /dev/null +++ b/assets/action_bundle/img/action_hammer.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "7da70c0a-0347-4a60-a7ef-345b0fbd7bfe", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1628, + "height": 1616, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/img/bg.jpg b/assets/action_bundle/img/bg.jpg new file mode 100644 index 0000000..642b4cc Binary files /dev/null and b/assets/action_bundle/img/bg.jpg differ diff --git a/assets/action_bundle/img/bg.jpg.meta b/assets/action_bundle/img/bg.jpg.meta new file mode 100644 index 0000000..a12acb9 --- /dev/null +++ b/assets/action_bundle/img/bg.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4f0d5cd6-4465-4ed6-b990-efd65fee962a", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 954, + "height": 1319, + "platformSettings": {}, + "subMetas": { + "bg": { + "ver": "1.0.6", + "uuid": "d0aa980b-a3b8-4920-abfb-110bc2f92f56", + "importer": "sprite-frame", + "rawTextureUuid": "4f0d5cd6-4465-4ed6-b990-efd65fee962a", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 954, + "height": 1319, + "rawWidth": 954, + "rawHeight": 1319, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/btn1.png b/assets/action_bundle/img/btn1.png new file mode 100644 index 0000000..8483e73 Binary files /dev/null and b/assets/action_bundle/img/btn1.png differ diff --git a/assets/action_bundle/img/btn1.png.meta b/assets/action_bundle/img/btn1.png.meta new file mode 100644 index 0000000..44dc4ab --- /dev/null +++ b/assets/action_bundle/img/btn1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "6a0046b8-f2d4-4004-b46a-2cd86fdecd6f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 96, + "height": 102, + "platformSettings": {}, + "subMetas": { + "btn1": { + "ver": "1.0.6", + "uuid": "e3dce408-7c87-4dfe-a052-01ddc5bf0ad0", + "importer": "sprite-frame", + "rawTextureUuid": "6a0046b8-f2d4-4004-b46a-2cd86fdecd6f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 96, + "height": 102, + "rawWidth": 96, + "rawHeight": 102, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/close.png b/assets/action_bundle/img/close.png new file mode 100644 index 0000000..cae50d7 Binary files /dev/null and b/assets/action_bundle/img/close.png differ diff --git a/assets/action_bundle/img/close.png.meta b/assets/action_bundle/img/close.png.meta new file mode 100644 index 0000000..73acf7a --- /dev/null +++ b/assets/action_bundle/img/close.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "9a47dee5-87a2-4155-aba5-7cd0cd54ff79", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 65, + "height": 64, + "platformSettings": {}, + "subMetas": { + "close": { + "ver": "1.0.6", + "uuid": "038fff06-85e5-43ae-bebd-256065906c4e", + "importer": "sprite-frame", + "rawTextureUuid": "9a47dee5-87a2-4155-aba5-7cd0cd54ff79", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 65, + "height": 64, + "rawWidth": 65, + "rawHeight": 64, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/finishi.png b/assets/action_bundle/img/finishi.png new file mode 100644 index 0000000..f37f637 Binary files /dev/null and b/assets/action_bundle/img/finishi.png differ diff --git a/assets/action_bundle/img/finishi.png.meta b/assets/action_bundle/img/finishi.png.meta new file mode 100644 index 0000000..52b8eab --- /dev/null +++ b/assets/action_bundle/img/finishi.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "282edbd1-e193-4b8c-a13e-27a4d5f0d90b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 410, + "height": 124, + "platformSettings": {}, + "subMetas": { + "finishi": { + "ver": "1.0.6", + "uuid": "117b1880-16c0-436c-9fc7-8b604a57b19d", + "importer": "sprite-frame", + "rawTextureUuid": "282edbd1-e193-4b8c-a13e-27a4d5f0d90b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 410, + "height": 124, + "rawWidth": 410, + "rawHeight": 124, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/gold.atlas b/assets/action_bundle/img/gold.atlas new file mode 100644 index 0000000..4c516ce --- /dev/null +++ b/assets/action_bundle/img/gold.atlas @@ -0,0 +1,34 @@ + +gold.png +size: 136,144 +format: RGBA8888 +filter: Linear,Linear +repeat: none +0 + rotate: false + xy: 66, 2 + size: 63, 66 + orig: 64, 66 + offset: 0, 0 + index: -1 +3 + rotate: false + xy: 2, 56 + size: 62, 85 + orig: 62, 85 + offset: 0, 0 + index: -1 +cha + rotate: false + xy: 2, 2 + size: 44, 52 + orig: 44, 52 + offset: 0, 0 + index: -1 +gold + rotate: false + xy: 66, 70 + size: 65, 71 + orig: 65, 71 + offset: 0, 0 + index: -1 diff --git a/assets/action_bundle/img/gold.atlas.meta b/assets/action_bundle/img/gold.atlas.meta new file mode 100644 index 0000000..9252997 --- /dev/null +++ b/assets/action_bundle/img/gold.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "0d1b4fbd-3f18-4018-b896-c2eba18b04c0", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/img/gold.json b/assets/action_bundle/img/gold.json new file mode 100644 index 0000000..e43ae50 --- /dev/null +++ b/assets/action_bundle/img/gold.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"MtZUpwTmZcUJO1dJJoAyB3U3smw","spine":"3.8.99","x":-239.63,"y":-64.09,"width":362.22,"height":111.27,"images":"","audio":""},"bones":[{"name":"root"},{"name":"gold","parent":"root","x":-207.13,"y":-26.86},{"name":"cha","parent":"root","x":-148.84,"y":-12.17},{"name":"san","parent":"root","x":-90.3,"y":-4.03},{"name":"ling1","parent":"root","x":-30.82,"y":2.04},{"name":"ling2","parent":"root","x":29.28,"y":8.11},{"name":"ling3","parent":"root","x":90.58,"y":14.18}],"slots":[{"name":"gold","bone":"gold","attachment":"gold"},{"name":"cha","bone":"cha","attachment":"cha"},{"name":"san","bone":"san","attachment":"3"},{"name":"ling1","bone":"ling1","attachment":"0"},{"name":"ling2","bone":"ling2","attachment":"0"},{"name":"ling3","bone":"ling3","attachment":"0"}],"skins":[{"name":"default","attachments":{"cha":{"cha":{"width":44,"height":52}},"gold":{"gold":{"y":-1.73,"width":65,"height":71}},"ling1":{"0":{"width":64,"height":66}},"ling2":{"0":{"width":64,"height":66}},"ling3":{"0":{"width":64,"height":66}},"san":{"3":{"y":0.5,"width":62,"height":85}}}}],"animations":{"animation":{"slots":{"cha":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.0667,"color":"ffffff00"},{"time":0.1333,"color":"ffffffff"}]},"gold":{"color":[{"color":"ffffff00"},{"time":0.0667,"color":"ffffffff"}]},"ling1":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.2333,"color":"ffffff00"},{"time":0.3,"color":"ffffffff"}]},"ling2":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.3,"color":"ffffff00"},{"time":0.3667,"color":"ffffffff"}]},"ling3":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.4333,"color":"ffffff00"},{"time":0.5,"color":"ffffffff"}]},"san":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.1333,"color":"ffffff00"},{"time":0.2,"color":"ffffffff"}]}},"bones":{"gold":{"translate":[{"y":-102.25},{"time":0.0667},{"time":0.1667,"y":14.16},{"time":0.2667}]},"cha":{"translate":[{"y":-102.25,"curve":"stepped"},{"time":0.0667,"y":-102.25},{"time":0.1333},{"time":0.2333,"y":14.16},{"time":0.3333}]},"san":{"translate":[{"y":-102.25,"curve":"stepped"},{"time":0.1333,"y":-102.25},{"time":0.2},{"time":0.3,"y":14.16},{"time":0.4}]},"ling1":{"translate":[{"y":-102.25,"curve":"stepped"},{"time":0.2333,"y":-102.25},{"time":0.3},{"time":0.4,"y":14.16},{"time":0.5}]},"ling2":{"translate":[{"y":-102.25,"curve":"stepped"},{"time":0.3,"y":-102.25},{"time":0.3667},{"time":0.4667,"y":14.16},{"time":0.5667}]},"ling3":{"translate":[{"y":-102.25,"curve":"stepped"},{"time":0.4333,"y":-102.25},{"time":0.5},{"time":0.6,"y":14.16},{"time":0.7}]}}}}} \ No newline at end of file diff --git a/assets/action_bundle/img/gold.json.meta b/assets/action_bundle/img/gold.json.meta new file mode 100644 index 0000000..f9d05dc --- /dev/null +++ b/assets/action_bundle/img/gold.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "d30ec525-71c7-430d-bdf6-053a4f682e6c", + "importer": "spine", + "textures": [ + "d4d0f609-24f7-4af3-93aa-1ed6d2ac8fda" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/img/gold.png b/assets/action_bundle/img/gold.png new file mode 100644 index 0000000..0794156 Binary files /dev/null and b/assets/action_bundle/img/gold.png differ diff --git a/assets/action_bundle/img/gold.png.meta b/assets/action_bundle/img/gold.png.meta new file mode 100644 index 0000000..8d59663 --- /dev/null +++ b/assets/action_bundle/img/gold.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d4d0f609-24f7-4af3-93aa-1ed6d2ac8fda", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 136, + "height": 144, + "platformSettings": {}, + "subMetas": { + "gold": { + "ver": "1.0.6", + "uuid": "fbd213cb-0de2-4708-afbf-28aef95f2b01", + "importer": "sprite-frame", + "rawTextureUuid": "d4d0f609-24f7-4af3-93aa-1ed6d2ac8fda", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1.5, + "offsetY": 0.5, + "trimX": 2, + "trimY": 2, + "width": 129, + "height": 139, + "rawWidth": 136, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/hammer.meta b/assets/action_bundle/img/hammer.meta new file mode 100644 index 0000000..a41d5a1 --- /dev/null +++ b/assets/action_bundle/img/hammer.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "87056b96-7f04-4f1f-a3bb-a13a087d1ff5", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/img/hammer/Z1.jpg b/assets/action_bundle/img/hammer/Z1.jpg new file mode 100644 index 0000000..3c06fb6 Binary files /dev/null and b/assets/action_bundle/img/hammer/Z1.jpg differ diff --git a/assets/action_bundle/img/hammer/Z1.jpg.meta b/assets/action_bundle/img/hammer/Z1.jpg.meta new file mode 100644 index 0000000..efdc19c --- /dev/null +++ b/assets/action_bundle/img/hammer/Z1.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "02f114ce-8af0-4f9d-b597-4086cf76e6d3", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "Z1": { + "ver": "1.0.6", + "uuid": "1bf55ee6-1fb5-4e0f-88d2-d460940ae74c", + "importer": "sprite-frame", + "rawTextureUuid": "02f114ce-8af0-4f9d-b597-4086cf76e6d3", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/hammer/Z2.jpg b/assets/action_bundle/img/hammer/Z2.jpg new file mode 100644 index 0000000..d8aa281 Binary files /dev/null and b/assets/action_bundle/img/hammer/Z2.jpg differ diff --git a/assets/action_bundle/img/hammer/Z2.jpg.meta b/assets/action_bundle/img/hammer/Z2.jpg.meta new file mode 100644 index 0000000..8e6513f --- /dev/null +++ b/assets/action_bundle/img/hammer/Z2.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "12d76fca-bb7b-444c-ba0e-177ee4c6d1f6", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "Z2": { + "ver": "1.0.6", + "uuid": "0b85d8b1-fc60-4ca6-a621-073131475960", + "importer": "sprite-frame", + "rawTextureUuid": "12d76fca-bb7b-444c-ba0e-177ee4c6d1f6", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/newUser.plist b/assets/action_bundle/img/newUser.plist new file mode 100644 index 0000000..c1f0852 --- /dev/null +++ b/assets/action_bundle/img/newUser.plist @@ -0,0 +1,581 @@ + + + + + frames + + allGet.png + + aliases + + spriteOffset + {0,0} + spriteSize + {516,164} + spriteSourceSize + {516,164} + textureRect + {{1831,1},{516,164}} + textureRotated + + + bg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {712,912} + spriteSourceSize + {712,912} + textureRect + {{1,1},{712,912}} + textureRotated + + + bgKuang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {879,876} + spriteSourceSize + {879,876} + textureRect + {{915,1},{879,876}} + textureRotated + + + bgLittle.png + + aliases + + spriteOffset + {0,0} + spriteSize + {834,277} + spriteSourceSize + {834,277} + textureRect + {{1,715},{834,277}} + textureRotated + + + btn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {516,164} + spriteSourceSize + {516,164} + textureRect + {{904,920},{516,164}} + textureRotated + + + chuizi.png + + aliases + + spriteOffset + {-1,0} + spriteSize + {306,316} + spriteSourceSize + {316,316} + textureRect + {{1674,882},{306,316}} + textureRotated + + + coin3000.png + + aliases + + spriteOffset + {0,0} + spriteSize + {242,94} + spriteSourceSize + {242,94} + textureRect + {{1831,519},{242,94}} + textureRotated + + + coinX.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{837,975},{44,54}} + textureRotated + + + dayTitle.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,65} + spriteSourceSize + {258,65} + textureRect + {{837,715},{258,65}} + textureRotated + + + double.png + + aliases + + spriteOffset + {0,0} + spriteSize + {211,211} + spriteSourceSize + {211,211} + textureRect + {{599,994},{211,211}} + textureRotated + + + getBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {294,112} + spriteSourceSize + {294,112} + textureRect + {{303,994},{294,112}} + textureRotated + + + iceb.png + + aliases + + spriteOffset + {0,1} + spriteSize + {242,294} + spriteSourceSize + {316,316} + textureRect + {{1422,920},{242,294}} + textureRotated + + + icon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {80,37} + spriteSourceSize + {80,37} + textureRect + {{1927,519},{80,37}} + textureRotated + + + jinbi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {66,72} + spriteSourceSize + {66,72} + textureRect + {{1927,676},{66,72}} + textureRotated + + + jindut.png + + aliases + + spriteOffset + {0,0} + spriteSize + {768,36} + spriteSourceSize + {768,36} + textureRect + {{904,882},{768,36}} + textureRotated + + + jindut01.png + + aliases + + spriteOffset + {0,0} + spriteSize + {768,36} + spriteSourceSize + {768,36} + textureRect + {{1793,1},{768,36}} + textureRotated + + + jumpBtn.png + + aliases + + spriteOffset + {0,0} + spriteSize + {294,112} + spriteSourceSize + {294,112} + textureRect + {{303,1108},{294,112}} + textureRotated + + + new_user0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,27} + spriteSourceSize + {24,27} + textureRect + {{1967,750},{24,27}} + textureRotated + + + new_user1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {16,27} + spriteSourceSize + {24,27} + textureRect + {{1793,863},{16,27}} + textureRotated + + + new_user10.png + + aliases + + spriteOffset + {0,1} + spriteSize + {10,21} + spriteSourceSize + {24,27} + textureRect + {{1822,863},{10,21}} + textureRotated + + + new_user2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,27} + spriteSourceSize + {24,27} + textureRect + {{1967,779},{24,27}} + textureRotated + + + new_user3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,27} + spriteSourceSize + {24,27} + textureRect + {{1966,577},{22,27}} + textureRotated + + + new_user4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,27} + spriteSourceSize + {24,27} + textureRect + {{1966,519},{24,27}} + textureRotated + + + new_user5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,27} + spriteSourceSize + {24,27} + textureRect + {{1966,548},{24,27}} + textureRotated + + + new_user6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,27} + spriteSourceSize + {24,27} + textureRect + {{1750,1200},{24,27}} + textureRotated + + + new_user7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,27} + spriteSourceSize + {24,27} + textureRect + {{1779,1200},{24,27}} + textureRotated + + + new_user8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,27} + spriteSourceSize + {24,27} + textureRect + {{1808,1200},{24,27}} + textureRotated + + + new_user9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {24,27} + spriteSourceSize + {24,27} + textureRect + {{1837,1200},{24,27}} + textureRotated + + + openDay.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,174} + spriteSourceSize + {154,174} + textureRect + {{812,1086},{154,174}} + textureRotated + + + prop5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {73,43} + spriteSourceSize + {73,43} + textureRect + {{1927,601},{73,43}} + textureRotated + + + propBg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {168,168} + spriteSourceSize + {168,168} + textureRect + {{988,1086},{168,168}} + textureRotated + + + propX.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,32} + spriteSourceSize + {32,32} + textureRect + {{1716,1200},{32,32}} + textureRotated + + + starb.png + + aliases + + spriteOffset + {8,-7} + spriteSize + {286,300} + spriteSourceSize + {316,316} + textureRect + {{1,994},{286,300}} + textureRotated + + + timeBg.png + + aliases + + spriteOffset + {0,0} + spriteSize + {172,50} + spriteSourceSize + {172,50} + textureRect + {{1793,771},{172,50}} + textureRotated + + + timeIcon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {48,48} + spriteSourceSize + {48,48} + textureRect + {{1666,1200},{48,48}} + textureRotated + + + updateTitle.png + + aliases + + spriteOffset + {0,0} + spriteSize + {201,38} + spriteSourceSize + {201,38} + textureRect + {{1793,823},{201,38}} + textureRotated + + + xiaoren.png + + aliases + + spriteOffset + {0,0} + spriteSize + {131,149} + spriteSourceSize + {131,149} + textureRect + {{1158,1086},{131,149}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + newUser.png + size + {1996,1281} + smartupdate + $TexturePacker:SmartUpdate:db376348b74768259a3fc33d6c231032:187fd495d93001ccda966d499b724d56:94f0435e833a311c03a07427355eeed9$ + textureFileName + newUser.png + + + diff --git a/assets/action_bundle/img/newUser.plist.meta b/assets/action_bundle/img/newUser.plist.meta new file mode 100644 index 0000000..2772c52 --- /dev/null +++ b/assets/action_bundle/img/newUser.plist.meta @@ -0,0 +1,864 @@ +{ + "ver": "1.2.6", + "uuid": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9", + "importer": "asset", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "size": { + "width": 1996, + "height": 1281 + }, + "type": "Texture Packer", + "subMetas": { + "allGet.png": { + "ver": "1.0.6", + "uuid": "17c46e10-262d-44c5-aeb3-9f39d912fd51", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1831, + "trimY": 1, + "width": 516, + "height": 164, + "rawWidth": 516, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "bg.png": { + "ver": "1.0.6", + "uuid": "d2ab609e-95e6-4efe-a628-871f302730d2", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 712, + "height": 912, + "rawWidth": 712, + "rawHeight": 912, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "bgKuang.png": { + "ver": "1.0.6", + "uuid": "23facfbb-d5a6-411e-b0bc-d70035182ffa", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 915, + "trimY": 1, + "width": 879, + "height": 876, + "rawWidth": 879, + "rawHeight": 876, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "bgLittle.png": { + "ver": "1.0.6", + "uuid": "486e50e1-f267-4805-b678-186cb6cd4602", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 715, + "width": 834, + "height": 277, + "rawWidth": 834, + "rawHeight": 277, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn.png": { + "ver": "1.0.6", + "uuid": "89786947-942f-48c2-b97a-240a02af167e", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 904, + "trimY": 920, + "width": 516, + "height": 164, + "rawWidth": 516, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "chuizi.png": { + "ver": "1.0.6", + "uuid": "f383b277-ace5-445f-8863-a2c943b718f2", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 0, + "trimX": 1674, + "trimY": 882, + "width": 306, + "height": 316, + "rawWidth": 316, + "rawHeight": 316, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coin3000.png": { + "ver": "1.0.6", + "uuid": "86c750e1-75bf-4b27-b02b-67d4205e336f", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1831, + "trimY": 519, + "width": 242, + "height": 94, + "rawWidth": 242, + "rawHeight": 94, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coinX.png": { + "ver": "1.0.6", + "uuid": "9772f588-9321-4d3d-9b4a-0b251483dfc1", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 837, + "trimY": 975, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dayTitle.png": { + "ver": "1.0.6", + "uuid": "80e5cd47-c95b-49a8-b218-bd2469c621a3", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 837, + "trimY": 715, + "width": 258, + "height": 65, + "rawWidth": 258, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "double.png": { + "ver": "1.0.6", + "uuid": "4df0b7a9-ae26-4420-87f7-332dcaadc354", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 599, + "trimY": 994, + "width": 211, + "height": 211, + "rawWidth": 211, + "rawHeight": 211, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "getBtn.png": { + "ver": "1.0.6", + "uuid": "827f58fd-cb1b-46dd-bde7-e0943a8d3128", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 303, + "trimY": 994, + "width": 294, + "height": 112, + "rawWidth": 294, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "iceb.png": { + "ver": "1.0.6", + "uuid": "9b0584fc-efbf-4e13-b1c0-26d8d47c5971", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 1, + "trimX": 1422, + "trimY": 920, + "width": 242, + "height": 294, + "rawWidth": 316, + "rawHeight": 316, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "icon.png": { + "ver": "1.0.6", + "uuid": "7eccaf06-f4de-4f6b-9322-c7918c9b383e", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1927, + "trimY": 519, + "width": 80, + "height": 37, + "rawWidth": 80, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jinbi.png": { + "ver": "1.0.6", + "uuid": "f3cbebf8-2dea-4545-911f-861283de9a8e", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1927, + "trimY": 676, + "width": 66, + "height": 72, + "rawWidth": 66, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jindut.png": { + "ver": "1.0.6", + "uuid": "ea56408f-7611-4be2-90f3-abb15db933c7", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 904, + "trimY": 882, + "width": 768, + "height": 36, + "rawWidth": 768, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jindut01.png": { + "ver": "1.0.6", + "uuid": "4ab6b145-41a1-4d98-a6ed-adb54986ba7a", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1793, + "trimY": 1, + "width": 768, + "height": 36, + "rawWidth": 768, + "rawHeight": 36, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jumpBtn.png": { + "ver": "1.0.6", + "uuid": "70c157e1-a211-48a2-9f99-e748dcf5967d", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 303, + "trimY": 1108, + "width": 294, + "height": 112, + "rawWidth": 294, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user0.png": { + "ver": "1.0.6", + "uuid": "d40d33e8-6291-4826-ad41-5a837f4a2b42", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1967, + "trimY": 750, + "width": 24, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user1.png": { + "ver": "1.0.6", + "uuid": "95d9a2f9-465a-4fb6-a704-d468e87436e4", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1793, + "trimY": 863, + "width": 16, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user10.png": { + "ver": "1.0.6", + "uuid": "1fcb12db-189e-451f-b752-23f39e9a7231", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 1, + "trimX": 1822, + "trimY": 863, + "width": 10, + "height": 21, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user2.png": { + "ver": "1.0.6", + "uuid": "a8cc9a66-aff3-4ad4-a913-b0174206d307", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1967, + "trimY": 779, + "width": 24, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user3.png": { + "ver": "1.0.6", + "uuid": "6113afe8-58e3-4076-af42-b6c4a9816543", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1966, + "trimY": 577, + "width": 22, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user4.png": { + "ver": "1.0.6", + "uuid": "5efaf24e-9feb-4a68-9b13-1fa080044dd8", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1966, + "trimY": 519, + "width": 24, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user5.png": { + "ver": "1.0.6", + "uuid": "4da9c897-ed1c-4889-8b1f-a26143135afd", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1966, + "trimY": 548, + "width": 24, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user6.png": { + "ver": "1.0.6", + "uuid": "f23436aa-dba3-4784-afd6-c4211d3cc356", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1750, + "trimY": 1200, + "width": 24, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user7.png": { + "ver": "1.0.6", + "uuid": "19491efe-21fb-4c34-848f-114e27678912", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1779, + "trimY": 1200, + "width": 24, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user8.png": { + "ver": "1.0.6", + "uuid": "c55581d5-0ab1-4e63-8bdd-12414409381c", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1808, + "trimY": 1200, + "width": 24, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "new_user9.png": { + "ver": "1.0.6", + "uuid": "4ab9a490-8c48-4932-b81e-cb5eb4b94b0d", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1837, + "trimY": 1200, + "width": 24, + "height": 27, + "rawWidth": 24, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "openDay.png": { + "ver": "1.0.6", + "uuid": "a71f51cc-7f5c-4cda-9ed8-a2de24fcaa4a", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 812, + "trimY": 1086, + "width": 154, + "height": 174, + "rawWidth": 154, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "prop5.png": { + "ver": "1.0.6", + "uuid": "2691a41c-d54e-4eb3-8b6b-5e336752e542", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1927, + "trimY": 601, + "width": 73, + "height": 43, + "rawWidth": 73, + "rawHeight": 43, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "propBg.png": { + "ver": "1.0.6", + "uuid": "7586472c-63d3-40cc-82d6-8052b3109aa6", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 988, + "trimY": 1086, + "width": 168, + "height": 168, + "rawWidth": 168, + "rawHeight": 168, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "propX.png": { + "ver": "1.0.6", + "uuid": "58a5241f-e9cd-4406-a0b7-cadf9ca6cb0f", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1716, + "trimY": 1200, + "width": 32, + "height": 32, + "rawWidth": 32, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "starb.png": { + "ver": "1.0.6", + "uuid": "a8b13964-f98b-455d-8833-39389969a45b", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 8, + "offsetY": -7, + "trimX": 1, + "trimY": 994, + "width": 286, + "height": 300, + "rawWidth": 316, + "rawHeight": 316, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "timeBg.png": { + "ver": "1.0.6", + "uuid": "a0c93d5a-f639-4d84-a47e-a427c4cc593b", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1793, + "trimY": 771, + "width": 172, + "height": 50, + "rawWidth": 172, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "timeIcon.png": { + "ver": "1.0.6", + "uuid": "18d65e4a-9a87-4fdf-8fe5-e0334c8e6cd5", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1666, + "trimY": 1200, + "width": 48, + "height": 48, + "rawWidth": 48, + "rawHeight": 48, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "updateTitle.png": { + "ver": "1.0.6", + "uuid": "84c586e5-76ed-42b6-b165-800b051407c1", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1793, + "trimY": 823, + "width": 201, + "height": 38, + "rawWidth": 201, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "xiaoren.png": { + "ver": "1.0.6", + "uuid": "69cb0f95-0f92-456d-b978-99b107aa5755", + "importer": "sprite-frame", + "rawTextureUuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1158, + "trimY": 1086, + "width": 131, + "height": 149, + "rawWidth": 131, + "rawHeight": 149, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/newUser.png b/assets/action_bundle/img/newUser.png new file mode 100644 index 0000000..ec17afa Binary files /dev/null and b/assets/action_bundle/img/newUser.png differ diff --git a/assets/action_bundle/img/newUser.png.meta b/assets/action_bundle/img/newUser.png.meta new file mode 100644 index 0000000..57518a2 --- /dev/null +++ b/assets/action_bundle/img/newUser.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "5a5e6bf4-d20a-4fb9-ab2e-7c93ccfbc79f", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1996, + "height": 1281, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/img/red.png b/assets/action_bundle/img/red.png new file mode 100644 index 0000000..6b7dcdd Binary files /dev/null and b/assets/action_bundle/img/red.png differ diff --git a/assets/action_bundle/img/red.png.meta b/assets/action_bundle/img/red.png.meta new file mode 100644 index 0000000..5f030a8 --- /dev/null +++ b/assets/action_bundle/img/red.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "41921c2e-f79c-4c5a-88eb-9c3aaaaa00fe", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 34, + "height": 34, + "platformSettings": {}, + "subMetas": { + "red": { + "ver": "1.0.6", + "uuid": "2a069aa9-1d87-4ad2-9831-e1a10f82de67", + "importer": "sprite-frame", + "rawTextureUuid": "41921c2e-f79c-4c5a-88eb-9c3aaaaa00fe", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 34, + "height": 34, + "rawWidth": 34, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/tanchuang1.png b/assets/action_bundle/img/tanchuang1.png new file mode 100644 index 0000000..810d0df Binary files /dev/null and b/assets/action_bundle/img/tanchuang1.png differ diff --git a/assets/action_bundle/img/tanchuang1.png.meta b/assets/action_bundle/img/tanchuang1.png.meta new file mode 100644 index 0000000..aec4076 --- /dev/null +++ b/assets/action_bundle/img/tanchuang1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "66ab245f-765d-475f-8692-fc3d5f0aa0d4", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 277, + "height": 272, + "platformSettings": {}, + "subMetas": { + "tanchuang1": { + "ver": "1.0.6", + "uuid": "c96690e3-59f1-4716-8231-cc6be2dd86e0", + "importer": "sprite-frame", + "rawTextureUuid": "66ab245f-765d-475f-8692-fc3d5f0aa0d4", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 277, + "height": 272, + "rawWidth": 277, + "rawHeight": 272, + "borderTop": 50, + "borderBottom": 50, + "borderLeft": 50, + "borderRight": 50, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/tanchuang3.png b/assets/action_bundle/img/tanchuang3.png new file mode 100644 index 0000000..8d74473 Binary files /dev/null and b/assets/action_bundle/img/tanchuang3.png differ diff --git a/assets/action_bundle/img/tanchuang3.png.meta b/assets/action_bundle/img/tanchuang3.png.meta new file mode 100644 index 0000000..9e0d603 --- /dev/null +++ b/assets/action_bundle/img/tanchuang3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "70323bb9-6ece-446d-9d0a-cec969c5a7cb", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 720, + "height": 164, + "platformSettings": {}, + "subMetas": { + "tanchuang3": { + "ver": "1.0.6", + "uuid": "908ceb88-d23e-44b4-acbb-c6196ea73166", + "importer": "sprite-frame", + "rawTextureUuid": "70323bb9-6ece-446d-9d0a-cec969c5a7cb", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 720, + "height": 164, + "rawWidth": 720, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/prefab.meta b/assets/action_bundle/prefab.meta new file mode 100644 index 0000000..363d4b0 --- /dev/null +++ b/assets/action_bundle/prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "d1956daf-dd70-4ce6-a0ab-89c4e13f0d6f", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/prefab/Avatar.prefab b/assets/action_bundle/prefab/Avatar.prefab new file mode 100644 index 0000000..c0ab618 --- /dev/null +++ b/assets/action_bundle/prefab/Avatar.prefab @@ -0,0 +1,8833 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "Avatar", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 10 + }, + { + "__id__": 13 + }, + { + "__id__": 16 + }, + { + "__id__": 19 + }, + { + "__id__": 22 + }, + { + "__id__": 25 + }, + { + "__id__": 33 + }, + { + "__id__": 41 + }, + { + "__id__": 44 + }, + { + "__id__": 49 + }, + { + "__id__": 52 + }, + { + "__id__": 60 + }, + { + "__id__": 138 + }, + { + "__id__": 224 + } + ], + "_active": true, + "_components": [ + { + "__id__": 231 + }, + { + "__id__": 232 + } + ], + "_prefab": { + "__id__": 233 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 2000, + "_originalHeight": 3000, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4doiYL2VxAa7wdsXoBosSG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1377 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -31.536, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c96690e3-59f1-4716-8231-cc6be2dd86e0" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1adOo7OhFFrL/oa7Nbf0PX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 656.615, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "908ceb88-d23e-44b4-acbb-c6196ea73166" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "105WxmaqFOxYXqFGRvO912", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 15 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 261, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 663.623, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c186e62d-c82b-490a-a6c4-c2dbdb2b7f74" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c7J4Y63q5D65qDLkmXFiyK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bgKuang", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 17 + } + ], + "_prefab": { + "__id__": 18 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 646, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -18.672, + 174.61, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 16 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fe06f4dd-7386-47e8-90ac-e4068ee1beb3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d4aMX/MNlMMrNGx5e5Secu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tou2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 112, + "height": 54 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180.18, + 176.527, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e931c133-a5da-4de9-a97c-825350c515f7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f97DIfF75DYY9u8IONUnxU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168, + "height": 54 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 139.387, + 176.527, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "08f49977-5da0-419f-9a0f-a36bcf307944" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a9r3Sa+8hKaZKuvd1auyWq", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tou", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 26 + } + ], + "_active": true, + "_components": [ + { + "__id__": 29 + }, + { + "__id__": 30 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180.18, + 176.527, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang1", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8d2e566-a68d-4a93-9888-f807ac211446" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b4IPZtB9BNC6zVMZ9Cggz9", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0b6d0846-ff52-46d7-8b2c-6c8fec478422" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 31 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 25 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeState", + "customEventData": "tou" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c3N28G981AKIIC7upf9rMZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 34 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 99 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 139.387, + 176.527, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang1", + "_objFlags": 0, + "_parent": { + "__id__": 33 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8955cb71-e69c-4dd2-b95f-0e2d56273a24" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ca6qDSPERNsYkTxZ7/eGKg", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0b6d0846-ff52-46d7-8b2c-6c8fec478422" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 39 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 33 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeState", + "customEventData": "kuang" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e0v2XDN1BA/KKrTh29KaWw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + } + ], + "_prefab": { + "__id__": 43 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 860, + "height": 556 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.672, + -175.563, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0eb0ed79-0553-4a3e-9d4d-2274af436f4f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "482gLbfVFJpKNQ+KrC73IB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 45 + }, + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 476, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -570.106, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5031805f-72fc-44a3-9616-1ebdc8ef6440" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 47 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 44 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "clickBtn", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "69sD5fhthPh7Q3ymrH51dA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btnUse", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 172, + "height": 54 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -570.106, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "be0be04e-415d-4c6a-9c3b-5b3337324f24" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9eGJLT5yZJ05fCUAGZqeP4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "self", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 53 + }, + { + "__id__": 56 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 52 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 160 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 401.315, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f9022ff6-96af-4763-abe4-c047e8ef4a41" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3amg6TgxNC/qL27UybrXKF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang", + "_objFlags": 0, + "_parent": { + "__id__": 52 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 57 + } + ], + "_prefab": { + "__id__": 58 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 396.703, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 56 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2b141f2-de71-4481-b9ee-440c893c28b3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60Vx6g9n5MdaJXO6R2T4V+", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7bMimv7P5EUoyUq+Y+wsQt", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "avatar", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 61 + } + ], + "_active": true, + "_components": [ + { + "__id__": 136 + } + ], + "_prefab": { + "__id__": 137 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 820, + "height": 500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -178.917, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "_parent": { + "__id__": 60 + }, + "_children": [ + { + "__id__": 62 + } + ], + "_active": true, + "_components": [ + { + "__id__": 134 + } + ], + "_prefab": { + "__id__": 135 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 820, + "height": 500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "_parent": { + "__id__": 61 + }, + "_children": [ + { + "__id__": 63 + }, + { + "__id__": 81 + }, + { + "__id__": 94 + }, + { + "__id__": 107 + }, + { + "__id__": 120 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 133 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 820, + "height": 500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -6.395, + 251.54, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [ + { + "__id__": 64 + }, + { + "__id__": 67 + }, + { + "__id__": 73 + } + ], + "_active": true, + "_components": [ + { + "__id__": 78 + } + ], + "_prefab": { + "__id__": 80 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -300, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 65 + } + ], + "_prefab": { + "__id__": 66 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 64 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f9022ff6-96af-4763-abe4-c047e8ef4a41" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "06sgNz2txAzqDeWIohVB5k", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [ + { + "__id__": 68 + } + ], + "_active": false, + "_components": [ + { + "__id__": 71 + } + ], + "_prefab": { + "__id__": 72 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 67 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 70 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 68 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5almYnq3FIILdFHS4fooiq", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 67 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fbRsWYr21A2pE6bHTmcbpr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 74 + }, + { + "__id__": 75 + } + ], + "_prefab": { + "__id__": 77 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60.76, + 62.496, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 73 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "24dfd852-5bc5-4582-9483-f1ba90dae78d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 73 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 76 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 73 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "getSelfAvatar", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "23k1pg+yVB2ZqUglAQsXlL", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 63 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 79 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 63 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeAvatar", + "customEventData": "icon" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "70F8AfoyJGurNY7gvQnlt5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [ + { + "__id__": 82 + }, + { + "__id__": 85 + } + ], + "_active": true, + "_components": [ + { + "__id__": 91 + } + ], + "_prefab": { + "__id__": 93 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -100, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon_0", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1.11111 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ba781d2e-4d85-401b-a392-72237c02b0e5" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f3fK9m9FtCvYnjbIL5KMVz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [ + { + "__id__": 86 + } + ], + "_active": false, + "_components": [ + { + "__id__": 89 + } + ], + "_prefab": { + "__id__": 90 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 85 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 87 + } + ], + "_prefab": { + "__id__": 88 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6f4OwfHnFNuLDWr4Bh8SGh", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6d2NfsdjBG0br2ssj08XCb", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 81 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 92 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 81 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeAvatar", + "customEventData": "icon_0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "62be4OljhGOYcUUARWf6Xy", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [ + { + "__id__": 95 + }, + { + "__id__": 98 + } + ], + "_active": true, + "_components": [ + { + "__id__": 104 + } + ], + "_prefab": { + "__id__": 106 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 100, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon_1", + "_objFlags": 0, + "_parent": { + "__id__": 94 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 96 + } + ], + "_prefab": { + "__id__": 97 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1.11111 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 95 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a10b3eca-6801-4c7d-9102-b2a50ed87c44" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2a//9uoEhFOJwTFlqKXGt6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 94 + }, + "_children": [ + { + "__id__": 99 + } + ], + "_active": false, + "_components": [ + { + "__id__": 102 + } + ], + "_prefab": { + "__id__": 103 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 98 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 101 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 99 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0bdufQLRtKVogFugw7BOsx", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 98 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f3rKKP0ARORIN4I2UKADi0", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 94 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 105 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 94 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeAvatar", + "customEventData": "icon_1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8908yk1RRGcojRldYYxWpu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [ + { + "__id__": 108 + }, + { + "__id__": 111 + } + ], + "_active": true, + "_components": [ + { + "__id__": 117 + } + ], + "_prefab": { + "__id__": 119 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 300, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon_2", + "_objFlags": 0, + "_parent": { + "__id__": 107 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 109 + } + ], + "_prefab": { + "__id__": 110 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1.11111 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 108 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "cc395abb-94dd-443a-9d20-72d09c605744" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d33gMSjPlE1Jl8l2eN9d8O", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 107 + }, + "_children": [ + { + "__id__": 112 + } + ], + "_active": false, + "_components": [ + { + "__id__": 115 + } + ], + "_prefab": { + "__id__": 116 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 111 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 113 + } + ], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 112 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "08KpdzZ5NFGbEjz670bkWc", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 111 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3evVazvm9IxoQFE3tV9lND", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 107 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 118 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 107 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeAvatar", + "customEventData": "icon_2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "95hOkf6SBHfImvAv/9SXZ8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [ + { + "__id__": 121 + }, + { + "__id__": 124 + } + ], + "_active": true, + "_components": [ + { + "__id__": 130 + } + ], + "_prefab": { + "__id__": 132 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -300, + -300, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon_3", + "_objFlags": 0, + "_parent": { + "__id__": 120 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 122 + } + ], + "_prefab": { + "__id__": 123 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 121 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "475155fc-1a6a-411c-b378-60475e192018" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "13U01ISDBJponqRoF2yzlH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 120 + }, + "_children": [ + { + "__id__": 125 + } + ], + "_active": false, + "_components": [ + { + "__id__": 128 + } + ], + "_prefab": { + "__id__": 129 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 124 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 126 + } + ], + "_prefab": { + "__id__": 127 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 125 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "73L1Z0T/RNVJ1ajxUUhykp", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 124 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1dy3ZwgwtHQ7422yc0Bia8", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 120 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 131 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 120 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeAvatar", + "customEventData": "icon_3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "67XumOPDVLiIrqFPcWZbJy", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "14zckBnJNObLp4BBxAVKBO", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 61 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0, + "_N$inverted": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d2h8IJCfNPy6lcYAqvlSNc", + "sync": false + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 60 + }, + "_enabled": true, + "horizontal": false, + "vertical": true, + "inertia": true, + "brake": 0.75, + "elastic": true, + "bounceDuration": 0.23, + "scrollEvents": [], + "cancelInnerEvents": true, + "_N$content": { + "__id__": 62 + }, + "content": { + "__id__": 62 + }, + "_N$horizontalScrollBar": null, + "_N$verticalScrollBar": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "013j7d86BDdL7c6JJmsmNm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "avatarKuang", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 139 + } + ], + "_active": false, + "_components": [ + { + "__id__": 222 + } + ], + "_prefab": { + "__id__": 223 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 820, + "height": 500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -178.917, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "_parent": { + "__id__": 138 + }, + "_children": [ + { + "__id__": 140 + } + ], + "_active": true, + "_components": [ + { + "__id__": 220 + } + ], + "_prefab": { + "__id__": 221 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 820, + "height": 500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "_parent": { + "__id__": 139 + }, + "_children": [ + { + "__id__": 141 + }, + { + "__id__": 154 + }, + { + "__id__": 167 + }, + { + "__id__": 180 + }, + { + "__id__": 193 + }, + { + "__id__": 206 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 219 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 820, + "height": 500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -6.395, + 251.54, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang_1", + "_objFlags": 0, + "_parent": { + "__id__": 140 + }, + "_children": [ + { + "__id__": 142 + }, + { + "__id__": 145 + } + ], + "_active": true, + "_components": [ + { + "__id__": 151 + } + ], + "_prefab": { + "__id__": 153 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -300, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang_1", + "_objFlags": 0, + "_parent": { + "__id__": 141 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 143 + } + ], + "_prefab": { + "__id__": 144 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 142 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2b141f2-de71-4481-b9ee-440c893c28b3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "20u7UoJJtD1qL3PTTLEssU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 141 + }, + "_children": [ + { + "__id__": 146 + } + ], + "_active": false, + "_components": [ + { + "__id__": 149 + } + ], + "_prefab": { + "__id__": 150 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 145 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 147 + } + ], + "_prefab": { + "__id__": 148 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 146 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "54ndMpZc5BDJrc0Q6HsxYB", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 145 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "32ZM5RTvRAc4LSqAtTvqnn", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 141 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 152 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 141 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeKuang", + "customEventData": "kuang_1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ecW+lZMmlAT74wXmu5cIvq", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang_2", + "_objFlags": 0, + "_parent": { + "__id__": 140 + }, + "_children": [ + { + "__id__": 155 + }, + { + "__id__": 158 + } + ], + "_active": true, + "_components": [ + { + "__id__": 164 + } + ], + "_prefab": { + "__id__": 166 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -100, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang_2", + "_objFlags": 0, + "_parent": { + "__id__": 154 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 156 + } + ], + "_prefab": { + "__id__": 157 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1.11111 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 155 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e47a43c7-9516-4eb2-bdf7-945a3c832bcd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aaJmiu0IFH67Y7eyKckxOA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 154 + }, + "_children": [ + { + "__id__": 159 + } + ], + "_active": false, + "_components": [ + { + "__id__": 162 + } + ], + "_prefab": { + "__id__": 163 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 158 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 160 + } + ], + "_prefab": { + "__id__": 161 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 159 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "37e7uMnPFOUpxWYnzwCxmm", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 158 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b2bqTAKTdBCbzSUjF1ql5B", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 154 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 165 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 154 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeKuang", + "customEventData": "kuang_2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "831Ob3dUJPZIrm8+cpvikj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang_3", + "_objFlags": 0, + "_parent": { + "__id__": 140 + }, + "_children": [ + { + "__id__": 168 + }, + { + "__id__": 171 + } + ], + "_active": true, + "_components": [ + { + "__id__": 177 + } + ], + "_prefab": { + "__id__": 179 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 100, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang_3", + "_objFlags": 0, + "_parent": { + "__id__": 167 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 169 + } + ], + "_prefab": { + "__id__": 170 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1.11111 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 168 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "806030dc-9927-4a12-9cf8-f820e07075c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "232OgPoZNAJJzJ1Ip1ruKk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 167 + }, + "_children": [ + { + "__id__": 172 + } + ], + "_active": false, + "_components": [ + { + "__id__": 175 + } + ], + "_prefab": { + "__id__": 176 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 171 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 173 + } + ], + "_prefab": { + "__id__": 174 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 172 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "61tW4UDFtJ8oLqpZ6yvQ7C", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 171 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e923lMDY5KjrsV9IGyy5Ly", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 167 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 178 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 167 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeKuang", + "customEventData": "kuang_3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "394fr3bbBLY6fttG8NQFom", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang_4", + "_objFlags": 0, + "_parent": { + "__id__": 140 + }, + "_children": [ + { + "__id__": 181 + }, + { + "__id__": 184 + } + ], + "_active": true, + "_components": [ + { + "__id__": 190 + } + ], + "_prefab": { + "__id__": 192 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 300, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang_4", + "_objFlags": 0, + "_parent": { + "__id__": 180 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 182 + } + ], + "_prefab": { + "__id__": 183 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1.11111 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 181 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b88e8157-48ca-442a-8d86-94614138292f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d4yy4bRZFI/Ihr0qGPmt+W", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 180 + }, + "_children": [ + { + "__id__": 185 + } + ], + "_active": false, + "_components": [ + { + "__id__": 188 + } + ], + "_prefab": { + "__id__": 189 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 184 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 186 + } + ], + "_prefab": { + "__id__": 187 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 185 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f4sFGpoWtLCZzd24eVbi2A", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 184 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8eieiRiiZOcpqhZ/DsHt1x", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 180 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 191 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 180 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeKuang", + "customEventData": "kuang_4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "78k1nyC3JKI41zrZzq4uqD", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang_5", + "_objFlags": 0, + "_parent": { + "__id__": 140 + }, + "_children": [ + { + "__id__": 194 + }, + { + "__id__": 197 + } + ], + "_active": true, + "_components": [ + { + "__id__": 203 + } + ], + "_prefab": { + "__id__": 205 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -300, + -300, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang_5", + "_objFlags": 0, + "_parent": { + "__id__": 193 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 195 + } + ], + "_prefab": { + "__id__": 196 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 194 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "07e0a54f-1d33-4126-bf71-10765a98f87d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "18X+kaNu5HOoAgJGmp6nPo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 193 + }, + "_children": [ + { + "__id__": 198 + } + ], + "_active": false, + "_components": [ + { + "__id__": 201 + } + ], + "_prefab": { + "__id__": 202 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 197 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 199 + } + ], + "_prefab": { + "__id__": 200 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 198 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fdpMFSR9FFFIkz1+XJGSev", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 197 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "41GuPwothDrJD9UgwzNPTw", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 193 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 204 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 193 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeKuang", + "customEventData": "kuang_5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a2CQ3SMNNAN5mMk0JBDv+q", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang_6", + "_objFlags": 0, + "_parent": { + "__id__": 140 + }, + "_children": [ + { + "__id__": 207 + }, + { + "__id__": 210 + } + ], + "_active": true, + "_components": [ + { + "__id__": 216 + } + ], + "_prefab": { + "__id__": 218 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -100, + -300, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "kuang_6", + "_objFlags": 0, + "_parent": { + "__id__": 206 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 208 + } + ], + "_prefab": { + "__id__": 209 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.39, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 207 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a63b4ac3-7374-42a7-99ab-3ea2417b2285" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ae9OmkGeFDK51QrODwn0qf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "select", + "_objFlags": 0, + "_parent": { + "__id__": 206 + }, + "_children": [ + { + "__id__": 211 + } + ], + "_active": false, + "_components": [ + { + "__id__": 214 + } + ], + "_prefab": { + "__id__": 215 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 176, + "height": 176 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 5.6, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 210 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 212 + } + ], + "_prefab": { + "__id__": 213 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 211 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7453479c-fcfb-4019-b1a9-c81ca044b911" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0ePHyTbJpHkrnV0VIZFD8g", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 210 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "949ab4be-d9b5-4dda-a22c-26b8356d1324" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d0tauLJkxB0pW0vtu9nL57", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 206 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.05, + "clickEvents": [ + { + "__id__": 217 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 206 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "changeKuang", + "customEventData": "kuang_6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e4TL6bh6FEwJUOhpe1Ww1l", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1edLUFHW9FcptjGZ2ya5U6", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 139 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0, + "_N$inverted": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4dqQAtr1dEubJs5tW09knK", + "sync": false + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 138 + }, + "_enabled": true, + "horizontal": false, + "vertical": true, + "inertia": true, + "brake": 0.75, + "elastic": true, + "bounceDuration": 0.23, + "scrollEvents": [], + "cancelInnerEvents": true, + "_N$content": { + "__id__": 140 + }, + "content": { + "__id__": 140 + }, + "_N$horizontalScrollBar": null, + "_N$verticalScrollBar": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b9Kaet/HpAGoAjqETdtxrg", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 225 + } + ], + "_active": true, + "_components": [ + { + "__id__": 227 + }, + { + "__id__": 228 + } + ], + "_prefab": { + "__id__": 230 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 65, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 430.172, + 600.409, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Node", + "_objFlags": 0, + "_parent": { + "__id__": 224 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 226 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3aGZvj9UtHqJmyuZ5zZCvK", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 224 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "038fff06-85e5-43ae-bebd-256065906c4e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 224 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 229 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 225 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "7589aoelbpHs5EJQkTTKE6y", + "handler": "closeAvatar", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3fqj8K0SdPhJlgsOrZFVln", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "7589aoelbpHs5EJQkTTKE6y", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "content": { + "__id__": 62 + }, + "content2": { + "__id__": 140 + }, + "ui": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/action_bundle/prefab/Avatar.prefab.meta b/assets/action_bundle/prefab/Avatar.prefab.meta new file mode 100644 index 0000000..d7baa73 --- /dev/null +++ b/assets/action_bundle/prefab/Avatar.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "c321b3e4-36ff-4428-b854-a2bc772e884f", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/prefab/dailyQuests.prefab b/assets/action_bundle/prefab/dailyQuests.prefab new file mode 100644 index 0000000..3a5e8da --- /dev/null +++ b/assets/action_bundle/prefab/dailyQuests.prefab @@ -0,0 +1,10327 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "dailyQuests", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 10 + }, + { + "__id__": 13 + }, + { + "__id__": 16 + }, + { + "__id__": 19 + }, + { + "__id__": 22 + }, + { + "__id__": 222 + }, + { + "__id__": 227 + }, + { + "__id__": 230 + }, + { + "__id__": 235 + }, + { + "__id__": 238 + }, + { + "__id__": 251 + } + ], + "_active": true, + "_components": [ + { + "__id__": 275 + }, + { + "__id__": 276 + } + ], + "_prefab": { + "__id__": 277 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "ditu", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 200, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "65iaLUSnxHHabVNn/FKr5X", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 3.907, + -81.331, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c96690e3-59f1-4716-8231-cc6be2dd86e0" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7974Woum1BCbWJpTItd4sR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 879, + "height": 876 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -31.919, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "35bf5f97-fef6-42d8-8094-2887a2c3b033" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "347cvTuHpDya6nxGlo6quY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 15 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 128, + "g": 47, + "b": 14, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 222.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 451.23, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "每日0点刷新", + "_N$string": "每日0点刷新", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b0KyGswpdIeoTWorQ5IlTU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tanchuang3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 17 + } + ], + "_prefab": { + "__id__": 18 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 574.394, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 16 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "908ceb88-d23e-44b4-acbb-c6196ea73166" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "53aNOOUdJAdLdk3DfH9F9J", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "dayTitle", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 258, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 585.046, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9aff6d7a-201e-4691-a99e-6f033ebf1a42" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "136pumlF9N8JS3+3xwGuqH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New ScrollView", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 23 + } + ], + "_active": true, + "_components": [ + { + "__id__": 220 + } + ], + "_prefab": { + "__id__": 221 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 870, + "height": 870 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 403.961, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [ + { + "__id__": 24 + } + ], + "_active": true, + "_components": [ + { + "__id__": 218 + } + ], + "_prefab": { + "__id__": 219 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 870, + "height": 870 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "_parent": { + "__id__": 23 + }, + "_children": [ + { + "__id__": 25 + }, + { + "__id__": 81 + }, + { + "__id__": 119 + }, + { + "__id__": 175 + } + ], + "_active": true, + "_components": [ + { + "__id__": 216 + } + ], + "_prefab": { + "__id__": 217 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 870, + "height": 1258 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "levelPass", + "_objFlags": 0, + "_parent": { + "__id__": 24 + }, + "_children": [ + { + "__id__": 26 + }, + { + "__id__": 29 + }, + { + "__id__": 34 + }, + { + "__id__": 39 + }, + { + "__id__": 42 + }, + { + "__id__": 44 + }, + { + "__id__": 47 + }, + { + "__id__": 49 + }, + { + "__id__": 58 + }, + { + "__id__": 73 + }, + { + "__id__": 76 + } + ], + "_active": true, + "_components": [ + { + "__id__": 79 + } + ], + "_prefab": { + "__id__": 80 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 834, + "height": 277 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -168.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 80, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -324.73, + -26.908, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8c511e4a-7f66-449d-beec-75fe45e159dd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8emZKzpRpGQrYBxU6WTE8O", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "jump", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 234.767, + -62.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0c60f4d2-464a-44be-9cda-689b17043553" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 32 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 29 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "clickBtn", + "customEventData": "levelPass" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f3CG4UYmhE2oB4ZygYTVF+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "get", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 35 + }, + { + "__id__": 36 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 234.767, + -62.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "414ac329-666b-484c-825e-8feb0c0d4170" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 37 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 34 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "getReward", + "customEventData": "levelPass" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b4KCnJctxGZo63Ijx4aGL4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 40 + } + ], + "_prefab": { + "__id__": 41 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 186, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -270, + 83.388, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 39 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8dbc1b65-1250-48db-9b75-412f44edd6b9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8buEdiertH/IHDTXRMphw0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "target", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 43 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 275.982, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b5n4rCPUNMT7HF8dcFkzpX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 45 + } + ], + "_prefab": { + "__id__": 46 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 31, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 316.978, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b534af29-fa28-4c73-903e-29dbc62c719f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dbZcBUhatNupRobiu4+MsW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "total", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 330.136, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ddKz1XaJxO5KCj3BoOvKQ6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "dailyQuests5", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [ + { + "__id__": 50 + }, + { + "__id__": 53 + } + ], + "_active": true, + "_components": [ + { + "__id__": 56 + } + ], + "_prefab": { + "__id__": 57 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 106, + "height": 106 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -222, + -59.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -14.028, + -48.432, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e2A1SZvTdGsbSV6pd+cAsl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 16.701, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "91GyMZAphAoqoVVIo7sHBX", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f233562b-b0bf-4340-adbe-c52b22e3157d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "10l5Rr/sNGra7Tn4ctxrNs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "dailyQuests1", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [ + { + "__id__": 59 + }, + { + "__id__": 62 + }, + { + "__id__": 65 + }, + { + "__id__": 68 + } + ], + "_active": true, + "_components": [ + { + "__id__": 71 + } + ], + "_prefab": { + "__id__": 72 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 106, + "height": 106 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -109.154, + -58.621, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 61 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -14.028, + -48.432, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 59 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "52Ic/RykRHdY7GcVZPc0rI", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 16.701, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "00LbAPtHdHhrh4ekbwlBBb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 42.581, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28Osn7SZ9OOLRoaYV+r+5u", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 58 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 70 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 77.573, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 68 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bdVGDWi2JP/4wxmaFGZFT/", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 58 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ee22ad0e-4e0c-4e92-8fb2-ba79bfecc598" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6eQdGRAntF84Hvnj6tj8q+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 75 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 768, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 29.814, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 73 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ccfdaade-8f72-4636-8774-07ac95ec8817" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6621kziZpC4qDZdVxfX+Is", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "progress", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 77 + } + ], + "_prefab": { + "__id__": 78 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 768, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 29.814, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "170d9827-4e52-4c49-aeaa-4d2f54d3aa65" + }, + "_type": 3, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "96Udu90dFBMZSPw5iOAu2s", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9443a1fd-81dd-4cc3-8904-c466d142aada" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3VFQJLs9ISrvGUsn8Ddc/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "share", + "_objFlags": 0, + "_parent": { + "__id__": 24 + }, + "_children": [ + { + "__id__": 82 + }, + { + "__id__": 85 + }, + { + "__id__": 90 + }, + { + "__id__": 95 + }, + { + "__id__": 98 + }, + { + "__id__": 100 + }, + { + "__id__": 103 + }, + { + "__id__": 105 + }, + { + "__id__": 111 + }, + { + "__id__": 114 + } + ], + "_active": true, + "_components": [ + { + "__id__": 117 + } + ], + "_prefab": { + "__id__": 118 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 834, + "height": 277 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -475.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 80, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -324.73, + -26.908, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8c511e4a-7f66-449d-beec-75fe45e159dd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "27x3JfYiNG3YkOXPw6MQN8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "jump", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 86 + }, + { + "__id__": 87 + } + ], + "_prefab": { + "__id__": 89 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 234.767, + -62.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0c60f4d2-464a-44be-9cda-689b17043553" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 88 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 85 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "clickBtn", + "customEventData": "share" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3vCd/tv1JlacY9y24Aqqn", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "get", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 91 + }, + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 94 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 234.767, + -62.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "414ac329-666b-484c-825e-8feb0c0d4170" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 93 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 90 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "getReward", + "customEventData": "share" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "68X6tJsWVIWJ1rWLW4Ds8M", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 96 + } + ], + "_prefab": { + "__id__": 97 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 379, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -171.61, + 83.388, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 95 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "56df0374-c70d-4550-8bbf-490e4cf3821e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f1RrRCzvFJqIyEIy807VDS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "target", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 99 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 273.218, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50rP8Cv+FHqKu/o5SoBSHg", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 101 + } + ], + "_prefab": { + "__id__": 102 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 31, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 314.214, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 100 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b534af29-fa28-4c73-903e-29dbc62c719f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dbSFZGJpFAb7kSPkmM3ELp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "total", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 104 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 327.372, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b2RyFdEPlA5oiZl6GxUTz8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "dailyQuests5", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [ + { + "__id__": 106 + } + ], + "_active": true, + "_components": [ + { + "__id__": 109 + } + ], + "_prefab": { + "__id__": 110 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 106, + "height": 106 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -222, + -59.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "15", + "_objFlags": 0, + "_parent": { + "__id__": 105 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 107 + } + ], + "_prefab": { + "__id__": 108 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 162, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 107.807, + -40.442, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 106 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1309d8bc-0517-4f6a-a961-b14a72288062" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "958rvoQ4dBFou5UGcfygmh", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "48dbc128-13f7-471a-a97f-da8a0de98e2e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7aVNqDPdNMKrJcLUlR/L/G", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 112 + } + ], + "_prefab": { + "__id__": 113 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 768, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 29.814, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 111 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ccfdaade-8f72-4636-8774-07ac95ec8817" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d4WKt6CD1ARL39Q9lQ2bWa", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "progress", + "_objFlags": 0, + "_parent": { + "__id__": 81 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 115 + } + ], + "_prefab": { + "__id__": 116 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 768, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 29.814, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 114 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "170d9827-4e52-4c49-aeaa-4d2f54d3aa65" + }, + "_type": 3, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "73Iw5Ztt5Ejr9uLwiWOgRh", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 81 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9443a1fd-81dd-4cc3-8904-c466d142aada" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "68wAD+H+JKZLvKVdmHFGbY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "useEnergy", + "_objFlags": 0, + "_parent": { + "__id__": 24 + }, + "_children": [ + { + "__id__": 120 + }, + { + "__id__": 123 + }, + { + "__id__": 128 + }, + { + "__id__": 133 + }, + { + "__id__": 136 + }, + { + "__id__": 138 + }, + { + "__id__": 141 + }, + { + "__id__": 143 + }, + { + "__id__": 152 + }, + { + "__id__": 167 + }, + { + "__id__": 170 + } + ], + "_active": true, + "_components": [ + { + "__id__": 173 + } + ], + "_prefab": { + "__id__": 174 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 834, + "height": 277 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -782.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 121 + } + ], + "_prefab": { + "__id__": 122 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 80, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -324.73, + -26.908, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 120 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8c511e4a-7f66-449d-beec-75fe45e159dd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "43fN/IoB5Jo5CUH5v6aqF8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "jump", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 124 + }, + { + "__id__": 125 + } + ], + "_prefab": { + "__id__": 127 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 234.767, + -62.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0c60f4d2-464a-44be-9cda-689b17043553" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 126 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 123 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "clickBtn", + "customEventData": "useEnergy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9e1gSXAIpBMYJ3gaemfK9I", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "get", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 129 + }, + { + "__id__": 130 + } + ], + "_prefab": { + "__id__": 132 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 234.767, + -62.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 128 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "414ac329-666b-484c-825e-8feb0c0d4170" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 128 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 131 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 128 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "getReward", + "customEventData": "useEnergy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d0CnmgKBVHBobEWz/tgPXO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 134 + } + ], + "_prefab": { + "__id__": 135 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 184, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -265.369, + 83.388, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 133 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "751060b7-8139-426e-af56-245f0911ab34" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "55Me4I3PtBPpis9Qbpz8gV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "target", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 137 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 205.562, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "39y014j2pAdbm3bzf3zLlw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 139 + } + ], + "_prefab": { + "__id__": 140 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 31, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 266.558, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 138 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b534af29-fa28-4c73-903e-29dbc62c719f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "21AdAfVe5HcoP33iTLat+7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "total", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 142 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 298.716, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "714YF7JAxAk75h53ZasyK6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "dailyQuests5", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [ + { + "__id__": 144 + }, + { + "__id__": 147 + } + ], + "_active": true, + "_components": [ + { + "__id__": 150 + } + ], + "_prefab": { + "__id__": 151 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 106, + "height": 106 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -222, + -59.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 143 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 145 + } + ], + "_prefab": { + "__id__": 146 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -14.028, + -48.432, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 144 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "226uVogGVGEZ5DrIQA+txN", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 143 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 148 + } + ], + "_prefab": { + "__id__": 149 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 16.701, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 147 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bb4cMTtH5Pya4ltwzcvBCq", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 143 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a01b7b8b-d12f-4a2c-ab1d-684c5618120b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "deJvCOysFPNIJMRnJZdF76", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "dailyQuests1", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [ + { + "__id__": 153 + }, + { + "__id__": 156 + }, + { + "__id__": 159 + }, + { + "__id__": 162 + } + ], + "_active": true, + "_components": [ + { + "__id__": 165 + } + ], + "_prefab": { + "__id__": 166 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 106, + "height": 106 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -109.154, + -58.621, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 152 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 154 + } + ], + "_prefab": { + "__id__": 155 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -14.028, + -48.432, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 153 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "27bM0425xPQZk46lukARkp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 152 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 157 + } + ], + "_prefab": { + "__id__": 158 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 16.701, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 156 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "adifx0rNhHerxal9/PQrKT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 152 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 160 + } + ], + "_prefab": { + "__id__": 161 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 42.581, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 159 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fcodG+209Dd6QXZIT7IX5o", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 152 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 163 + } + ], + "_prefab": { + "__id__": 164 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 77.573, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 162 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "97SbN2hBJC0b8P9tVdL6yb", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 152 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ee22ad0e-4e0c-4e92-8fb2-ba79bfecc598" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7azd29BdRLWJiW94xTx//8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 168 + } + ], + "_prefab": { + "__id__": 169 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 768, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 29.814, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 167 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ccfdaade-8f72-4636-8774-07ac95ec8817" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "20u05XfJhEUpzgsDQls8pG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "progress", + "_objFlags": 0, + "_parent": { + "__id__": 119 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 171 + } + ], + "_prefab": { + "__id__": 172 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 768, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 29.814, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 170 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "170d9827-4e52-4c49-aeaa-4d2f54d3aa65" + }, + "_type": 3, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6fvwv/W7FPwKlrxXzkjrED", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 119 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9443a1fd-81dd-4cc3-8904-c466d142aada" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cf1X4Sb4xKbYsJv1Gn3ydT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "useProp", + "_objFlags": 0, + "_parent": { + "__id__": 24 + }, + "_children": [ + { + "__id__": 176 + }, + { + "__id__": 179 + }, + { + "__id__": 184 + }, + { + "__id__": 189 + }, + { + "__id__": 192 + }, + { + "__id__": 194 + }, + { + "__id__": 197 + }, + { + "__id__": 199 + }, + { + "__id__": 208 + }, + { + "__id__": 211 + } + ], + "_active": true, + "_components": [ + { + "__id__": 214 + } + ], + "_prefab": { + "__id__": 215 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 834, + "height": 277 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -1089.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 177 + } + ], + "_prefab": { + "__id__": 178 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 80, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -324.73, + -26.908, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 176 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8c511e4a-7f66-449d-beec-75fe45e159dd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3d6Zc5BEdNDLH1tIKXMmgG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "jump", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 180 + }, + { + "__id__": 181 + } + ], + "_prefab": { + "__id__": 183 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 234.767, + -62.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 179 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0c60f4d2-464a-44be-9cda-689b17043553" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 179 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 182 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 179 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "clickBtn", + "customEventData": "useProp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f2CFzEZG9BmoVO39Eqc95Y", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "get", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 185 + }, + { + "__id__": 186 + } + ], + "_prefab": { + "__id__": 188 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 294, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 234.767, + -62.026, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 184 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "414ac329-666b-484c-825e-8feb0c0d4170" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 184 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 187 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 184 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "getReward", + "customEventData": "useProp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8aWO1EsJlEnqauSEl3krme", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 190 + } + ], + "_prefab": { + "__id__": 191 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 187, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -259.704, + 83.388, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 189 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b71f0cef-3240-42c1-bd81-5da86e69dbd9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "75zobQbvZDD7X+YU8KgXaQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "target", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 193 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 275.982, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "75ZwqZRQlLOJ95lMUCMaV9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 195 + } + ], + "_prefab": { + "__id__": 196 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 31, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 316.978, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 194 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b534af29-fa28-4c73-903e-29dbc62c719f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "23bkPdNmxMHrz16wvjToAr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "total", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 198 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 330.136, + 83.388, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6bNIQ43s5GjYRwhXlb9XHz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "dailyQuests5", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [ + { + "__id__": 200 + }, + { + "__id__": 203 + } + ], + "_active": true, + "_components": [ + { + "__id__": 206 + } + ], + "_prefab": { + "__id__": 207 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 106, + "height": 106 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -222, + -59.77, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 199 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 201 + } + ], + "_prefab": { + "__id__": 202 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -14.028, + -48.432, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 200 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1e62IGIkpCnZZZxVxErbvr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 199 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 204 + } + ], + "_prefab": { + "__id__": 205 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 16.701, + -47.43, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 203 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d1oPwpjQhKMp4O2uHZJwLp", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 199 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a28d2aa6-472a-4371-a9a0-b5489ef0eada" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "62Xg8CgUxM0ruccPA4avXT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 209 + } + ], + "_prefab": { + "__id__": 210 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 768, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 29.814, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 208 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ccfdaade-8f72-4636-8774-07ac95ec8817" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fdyapUMMlDgYWEisRPDJkI", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "progress", + "_objFlags": 0, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 212 + } + ], + "_prefab": { + "__id__": 213 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 768, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 29.814, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 211 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "170d9827-4e52-4c49-aeaa-4d2f54d3aa65" + }, + "_type": 3, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c0jEgBYJxNQ5spJ3P/C+wL", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 175 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9443a1fd-81dd-4cc3-8904-c466d142aada" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7bBVnLbcFOcYK1WCeIB1e3", + "sync": false + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 870, + "height": 1258 + }, + "_resize": 1, + "_N$layoutType": 2, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$paddingLeft": 0, + "_N$paddingRight": 0, + "_N$paddingTop": 30, + "_N$paddingBottom": 30, + "_N$spacingX": 0, + "_N$spacingY": 30, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0, + "_N$affectedByScale": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4441Nwi29Oo4ASiXYkhZ6k", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 23 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0, + "_N$inverted": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d1Poi9EElEeLLt0c9RGbcf", + "sync": false + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "horizontal": false, + "vertical": true, + "inertia": true, + "brake": 0.75, + "elastic": true, + "bounceDuration": 0.23, + "scrollEvents": [], + "cancelInnerEvents": true, + "_N$content": { + "__id__": 24 + }, + "content": { + "__id__": 24 + }, + "_N$horizontalScrollBar": null, + "_N$verticalScrollBar": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "39r1yJrvdPFr0PQbE/HAp8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "LingQuBtn", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 223 + }, + { + "__id__": 224 + } + ], + "_prefab": { + "__id__": 226 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -30.356, + -591.353, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 222 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e58fcacb-1189-4c5c-a0c0-4d2ef8fe52ad" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 222 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 225 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 222 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "getAllReward", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "09jcaO8tFPSJ/KPZSCUaJ9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "xiaoren", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 228 + } + ], + "_prefab": { + "__id__": 229 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 131, + "height": 149 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -364.123, + 450.312, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 227 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "908c3c41-afef-41fc-a899-4631a0378445" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2e466cd1-95aa-4e3c-bb69-759c50404dd1" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e6JKKZ55pJzLAV+927Z30W", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 231 + }, + { + "__id__": 232 + } + ], + "_prefab": { + "__id__": 234 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 65, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 446.182, + 509.208, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 230 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "038fff06-85e5-43ae-bebd-256065906c4e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 230 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 233 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 230 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "85d4dxmxudMdYZYkFIP8dCp", + "handler": "closeDailyQuests", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d91kYJABJOQa83f1nwz6p7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "finishi", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 236 + } + ], + "_prefab": { + "__id__": 237 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 410, + "height": 124 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 235 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "117b1880-16c0-436c-9fc7-8b604a57b19d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9f6Wa5IHRDYJ9g6cAUYk9f", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Loading", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 239 + }, + { + "__id__": 243 + }, + { + "__id__": 246 + } + ], + "_active": false, + "_components": [ + { + "__id__": 249 + } + ], + "_prefab": { + "__id__": 250 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 238 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 240 + }, + { + "__id__": 241 + } + ], + "_prefab": { + "__id__": 242 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 239 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 239 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 238 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "load", + "_objFlags": 0, + "_parent": { + "__id__": 238 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 244 + } + ], + "_prefab": { + "__id__": 245 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 689, + "height": 656 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 243 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "794efc8c-624c-469f-84c0-24ce84022c54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 238 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "e0njfM7epDhL+otsGYSeCR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 238 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 247 + } + ], + "_prefab": { + "__id__": 248 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 246 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请稍后", + "_N$string": "请稍后", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 238 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 238 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 238 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "05q/aTGl5Lioy2OJNs5XYl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "ConfirmBox", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 252 + }, + { + "__id__": 256 + }, + { + "__id__": 259 + }, + { + "__id__": 262 + }, + { + "__id__": 265 + } + ], + "_active": false, + "_components": [ + { + "__id__": 273 + } + ], + "_prefab": { + "__id__": 274 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 251 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 253 + }, + { + "__id__": 254 + } + ], + "_prefab": { + "__id__": 255 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 252 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 252 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 251 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 251 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 257 + } + ], + "_prefab": { + "__id__": 258 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 256 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "71f0494c-f638-4d7a-a826-a9407bf2b27c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 251 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "eeHwB6Bq5CSbRJy0kYMgo0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_parent": { + "__id__": 251 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 260 + } + ], + "_prefab": { + "__id__": 261 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 330.904, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 259 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "月卡充值", + "_N$string": "月卡充值", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 251 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 251 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 263 + } + ], + "_prefab": { + "__id__": 264 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 195.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 89.865, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 262 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "网络异常\n请检查网络连接后\n再次领取", + "_N$string": "网络异常\n请检查网络连接后\n再次领取", + "_fontSize": 40, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 251 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "9149ix6q1AZ4VyIjmSGbdM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 251 + }, + "_children": [ + { + "__id__": 266 + } + ], + "_active": true, + "_components": [ + { + "__id__": 269 + }, + { + "__id__": 270 + } + ], + "_prefab": { + "__id__": 272 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.21, + -77.027, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 265 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 267 + } + ], + "_prefab": { + "__id__": 268 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 100.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 13.174, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 266 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "确定", + "_N$string": "确定", + "_fontSize": 80, + "_lineHeight": 80, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 251 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "1f0NO1uLNIxrx1dYb9rOaL", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 265 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d9be6eea-569b-46da-bb80-0d9c8b8f5263" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 265 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 271 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 265 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "eab69DkYBFAz6T+liogJXsz", + "handler": "againGet", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 251 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "58sKElg7lE9I935Fpq7n8Y", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 251 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 251 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "c59E21W4dAgZdQulz+5vqy", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "" + }, + { + "__type__": "85d4dxmxudMdYZYkFIP8dCp", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "content": { + "__id__": 24 + }, + "getBtn": { + "__id__": 222 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/action_bundle/prefab/dailyQuests.prefab.meta b/assets/action_bundle/prefab/dailyQuests.prefab.meta new file mode 100644 index 0000000..d401345 --- /dev/null +++ b/assets/action_bundle/prefab/dailyQuests.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "2d9e3cf1-b363-4876-bdb1-a301b993260c", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/prefab/newbieGift.prefab b/assets/action_bundle/prefab/newbieGift.prefab new file mode 100644 index 0000000..e501b50 --- /dev/null +++ b/assets/action_bundle/prefab/newbieGift.prefab @@ -0,0 +1,4290 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "newbieGift", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 10 + }, + { + "__id__": 15 + }, + { + "__id__": 18 + }, + { + "__id__": 27 + }, + { + "__id__": 36 + }, + { + "__id__": 45 + }, + { + "__id__": 48 + }, + { + "__id__": 51 + }, + { + "__id__": 54 + }, + { + "__id__": 59 + }, + { + "__id__": 62 + }, + { + "__id__": 65 + }, + { + "__id__": 68 + }, + { + "__id__": 71 + }, + { + "__id__": 74 + }, + { + "__id__": 77 + }, + { + "__id__": 90 + } + ], + "_active": true, + "_components": [ + { + "__id__": 114 + }, + { + "__id__": 115 + } + ], + "_prefab": { + "__id__": 116 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "ditu", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 200, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "65iaLUSnxHHabVNn/FKr5X", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "fangkuai", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 712, + "height": 912 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.103, + 118.713, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d2ab609e-95e6-4efe-a628-871f302730d2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7k3CiSQNOlZH83esFWivq", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 96, + "height": 102 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 329.002, + 577.235, + 0, + 0, + 0, + 0, + 1, + 1.1, + 1.1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "225f5c55-2992-4244-88ee-d6186f8099ec" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 13 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "eab69DkYBFAz6T+liogJXsz", + "handler": "closeStarter_pack", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9bh4mOTXtN3pJQ09DSsKox", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "double", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 211, + "height": 211 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -282.376, + 327.8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4df0b7a9-ae26-4420-87f7-332dcaadc354" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dfzTntYBxNIZyksyHTKAMx", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "propBg1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 19 + }, + { + "__id__": 22 + } + ], + "_active": true, + "_components": [ + { + "__id__": 25 + } + ], + "_prefab": { + "__id__": 26 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 238.225, + 229.97, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "chuizi", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 306, + "height": 316 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.435, + 3.538, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 0.4 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f383b277-ace5-445f-8863-a2c943b718f2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c8DyxR+4dGc5RMbQF7J43Z", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "prop5", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 73, + "height": 43 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.249, + -66.378, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2691a41c-d54e-4eb3-8b6b-5e336752e542" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "01mKgQLURE2LtPgBUKheMW", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7586472c-63d3-40cc-82d6-8052b3109aa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "30cCccc8JNL6qhtqTsV9K2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "propBg2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 28 + }, + { + "__id__": 31 + } + ], + "_active": true, + "_components": [ + { + "__id__": 34 + } + ], + "_prefab": { + "__id__": 35 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 326.675, + 49.532, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "iceb", + "_objFlags": 0, + "_parent": { + "__id__": 27 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 29 + } + ], + "_prefab": { + "__id__": 30 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 242, + "height": 294 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 4.192, + 1.052, + 0, + 0, + 0, + 0, + 1, + 0.45, + 0.45, + 0.45 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 28 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9b0584fc-efbf-4e13-b1c0-26d8d47c5971" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a9d6PNqCZOb4jl00UGRj0r", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "prop5", + "_objFlags": 0, + "_parent": { + "__id__": 27 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 73, + "height": 43 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 7.518, + -61.879, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 31 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2691a41c-d54e-4eb3-8b6b-5e336752e542" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "abOPWurxxNN4Nkd+C6w2eB", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7586472c-63d3-40cc-82d6-8052b3109aa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3R+SRuuRPGLIvDGK1tdUW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "propBg3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 37 + }, + { + "__id__": 40 + } + ], + "_active": true, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 224.073, + -127.368, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "starb", + "_objFlags": 0, + "_parent": { + "__id__": 36 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 286, + "height": 300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 3.182, + -7.335, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 0.4 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8b13964-f98b-455d-8833-39389969a45b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "04Hf1Gx11K/LVp+b4PAneM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "prop5", + "_objFlags": 0, + "_parent": { + "__id__": 36 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 41 + } + ], + "_prefab": { + "__id__": 42 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 73, + "height": 43 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 3.823, + -62.751, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 40 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2691a41c-d54e-4eb3-8b6b-5e336752e542" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "91W3MeJdNNVoaZLdcqSjq8", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7586472c-63d3-40cc-82d6-8052b3109aa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6algTZ2eVM1ISxTAFQWZhu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "timeBg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 172, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.595, + -272.805, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a0c93d5a-f639-4d84-a47e-a427c4cc593b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b57KP7QYBDrLnU9/ZUG04z", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "timeIcon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 49 + } + ], + "_prefab": { + "__id__": 50 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 48, + "height": 48 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -70.695, + -271.689, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 48 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "18d65e4a-9a87-4fdf-8fe5-e0334c8e6cd5" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8q5cadwhA4LnLQcOtztri", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.261, + -274.867, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5R9GArXVKRo8G/avfSJ72", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 55 + }, + { + "__id__": 56 + } + ], + "_prefab": { + "__id__": 58 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 1.095, + -478.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "89786947-942f-48c2-b97a-240a02af167e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f5f8c4fd-b672-46fe-85a4-79bd8b1b0eb9" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 57 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 54 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "eab69DkYBFAz6T+liogJXsz", + "handler": "buyProduct", + "customEventData": "starter_pack" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3cE5FGqrNPirX4p+FbPLJF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "gold_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 61 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 362.22, + "height": 111.27 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -53.224, + 214.34, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 59 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "d30ec525-71c7-430d-bdf6-053a4f682e6c" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60jUUjWChLQ6YCdDr8eWdT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "gold_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 361, + "height": 110 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -51.855, + 212.288, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "0a95c171-f3ba-466e-a146-9abea117bd06" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7edS4kBk1FsIegGMaRFhmX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "baoxiang", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 411.39, + "height": 372.32 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -92.061, + -13.094, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "f743f1be-be36-45be-9bd4-846e1b84e50e" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4egBgRhNRL/LT4ILLp/S1N", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "qipao1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 70 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 401, + "height": 402 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.245, + -105.29, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 68 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "2e4d1973-21a9-41b6-abbb-260192e7134d" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72XFxJ1khB1LT1DSQiGcJ9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "qipao2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 401, + "height": 402 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 330.211, + 67.9, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "2e4d1973-21a9-41b6-abbb-260192e7134d" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98qkthXupEvpsHNUVEQ0mc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "qipao3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 75 + } + ], + "_prefab": { + "__id__": 76 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 401, + "height": 402 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 244.991, + 254.836, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "2e4d1973-21a9-41b6-abbb-260192e7134d" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2do2Gbp+NN94pZccvQ0VlW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Loading", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 78 + }, + { + "__id__": 82 + }, + { + "__id__": 85 + } + ], + "_active": false, + "_components": [ + { + "__id__": 88 + } + ], + "_prefab": { + "__id__": 89 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 77 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 79 + }, + { + "__id__": 80 + } + ], + "_prefab": { + "__id__": 81 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 77 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "load", + "_objFlags": 0, + "_parent": { + "__id__": 77 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 689, + "height": 656 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "794efc8c-624c-469f-84c0-24ce84022c54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 77 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "e0njfM7epDhL+otsGYSeCR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 77 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请稍后", + "_N$string": "请稍后", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 77 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 77 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "05q/aTGl5Lioy2OJNs5XYl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "ConfirmBox", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 91 + }, + { + "__id__": 95 + }, + { + "__id__": 98 + }, + { + "__id__": 101 + }, + { + "__id__": 104 + } + ], + "_active": false, + "_components": [ + { + "__id__": 112 + } + ], + "_prefab": { + "__id__": 113 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 92 + }, + { + "__id__": 93 + } + ], + "_prefab": { + "__id__": 94 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 90 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 96 + } + ], + "_prefab": { + "__id__": 97 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 95 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "71f0494c-f638-4d7a-a826-a9407bf2b27c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 90 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "eeHwB6Bq5CSbRJy0kYMgo0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 99 + } + ], + "_prefab": { + "__id__": 100 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 330.904, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 98 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "月卡充值", + "_N$string": "月卡充值", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 90 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 102 + } + ], + "_prefab": { + "__id__": 103 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 195.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 89.865, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 101 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "网络异常\n请检查网络连接后\n再次领取", + "_N$string": "网络异常\n请检查网络连接后\n再次领取", + "_fontSize": 40, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 90 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "9149ix6q1AZ4VyIjmSGbdM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [ + { + "__id__": 105 + } + ], + "_active": true, + "_components": [ + { + "__id__": 108 + }, + { + "__id__": 109 + } + ], + "_prefab": { + "__id__": 111 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.21, + -77.027, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 104 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 100.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 13.174, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "确定", + "_N$string": "确定", + "_fontSize": 80, + "_lineHeight": 80, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 90 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "1f0NO1uLNIxrx1dYb9rOaL", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 104 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d9be6eea-569b-46da-bb80-0d9c8b8f5263" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 104 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 110 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 104 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "eab69DkYBFAz6T+liogJXsz", + "handler": "againGet", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 90 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "58sKElg7lE9I935Fpq7n8Y", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 90 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "c59E21W4dAgZdQulz+5vqy", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "" + }, + { + "__type__": "eab69DkYBFAz6T+liogJXsz", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "monthCardTime": null, + "monthCardBtn": null, + "monthCardBtn2": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/action_bundle/prefab/newbieGift.prefab.meta b/assets/action_bundle/prefab/newbieGift.prefab.meta new file mode 100644 index 0000000..dfd608a --- /dev/null +++ b/assets/action_bundle/prefab/newbieGift.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "6bce5f89-c348-4e0f-9335-29b5c8ad6a91", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/prefab/winStreak.prefab b/assets/action_bundle/prefab/winStreak.prefab new file mode 100644 index 0000000..7f2fedb --- /dev/null +++ b/assets/action_bundle/prefab/winStreak.prefab @@ -0,0 +1,3715 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "winStreak", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 10 + }, + { + "__id__": 13 + }, + { + "__id__": 16 + }, + { + "__id__": 19 + }, + { + "__id__": 21 + }, + { + "__id__": 26 + }, + { + "__id__": 58 + }, + { + "__id__": 63 + }, + { + "__id__": 76 + } + ], + "_active": true, + "_components": [ + { + "__id__": 100 + }, + { + "__id__": 101 + } + ], + "_prefab": { + "__id__": 102 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "ditu", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 200, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "65iaLUSnxHHabVNn/FKr5X", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 954, + "height": 1319 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -83.546, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d0aa980b-a3b8-4920-abfb-110bc2f92f56" + }, + "_type": 1, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7974Woum1BCbWJpTItd4sR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 986, + "height": 1372 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -83.546, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1d8afc6b-dedd-4f03-bd1b-bc2094a6fe76" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "beQh4XttJD+rKyRQCjCen0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 15 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 750, + "height": 222 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 541.741, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fc7a8427-2750-446c-be2e-407918e940d2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "635gVH/VdIoYCpEK6FhKJz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "10", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 17 + } + ], + "_prefab": { + "__id__": 18 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 78, + "height": 35 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 42.49, + -465.648, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 16 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "921be357-605d-4338-acf9-12c9121e25ab" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0f6+vi4m5CHLIUUpxS/3TT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "number", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 27, + "height": 31 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 5.007, + -466.175, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2bAQs++vRL9pAdVUkusvgm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 25 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 634, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -597.598, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e7cb0b83-8ca3-4c48-a251-233932b16e48" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 24 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "f0338i3botLypCyIZ7AKxqN", + "handler": "clickBtn", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "09kQpEGeZDqr8jDPwy2Dst", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "hammer", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 27 + }, + { + "__id__": 30 + }, + { + "__id__": 33 + }, + { + "__id__": 36 + }, + { + "__id__": 39 + }, + { + "__id__": 42 + }, + { + "__id__": 45 + }, + { + "__id__": 48 + }, + { + "__id__": 51 + }, + { + "__id__": 54 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 57 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -83.546, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 28 + } + ], + "_prefab": { + "__id__": 29 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -326.682, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4ezZsdqldJuJUsWRFi4bXY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -254.36, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 30 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e4Gm/9WPpFbotJeOs/ESa/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 34 + } + ], + "_prefab": { + "__id__": 35 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180.365, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d8RchARA5KmYsxJwF/22O+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -106.37, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e40R4aO7hCxJ+E6qqs8axS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 40 + } + ], + "_prefab": { + "__id__": 41 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -32.793, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 39 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "52GClyksNA54S4Ho3l84c5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 40.784, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7UEnyF7lEMLF2DW9Cgmn2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.197, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e9GF/alXxEqrf5kDiGis60", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 49 + } + ], + "_prefab": { + "__id__": 50 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 189.192, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 48 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c6DGdAcGNAapHaToKrAsmq", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 262.768, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "21wVbI+ltLDLFJ672HL9+p", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 56 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 158, + "height": 162 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 337.599, + -321.921, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2c1683f1-1669-4350-8248-7b246e34b534" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "61VH9hfC1LQrELWZMal01P", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7efY9sjxZJe4MKV5V+bhPQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btn1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 59 + }, + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 62 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 96, + "height": 102 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 469.736, + 560.641, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 58 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e3dce408-7c87-4dfe-a052-01ddc5bf0ad0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 58 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 61 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 58 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "f0338i3botLypCyIZ7AKxqN", + "handler": "closeWinStreak", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28rRxoU61MR5Ne45Zj+kgZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Loading", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 64 + }, + { + "__id__": 68 + }, + { + "__id__": 71 + } + ], + "_active": false, + "_components": [ + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 75 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 65 + }, + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 64 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 64 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "load", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 70 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 689, + "height": 656 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 68 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "794efc8c-624c-469f-84c0-24ce84022c54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "e0njfM7epDhL+otsGYSeCR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请稍后", + "_N$string": "请稍后", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 63 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "05q/aTGl5Lioy2OJNs5XYl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "ConfirmBox", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 77 + }, + { + "__id__": 81 + }, + { + "__id__": 84 + }, + { + "__id__": 87 + }, + { + "__id__": 90 + } + ], + "_active": false, + "_components": [ + { + "__id__": 98 + } + ], + "_prefab": { + "__id__": 99 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 78 + }, + { + "__id__": 79 + } + ], + "_prefab": { + "__id__": 80 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 76 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 82 + } + ], + "_prefab": { + "__id__": 83 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 81 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "71f0494c-f638-4d7a-a826-a9407bf2b27c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 76 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "eeHwB6Bq5CSbRJy0kYMgo0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 85 + } + ], + "_prefab": { + "__id__": 86 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 330.904, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 84 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "月卡充值", + "_N$string": "月卡充值", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 76 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 88 + } + ], + "_prefab": { + "__id__": 89 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 195.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 89.865, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 87 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "网络异常\n请检查网络连接后\n再次领取", + "_N$string": "网络异常\n请检查网络连接后\n再次领取", + "_fontSize": 40, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 76 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "9149ix6q1AZ4VyIjmSGbdM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [ + { + "__id__": 91 + } + ], + "_active": true, + "_components": [ + { + "__id__": 94 + }, + { + "__id__": 95 + } + ], + "_prefab": { + "__id__": 97 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.21, + -77.027, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 93 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 100.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 13.174, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "确定", + "_N$string": "确定", + "_fontSize": 80, + "_lineHeight": 80, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 76 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "1f0NO1uLNIxrx1dYb9rOaL", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d9be6eea-569b-46da-bb80-0d9c8b8f5263" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 96 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 90 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "eab69DkYBFAz6T+liogJXsz", + "handler": "againGet", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 76 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "58sKElg7lE9I935Fpq7n8Y", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 76 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "c59E21W4dAgZdQulz+5vqy", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "" + }, + { + "__type__": "f0338i3botLypCyIZ7AKxqN", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "fontUI": { + "__uuid__": "b8b8cd3e-361e-4c18-b7f8-cef7ae743d02" + }, + "content": null, + "getBtn": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/action_bundle/prefab/winStreak.prefab.meta b/assets/action_bundle/prefab/winStreak.prefab.meta new file mode 100644 index 0000000..3154eed --- /dev/null +++ b/assets/action_bundle/prefab/winStreak.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "aef6a950-9de0-464a-84a1-1efe22adecc8", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/script.meta b/assets/action_bundle/script.meta new file mode 100644 index 0000000..30703ee --- /dev/null +++ b/assets/action_bundle/script.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "fc4c1502-6940-44b1-b4af-1146c85a0111", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/script/DailyQuests.ts b/assets/action_bundle/script/DailyQuests.ts new file mode 100644 index 0000000..d779b53 --- /dev/null +++ b/assets/action_bundle/script/DailyQuests.ts @@ -0,0 +1,537 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html + +import JiaZai from "../../Script/JiaZai"; +import Utils from "../../Script/module/Pay/Utils"; +import NumberToImage from "../../Script/NumberToImage"; +import { MiniGameSdk } from "../../Script/Sdk/MiniGameSdk"; + +// import JiaZai from "./JiaZai"; +// import Utils from "./module/Pay/Utils"; +// import NumberToImage from "./NumberToImage"; +// import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class DailyQuests extends cc.Component { + + @property(cc.Node) + content: cc.Node = null; + //月卡按钮切换 + @property(cc.Node) + getBtn: cc.Node = null; + + public juwai = false; + btn_Touch: boolean = false; + + private iosPrice: number = 0; + private iosProductId: string = ""; + private iosCount: number = 1; + public home: number = 0; + public touchStart: boolean = false; + public reward: boolean = false; + + onLoad() { + this.btn_Touch = true; + // 检测微信小游戏切到后台 + this.home = 0; + } + + + + start() { + // this.init(); + } + init(data) { + cc.fx.GameConfig.GM_INFO.tasks.levelPass = data["levelPass"]; + cc.fx.GameConfig.GM_INFO.tasks.share = data["share"]; + cc.fx.GameConfig.GM_INFO.tasks.useEnergy = data["useEnergy"]; + cc.fx.GameConfig.GM_INFO.tasks.useProp = data["useProp"]; + this.touchStart = true; + this.reward = false; + // 一键领取按钮状态 + this.getBtn.active = false; + this.node.getChildByName("finishi").active = false; + // 通过关卡已经领取 + for (let i = this.content.children.length - 1; i >= 0; i--) { + const child = this.content.children[i]; + // 根据索引匹配不同任务类型 + if ( + (i === 0 && data.levelPass.state === 2) || + (i === 1 && data.share.state === 2) || + (i === 2 && data.useEnergy.state === 2) || + (i === 3 && data.useProp.state === 2) + ) { + child.removeFromParent(); + } + } + + // 对剩余节点进行排序 - state == 1的排在上面 + const children = this.content.children; + children.sort((a, b) => { + const aName = a.name; + const bName = b.name; + const aState = data[aName].state; + const bState = data[bName].state; + + // state == 1的排前面 + if (aState === 1 && bState !== 1) return -1; + if (aState !== 1 && bState === 1) return 1; + return 0; + }); + + // 重新设置节点顺序 + for (let i = 0; i < children.length; i++) { + children[i].setSiblingIndex(i); + } + + // 强制更新布局 + this.content.getComponent(cc.Layout).updateLayout(); + // 检查是否有未领取的任务 + if (this.content.children.length == 0) { + this.node.getChildByName("finishi").active = true; + } else { + for (let j = 0; j < this.content.children.length; j++) { + let child = this.content.children[j]; + child.getChildByName("progress").getComponent(cc.Sprite).fillRange = 0; + child.getChildByName("get").active = false; + child.getChildByName("jump").active = false; + let name = this.content.children[j].name; + if (data[name].value > data[name].target) { + data[name].value = data[name].target; + } + let progress = data[name].value / data[name].target; + if (data[name].state == 1 && progress == 1) { + child.getChildByName("get").active = true; + child.getChildByName("jump").active = false; + setTimeout(() => { + this.getBtn.active = true; + }, 0); + } + else if (data[name].state == 0) { + child.getChildByName("get").active = false; + child.getChildByName("jump").active = true; + } + let time = 0.3; + if (progress == 0) time = 0; + cc.tween(child.getChildByName("progress").getComponent(cc.Sprite)) + .delay(j * 0.1) + .to(time, { fillRange: progress }) + .start(); + NumberToImage.numberToImageNodes(data[name].value, 40, 15, "coin_", child.getChildByName("target"), false); + NumberToImage.numberToImageNodes(data[name].target, 40, 15, "coin_", child.getChildByName("total"), false); + } + } + + } + //入场动画 + setAction() { + this.node.getChildByName("gold_1").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + setTimeout(() => { + this.node.getChildByName("qipao3").active = true; + this.node.getChildByName("qipao3").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + cc.tween(this.node.getChildByName("propBg1")) + .delay(0.1) + .to(0.2, { opacity: 255 }) + .start(); + }, 400); + setTimeout(() => { + this.node.getChildByName("qipao2").active = true; + this.node.getChildByName("qipao2").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + cc.tween(this.node.getChildByName("propBg2")) + .delay(0.1) + .to(0.2, { opacity: 255 }) + .start(); + }, 600); + setTimeout(() => { + this.node.getChildByName("gold_2").active = true; + this.node.getChildByName("qipao1").active = true; + this.node.getChildByName("qipao1").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + cc.tween(this.node.getChildByName("propBg3")) + .delay(0.1) + .to(0.2, { opacity: 255 }) + .start(); + }, 800); + setTimeout(() => { + // this.node.getChildByName("gold_2").active = true; + this.node.getChildByName("baoxiang").active = true; + }, 1000); + } + + //购买月卡 + openReward(name, res) { + let data = null; + if (name == "levelPass") { + data = [ + { type: "coin", count: 100 }, + { type: "freeze", count: 2 } + ] + let data2 = { + id: 0, + status: "claim" + } + cc.fx.GameTool.shushu_Track("daily_task", data2); + } + else if (name == "useProp") { + data = [ + { type: "hammer", count: 1 } + ] + let data2 = { + id: 3, + status: "claim" + } + cc.fx.GameTool.shushu_Track("daily_task", data2); + } + else if (name == "useEnergy") { + data = [ + { type: "coin", count: 100 }, + { type: "magic", count: 1 } + ] + let data2 = { + id: 2, + status: "claim" + } + cc.fx.GameTool.shushu_Track("daily_task", data2); + } + else if (name == "share") { + data = [ + { type: "infinite_health", count: 900 }, + ] + let data2 = { + id: 1, + status: "claim" + } + cc.fx.GameTool.shushu_Track("daily_task", data2); + } + else if (name == "all") { + data = res; + } + console.log("获得任务奖励", data); + let shuju = { + "coin": 0, + "freeze": 0, + "hammer": 0, + "magic": 0, + "infinite_health": 0, + } + for (let i = 0; i < data.length; i++) { + let type = data[i].type; + let count = data[i].count; + shuju[type] += count; + } + let propData = { + "freeze": shuju.freeze || 0, + "hammer": shuju.hammer || 0, + "magic_wand": shuju.magic || 0, + "price": 0 + } + this.getShopProp(propData); + if (shuju.coin > 0) { + cc.fx.GameTool.changeCoin(shuju.coin); + } + if (shuju.infinite_health > 0) { + cc.fx.GameTool.setUserPowerTime(shuju.infinite_health); + } + + const canvasTemp = cc.find("Canvas"); // 假设 Canvas 节点 + if (canvasTemp) { + const JiaZai = canvasTemp.getComponent("JiaZai"); + if (JiaZai) { + JiaZai.openRewardWindow(data); + if (shuju.coin > 0) { + JiaZai.updateCoin(); + } + if (shuju.infinite_health > 0) { + JiaZai.updatePower(); + } + } + } + } + + setReward(id) { + } + + closeDailyQuests() { + this.node.active = false; + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + jiazaiComp.checkTasks(); + } + } + + openLoad() { + this.node.getChildByName("Loading").active = true; + this.node.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + } + + openConfirmBox() { + this.closeLoad(); + this.node.getChildByName("ConfirmBox").active = true; + } + closeConfirmBox() { + this.node.getChildByName("ConfirmBox").active = false; + } + + closeLoad() { + this.node.getChildByName("Loading").active = false; + } + + //点击去完成 + clickBtn(event, data) { + if (data == "useProp" || data == "levelPass" || "useEnergy" == data) { + this.closeDailyQuests(); + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + jiazaiComp.startGame(); + } + } + else if (data == "share") { + let iphoneArr = [ + "https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/0", + "https://mmocgame.qpic.cn/wechatgame/TWKuFxnCn7ksT3KXfhCC4yOfZeD4b0hrptDSJ2DFmwz02Yc8SppcwyPAOoS1MsMr/0", + "https://mmocgame.qpic.cn/wechatgame/dibaH2x79o1wSwBDymhyzXwfcyicaDb6R5icrFIO7251T4NgxIzXRXErHvAvn50vXFA/0", + "https://mmocgame.qpic.cn/wechatgame/Pgxad80d8ws3o69OicV3DTuTkcP81upQeJ0JBNS1xib3pzYLTF1ZqGY3niciaI7ICKlL/0", + "https://mmocgame.qpic.cn/wechatgame/SfB1vrRBIHKn9ffKFt5sib62yPLE31m2rCvk6DKlEicJNVZSoryEObD6ItwsQn4xibR/0", + "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0", + "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0" + ] + let randomIphone = iphoneArr[Math.floor(Math.random() * iphoneArr.length)]; + let img = randomIphone; + const shareParams = { + title: '如果你突然打了个喷嚏,那一定是我在等你帮忙过关!', // 分享标题 + imageUrl: img // 分享图片链接 + }; + // 调用微信分享 API + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + //@ts-ignore + wx.shareAppMessage(shareParams); + setTimeout(() => { + this.closeDailyQuests(); + }, 500); + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + console.log("分享出去了"); + if (cc.fx.GameConfig.GM_INFO.tasks.share.value < cc.fx.GameConfig.GM_INFO.tasks.share.target) { + cc.fx.GameConfig.GM_INFO.tasks.share.value += 1; + cc.fx.GameTool.setDailyQuestInfo((data) => { + if (data.code == 1) { + if (jiazaiComp) { + setTimeout(() => { + jiazaiComp.openDailyQuests(); + }, 1000); + } + } + }); + if (cc.fx.GameConfig.GM_INFO.tasks.share.value == cc.fx.GameConfig.GM_INFO.tasks.share.target) { + let data = { + id: 1, + status: "complete" + } + cc.fx.GameTool.shushu_Track("daily_task", data); + } + } + } + } + } + + getReward(event, data) { + if (this.touchStart == false) { + return; + } + this.touchStart = false; + this.reward = true; + let shuju = [data]; + Utils.getDailyQuestReward(shuju, (res) => { + this.touchStart = true; + this.reward = false; + if (res.code == 1) { + let dataNode = null; + for (let i = 0; i < this.content.children.length; i++) { + if (this.content.children[i].name === data) { + dataNode = this.content.children[i]; + break; + } + } + dataNode.getChildByName("get").active = false; + cc.tween(dataNode) + .to(0.4, { x: dataNode.x - 1000, opacity: 50 }) + .call(() => { + this.openReward(dataNode.name, null); + this.touchStart = true; + dataNode.removeFromParent(); + this.content.getComponent(cc.Layout).updateLayout(); + this.checkGetReward(); + }) + .start(); + } + else { + MiniGameSdk.API.showToast("网络异常,领取奖励失败"); + } + }) + setTimeout(() => { + if (this.reward == true && this.touchStart == false) { + this.touchStart = true; + } + }, 5000); + } + + getAllReward() { + if (this.touchStart == false) { + return; + } + this.touchStart = false; + this.reward = true; + let shuju = []; + for (let i = 0; i < this.content.children.length; i++) { + let dataNode = this.content.children[i]; + if (dataNode.getChildByName("get").active == true) { + shuju.push(dataNode.name); + } + } + console.log("准备上传的任务", shuju); + Utils.getDailyQuestReward(shuju, (res) => { + this.touchStart = true; + this.reward = false; + if (res.code == 1) { + let data = [ + { type: "coin", count: 0 }, + { type: "freeze", count: 0 }, + { type: "hammer", count: 0 }, + { type: "magic", count: 0 }, + { type: "infinite_health", count: 0 }, + ] + for (let i = 0; i < this.content.children.length; i++) { + let dataNode = this.content.children[i]; + if (dataNode.getChildByName("get").active == true) { + dataNode.getChildByName("get").active = false; + if (dataNode.name == "levelPass") { + data[0].count += 100; + data[1].count += 2; + let data2 = { + id: 0, + status: "claim" + } + cc.fx.GameTool.shushu_Track("daily_task", data2); + } + else if (dataNode.name == "useProp") { + data[2].count += 1; + let data2 = { + id: 3, + status: "claim" + } + cc.fx.GameTool.shushu_Track("daily_task", data2); + } + else if (dataNode.name == "useEnergy") { + data[0].count += 100; + data[3].count += 1; + let data2 = { + id: 2, + status: "claim" + } + cc.fx.GameTool.shushu_Track("daily_task", data2); + } + else if (dataNode.name == "share") { + data[4].count += 900; + let data2 = { + id: 1, + status: "claim" + } + cc.fx.GameTool.shushu_Track("daily_task", data2); + } + cc.tween(dataNode) + .to(0.4, { x: dataNode.x - 1000, opacity: 50 }) + .call(() => { + this.touchStart = true; + dataNode.removeFromParent(); + this.content.getComponent(cc.Layout).updateLayout(); + this.checkGetReward(); + }) + .start(); + } + } + for (let j = 0; j < data.length; j++) { + if (data[j].count == 0) { + data.splice(j, 1); + j--; + } + } + this.openReward("all", data); + } + else { + MiniGameSdk.API.showToast("网络异常,领取奖励失败"); + } + }) + setTimeout(() => { + if (this.reward == true && this.touchStart == false) { + this.touchStart = true; + } + }, 5000); + } + + checkGetReward() { + this.getBtn.active = false; + if (this.content.children.length == 0) { + this.getBtn.active = false; + this.node.getChildByName("finishi").active = true; + } + else { + for (let j = 0; j < this.content.children.length; j++) { + let child = this.content.children[j]; + if (child.getChildByName("get").active) { + this.getBtn.active = true; + break; + } + } + } + } + + getShopProp(propData) { + //@ts-ignore + if (typeof wx !== 'undefined' && wx !== null) { + const num = 0; + //console.log("_________道具增加的数量为:", num); + cc.fx.GameConfig.GM_INFO.freezeAmount += propData.freeze; + cc.fx.GameConfig.GM_INFO.hammerAmount += propData.hammer; + cc.fx.GameConfig.GM_INFO.magicAmount += propData.magic_wand; + cc.fx.GameTool.setUserProp(0, num, (data) => { + }) + const data1 = { + change_reason: "quests", + id: 2001, + num: propData.freeze, + compensate: false + } + cc.fx.GameTool.shushu_Track("resource_get", data1); + const data2 = { + change_reason: "quests", + id: 2002, + num: propData.hammer, + compensate: false + } + cc.fx.GameTool.shushu_Track("resource_get", data2); + const data3 = { + change_reason: "quests", + id: 2003, + num: propData.magic_wand, + compensate: false + } + cc.fx.GameTool.shushu_Track("resource_get", data3); + } + } + + onDestroy() { + + } + + update() { + + } +} diff --git a/assets/action_bundle/script/DailyQuests.ts.meta b/assets/action_bundle/script/DailyQuests.ts.meta new file mode 100644 index 0000000..305f1f0 --- /dev/null +++ b/assets/action_bundle/script/DailyQuests.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "85d4dc66-c6e7-4c75-8658-90520ff1d0a9", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/script/NewbieGift.ts b/assets/action_bundle/script/NewbieGift.ts new file mode 100644 index 0000000..a95b594 --- /dev/null +++ b/assets/action_bundle/script/NewbieGift.ts @@ -0,0 +1,524 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html + +import JiaZai from "../../Script/JiaZai"; +import Utils from "../../Script/module/Pay/Utils"; +import NumberToImage from "../../Script/NumberToImage"; +import { MiniGameSdk } from "../../Script/Sdk/MiniGameSdk"; + +// import JiaZai from "./JiaZai"; +// import Utils from "./module/Pay/Utils"; +// import NumberToImage from "./NumberToImage"; +// import { MiniGameSdk } from "./Sdk/MiniGameSdk"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class NewbieGift extends cc.Component { + + @property(cc.Node) + monthCardTime: cc.Node = null; + //月卡按钮切换 + @property(cc.Node) + monthCardBtn: cc.Node = null; + //月卡按钮 + @property(cc.Node) + monthCardBtn2: cc.Node = null; + public juwai = false; + btn_Touch: boolean = false; + + // LIFE-CYCLE CALLBACKS: + private onShowListener: () => void; + private iosPrice: number = 0; + private iosProductId: string = ""; + private iosCount: number = 1; + public home: number = 0; + + onLoad() { + this.btn_Touch = true; + // 检测微信小游戏切到后台 + this.home = 0; + } + + againGet() { + this.closeConfirmBox(); + this.onShow(); + } + + onShow() { + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + console.log("从后台进入前台订单号:", cc.fx.GameConfig.GM_INFO.iosStarterOrder); + if (cc.fx.GameConfig.GM_INFO.iosStarterOrder != null && cc.fx.GameConfig.GM_INFO.iosStarterOrder != "") { + console.log("有苹果订单号,开始轮训"); + const iosStarterOrder = cc.fx.GameConfig.GM_INFO.iosStarterOrder; + this.openLoad(); + this.btn_Touch = true; + Utils.getIosPayInfo(iosStarterOrder, + (data) => { + console.log("获得轮训结果:", data); + const iosID = data.data?.payment_name || this.iosProductId; + let iosAmount = data.data?.goodsPrice || this.iosPrice; + iosAmount = parseInt(iosAmount); + if (data.code == 1) { + console.log("购买成功"); + let name = "购买金币道具:" + iosID; + console.log("引力付费透传", iosAmount, iosStarterOrder, name); + MiniGameSdk.API.yinli_Pay(iosAmount, iosStarterOrder, name) + this.closeLoad(); + this.btn_Touch = true; + console.log("_________正式发货"); + MiniGameSdk.API.showToast("充值成功"); + cc.fx.GameTool.shopBuy(iosID, false); + this.buyStarter_pack(iosID); + + cc.fx.GameConfig.GM_INFO.iosStarterOrder = null; + //console.log("充值成功获得金币"); + } + else if (data.code == 0) { + console.log("用户自己取消充值"); + MiniGameSdk.API.showToast("充值失败"); + this.closeLoad(); + this.btn_Touch = true; + const dataFail = { + outTradeNo: iosStarterOrder, + pay_amount: iosAmount, + payment_name: iosID, + payment_num: this.iosCount, + type: "ios", + fail_reason: "用户取消充值", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + cc.fx.GameConfig.GM_INFO.iosStarterOrder = null; + } + else if (data.code == 2) { + this.closeLoad(); + this.btn_Touch = true; + console.log("轮训超时"); + MiniGameSdk.API.showToast("请检查网络,如充值成功,请重新登录领取", 4); + const dataFail = { + outTradeNo: iosStarterOrder, + pay_amount: iosAmount, + payment_name: iosID, + payment_num: this.iosCount, + type: "ios", + fail_reason: "用户充值后,轮训结果超时", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.openConfirmBox(); + } + this.btn_Touch = true; + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + }) + } + } + } + + start() { + // this.init(); + } + init(first) { + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + // 定义监听函数 + this.onShowListener = () => { + console.log("微信小游戏切到前台,monthCard"); + this.onShow(); + }; + //@ts-ignore + wx.onShow(this.onShowListener); + } + let nowTime = Math.floor(Date.now() / 1000); + let time = cc.fx.GameConfig.GM_INFO.starter_packTime - nowTime; + var timeTemp = cc.fx.GameTool.getTimeMargin2(time); + this.node.getChildByName("time").active = true; + this.node.getChildByName("time").getComponent(cc.Label). + string = timeTemp; + this.node.getChildByName("propBg1").opacity = 0; + this.node.getChildByName("propBg2").opacity = 0; + this.node.getChildByName("propBg3").opacity = 0; + this.node.getChildByName("gold_2").active = false; + this.node.getChildByName("baoxiang").active = false; + if (first) { + this.node.opacity = 255; + this.node.scale = 1; + this.node.getChildByName("ditu").active = true; + this.node.getChildByName("close").active = true; + this.btn_Touch = true; + this.setAction(); + } + else { + cc.tween(this.node) + .to(0.2, { opacity: 255, scale: 1, position: cc.v3(0, 0, 0) }) + .call(() => { + this.node.getChildByName("ditu").active = true; + this.node.getChildByName("close").active = true; + this.btn_Touch = true; + this.setAction(); + }) + .start(); + } + + } + //入场动画 + setAction() { + this.node.getChildByName("gold_1").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + setTimeout(() => { + // this.node.getChildByName("gold_2").active = true; + this.node.getChildByName("qipao3").active = true; + this.node.getChildByName("qipao3").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + cc.tween(this.node.getChildByName("propBg1")) + .delay(0.1) + .to(0.2, { opacity: 255 }) + .start(); + }, 400); + setTimeout(() => { + + this.node.getChildByName("qipao2").active = true; + this.node.getChildByName("qipao2").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + cc.tween(this.node.getChildByName("propBg2")) + .delay(0.1) + .to(0.2, { opacity: 255 }) + .start(); + }, 600); + setTimeout(() => { + this.node.getChildByName("gold_2").active = true; + this.node.getChildByName("qipao1").active = true; + this.node.getChildByName("qipao1").getComponent(sp.Skeleton).setAnimation(0, "animation", false); + cc.tween(this.node.getChildByName("propBg3")) + .delay(0.1) + .to(0.2, { opacity: 255 }) + .start(); + }, 800); + setTimeout(() => { + // this.node.getChildByName("gold_2").active = true; + this.node.getChildByName("baoxiang").active = true; + }, 1000); + } + + //购买月卡 + buyStarter_pack(id) { + console.log("购买新手礼包成功!"); + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + jiazaiComp.Stamina.parent.getChildByName("xinshou").active = false; + jiazaiComp.updateCoin(); + } + this.closeStarter_pack(); + // Utils.setMonthlyCard(0, (data) => { + // console.log("购买月卡", data.code); + // if (data.code == 1) { + // this.setReward(id); + // // let rewardData = [ + // // { type: "coin", count: 6000 }, + // // ] + + // } + // }) + // update (dt) {} + } + + setReward(id) { + cc.fx.GameConfig.GM_INFO.iosMonthOrder = null; + this.closeLoad(); + this.btn_Touch = true; + cc.fx.GameTool.shopBuy(id, false); + cc.fx.GameConfig.GM_INFO.hp_Max = 7; + cc.fx.GameConfig.GM_INFO.hp = 7; + cc.fx.GameConfig.GM_INFO.doubleCoin = 2; + this.home = 1; + cc.fx.GameTool.getMonthlyCardValidityDays().then(days => { + cc.fx.GameConfig.GM_INFO.monthTime = days.days; + //本地储存当前服务器时间 + let dateStr = new Date(days.time); + cc.fx.StorageMessage.setStorage("mCardDate", dateStr); + NumberToImage.numberToImageNodes(days.days, 35, 20, "month_", this.monthCardTime, true); + + }); + // cc.fx.GameTool.changeCoin(6000); + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + console.log("获取到JiaZai组件", jiazaiComp); + setTimeout(() => { + jiazaiComp.setHealthInfo(false); + jiazaiComp.startTimeCutDown(); + jiazaiComp.updateCoin(); + + }, 300); + } else { + console.log("无法获取JiaZai组件"); + } + + this.monthCardBtn.active = false; + this.monthCardBtn2.active = true; + this.monthCardTime.active = true; + cc.fx.GameTool.setUserHealth(0, (data) => { + cc.fx.GameTool.getHealth(null); + }) + let shop = cc.find("Canvas/shop"); + if (shop) { + let shopComp = shop.getComponent("shop"); + if (shopComp) { + shopComp.openShop(); + } + } + + } + + closeStarter_pack() { + // this.init(); + // 移除 wx.onShow 监听器 + this.node.getChildByName("ditu").active = false; + this.node.getChildByName("close").active = false; + this.node.getChildByName("gold_2").active = false; + + if (cc.sys.platform === cc.sys.WECHAT_GAME && this.onShowListener) { + console.log("月卡关闭监听"); + //@ts-ignore + wx.offShow(this.onShowListener); + + } + let posX = 0; + let posY = 0; + //jiazai + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + let top = jiazaiComp.Stamina.parent; + posX = top.x + top.getChildByName("xinshou").x; + posY = top.y + top.getChildByName("xinshou").y; + } + // let isExpired = cc.fx.GameTool.checkExpiration(); + // if (jiazaiComp && this.home == 1 && isExpired) { + // this.home = 0; + // jiazaiComp.rewarded(); + // console.log("123iiiii222") + // } + // if (jiazaiComp) { + // console.log("22222222") + // jiazaiComp.onGames(); + // } + cc.tween(this.node) + .to(0.2, { opacity: 0, scale: 0.1, position: cc.v3(posX, posY, 0) }) + .call(() => { + this.node.active = false; + }) + .start(); + } + + buyProduct(event, customData) { + if (!this.btn_Touch) { + return; + } + this.btn_Touch = false; + const productId = customData; + let id = "starter_pack"; + let price = 100; + let count = 1; + id = productId; + switch (productId) { + case "starter_pack": + price = 300; + break; + } + console.log("获得商品id:", id, count, price); + // 判断设备系统 + let systemType = "Android"; + try { + //@ts-ignore + const systemInfo = wx.getSystemInfoSync(); + if (systemInfo.platform === 'ios') { + systemType = "ios"; + } + } catch (e) { + console.error('获取系统信息失败', e); + } + + if (systemType == "ios") { + // MiniGameSdk.API.showToast("IOS系统暂不支持支付"); + // this.btn_Touch = true; + this.openLoad(); + this.btn_Touch = true; + let iosPayInfo = { + price: price, + payment_name: productId, + payment_count: 1, + } + this.iosPrice = price; + this.iosProductId = productId; + this.iosCount = 1; + Utils.GoKEFu(iosPayInfo, (res) => { + if (res == "success") { + console.log("客服回话成功"); + } + else { + console.log("客服回话失败"); + this.closeLoad(); + } + }); + } + else { + // MiniGameSdk.API.showToast("充值成功"); + // cc.fx.GameTool.shopBuy(productId, false); + // setTimeout(() => { + // if (productId == "unlimited_health_bundle_1" || + // productId == "unlimited_health_bundle_2" || + // productId == "unlimited_health_bundle_3" + // ) { + // console.log("触发————————updatePower"); + // this.updatePower(); + // } + // }, 500); + + this.openLoad(); + this.btn_Touch = true; + //console.log("7.14_____________________", "调用充值接口"); + Utils.buyProp(id, count, price, systemType, productId, (res) => { + //console.log("获得充值结果", res); + if (res == null) { + MiniGameSdk.API.showToast("充值失败"); + this.btn_Touch = true; + const dataFail = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "网络异常,没有拉起支付", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.closeLoad(); + return; + } + else if (res.err) { + MiniGameSdk.API.showToast("充值失败"); + //console.log(res); + this.btn_Touch = true; + let name = "支付拉起失败"; + if (res.errCode == -2) { + name = "用户取消充值"; + } + const dataFail = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: name, + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.closeLoad(); + return; + } + else { + Utils.getPayInfo((data) => { + //console.log("7.14_______________充值成功,准备轮训"); + //console.log("获得轮训结果:", data); + this.closeLoad(); + if (data.data.pay_state == 1) { + this.btn_Touch = true; + MiniGameSdk.API.showToast("取消充值"); + const dataFail2 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "用户取消支付", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail2); + } + else if (data.data.pay_state == 2) { + this.btn_Touch = true; + // const dataSuccess = { + // outTradeNo: Utils.outTradeNo, + // pay_amount: price, + // payment_name: productId, + // payment_num: 1, + // type: systemType, + // } + // cc.fx.GameTool.shushu_Track("payment", dataSuccess); + let name = "购买金币道具:" + productId; + console.log("引力付费透传", price, Utils.outTradeNo, name); + MiniGameSdk.API.yinli_Pay(price, Utils.outTradeNo, name) + console.log("7.14_______________充值成功,轮训成功,准备发货"); + Utils.setPayInfo( + (res) => { + console.log("设置轮训结果:", res); + if (res.code === 1) { + console.log("7.14_________正式发货"); + MiniGameSdk.API.showToast("充值成功"); + cc.fx.GameTool.shopBuy(productId, false); + if (productId == "starter_pack") { + this.buyStarter_pack(productId); + } + //console.log("充值成功获得金币"); + } + else { + MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放"); + const dataFail4 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "成功付款,但是发货时请求服务器失败,充值成功未发货", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail4); + } + + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + }, Utils.outTradeNo) + } + else { + + const dataFail3 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "拉起支付后,付款时网络异常付款失败", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail3); + this.btn_Touch = true; + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + } + }) + } + }); + } + } + openLoad() { + this.node.getChildByName("Loading").active = true; + this.node.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + } + + openConfirmBox() { + this.closeLoad(); + this.node.getChildByName("ConfirmBox").active = true; + } + closeConfirmBox() { + this.node.getChildByName("ConfirmBox").active = false; + } + + closeLoad() { + this.node.getChildByName("Loading").active = false; + } + + onDestroy() { + + } + + update() { + + } +} diff --git a/assets/action_bundle/script/NewbieGift.ts.meta b/assets/action_bundle/script/NewbieGift.ts.meta new file mode 100644 index 0000000..5f03813 --- /dev/null +++ b/assets/action_bundle/script/NewbieGift.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "eab690e4-6011-40cf-a4fe-962a20257b33", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/script/WinStreak.ts b/assets/action_bundle/script/WinStreak.ts new file mode 100644 index 0000000..8290bfd --- /dev/null +++ b/assets/action_bundle/script/WinStreak.ts @@ -0,0 +1,161 @@ +// Learn TypeScript: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html +// Learn Attribute: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html + +import JiaZai from "../../Script/JiaZai"; +import Utils from "../../Script/module/Pay/Utils"; +import NumberToImage from "../../Script/NumberToImage"; +import { MiniGameSdk } from "../../Script/Sdk/MiniGameSdk"; + + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class WinStreak extends cc.Component { + + @property(cc.SpriteAtlas) + fontUI: cc.SpriteAtlas = null; + + @property(cc.Node) + content: cc.Node = null; + //月卡按钮切换 + @property(cc.Node) + getBtn: cc.Node = null; + + public juwai = false; + btn_Touch: boolean = false; + + + onLoad() { + this.btn_Touch = true; + } + + + + start() { + // this.init(); + } + init() { + if (cc.fx.GameConfig.GM_INFO.winStreak > 0) { + let hammer = this.node.getChildByName("hammer").children; + let count = cc.fx.GameConfig.GM_INFO.winStreak; + let time = 0.1; + if (count > 5) { + time = 0.05; + } + if (count > 10) { + count = 10; + } + for (let i = 0; i < count; i++) { + if (i < 10) { + hammer[i].active = true; + hammer[i].scaleX = hammer[i].scaleY = 0; + cc.tween(hammer[i]) + .delay(i * time) + .to(0.2, { scaleX: 0.7, scaleY: 0.7 }) // 快速放大到0.7 + .to(0.1, { scaleX: 0.4, scaleY: 0.4 }) // 突然缩小制造弹性感 + .to(0.1, { scaleX: 0.6, scaleY: 0.6 }) // 再次弹起到0.6 + .to(0.1, { scaleX: 0.5, scaleY: 0.5 }) // 最终稳定到0.5 + .to(0.05, { scaleX: 0.55, scaleY: 0.45 }) // X轴抖动效果 + .to(0.05, { scaleX: 0.45, scaleY: 0.55 }) // Y轴抖动效果 + .to(0.1, { scaleX: 0.5, scaleY: 0.5 }) // 恢复最终比例 + .start(); + } + } + } + this.numberToImageNodes2(cc.fx.GameConfig.GM_INFO.winStreak, 10, 5, "", this.node.getChildByName("number"), true); + } + //入场动画 + setAction() { + } + + setReward(id) { + } + + closeWinStreak() { + this.node.active = false; + } + + openLoad() { + this.node.getChildByName("Loading").active = true; + this.node.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + } + + openConfirmBox() { + this.closeLoad(); + this.node.getChildByName("ConfirmBox").active = true; + } + closeConfirmBox() { + this.node.getChildByName("ConfirmBox").active = false; + } + + closeLoad() { + this.node.getChildByName("Loading").active = false; + } + + //点击去完成 + clickBtn(event, data) { + this.node.active = false; + const jiazaiNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点 + const jiazaiComp = jiazaiNode.getComponent(JiaZai); + if (jiazaiComp) { + jiazaiComp.startGame(); + } + } + + numberToImageNodes2(number, width, posX, name, targetNode: cc.Node, right: boolean = false) { + const numStr = number.toString(); + let cha = 0; + if (number > 99) cha = -posX + else if (number < 10) cha = posX + if (targetNode.children.length > 0) + targetNode.removeAllChildren(); + + const digitNodes: cc.Node[] = []; + for (let i = 0; i < numStr.length; i++) { + let digit = parseInt(numStr[i], 10); + const node = new cc.Node(); + const sprite = node.addComponent(cc.Sprite); + if (numStr[i] == ":") digit = 10; + sprite.spriteFrame = this.fontUI._spriteFrames[name + digit + ""]; + digitNodes.push(node); + } + + // 计算总宽度 + // const totalWidth = (numStr.length - 1) * width + (digitNodes[0]?.width || 0); + // 计算总宽度,累加每个节点的宽度和间距 + let totalWidth = 0; + for (let i = 0; i < digitNodes.length; i++) { + totalWidth += digitNodes[i].width; + if (i < digitNodes.length - 1) { + totalWidth += width; + } + } + if (right) { + // 新右对齐逻辑:从右向左排列 + let currentX = 0; // 最右侧起点 + for (let i = digitNodes.length - 1; i >= 0; i--) { + const node = digitNodes[i]; + node.x = currentX - node.width; + currentX -= (node.width + width); // 向左累加宽度和间距 + if (targetNode) node.parent = targetNode; + } + } else { + let currentX = cha; + for (let i = 0; i < digitNodes.length; i++) { + const node = digitNodes[i]; + node.x = currentX; + currentX += node.width + width; + if (targetNode) node.parent = targetNode; + } + } + } + + update() { + + } +} diff --git a/assets/action_bundle/script/WinStreak.ts.meta b/assets/action_bundle/script/WinStreak.ts.meta new file mode 100644 index 0000000..8fe45ec --- /dev/null +++ b/assets/action_bundle/script/WinStreak.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "f03388b7-6e8b-4bca-90b2-219ec02b1a8d", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/spine.meta b/assets/action_bundle/spine.meta new file mode 100644 index 0000000..574c349 --- /dev/null +++ b/assets/action_bundle/spine.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "0d4bd86f-54aa-4d0f-8a6a-807496a9ea2d", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/spine/baoxiang.atlas b/assets/action_bundle/spine/baoxiang.atlas new file mode 100644 index 0000000..a39936e --- /dev/null +++ b/assets/action_bundle/spine/baoxiang.atlas @@ -0,0 +1,125 @@ + +baoxiang.png +size: 1316,340 +format: RGBA8888 +filter: Linear,Linear +repeat: none +guangdian/00000 + rotate: false + xy: 1049, 3 + size: 123, 110 + orig: 200, 200 + offset: 29, 5 + index: -1 +guangdian/00001 + rotate: false + xy: 1182, 133 + size: 131, 97 + orig: 200, 200 + offset: 27, 5 + index: -1 +guangdian/00002 + rotate: false + xy: 1174, 14 + size: 132, 99 + orig: 200, 200 + offset: 26, 7 + index: -1 +guangdian/00003 + rotate: false + xy: 1049, 115 + size: 131, 107 + orig: 200, 200 + offset: 26, 1 + index: -1 +guangdian/00004 + rotate: false + xy: 531, 31 + size: 134, 114 + orig: 200, 200 + offset: 24, 5 + index: -1 +guangdian/00005 + rotate: false + xy: 272, 21 + size: 134, 120 + orig: 200, 200 + offset: 24, 9 + index: -1 +guangdian/00006 + rotate: false + xy: 137, 5 + size: 133, 136 + orig: 200, 200 + offset: 25, 7 + index: -1 +guangdian/00007 + rotate: false + xy: 2, 2 + size: 133, 139 + orig: 200, 200 + offset: 26, 14 + index: -1 +guangdian/00008 + rotate: false + xy: 797, 2 + size: 118, 149 + orig: 200, 200 + offset: 43, 11 + index: -1 +guangdian/00009 + rotate: false + xy: 1153, 232 + size: 131, 105 + orig: 200, 200 + offset: 30, 1 + index: -1 +guangdian/00010 + rotate: false + xy: 917, 37 + size: 130, 114 + orig: 200, 200 + offset: 30, 3 + index: -1 +guangdian/00011 + rotate: false + xy: 667, 27 + size: 128, 118 + orig: 200, 200 + offset: 31, 7 + index: -1 +guangdian/00012 + rotate: false + xy: 1026, 224 + size: 125, 113 + orig: 200, 200 + offset: 32, 10 + index: -1 +guangdian/00013 + rotate: false + xy: 408, 17 + size: 121, 128 + orig: 200, 200 + offset: 32, 4 + index: -1 +light + rotate: false + xy: 351, 147 + size: 339, 190 + orig: 342, 194 + offset: 1, 2 + index: -1 +lightda + rotate: false + xy: 2, 143 + size: 347, 194 + orig: 354, 206 + offset: 3, 8 + index: -1 +lightqing + rotate: false + xy: 692, 153 + size: 332, 184 + orig: 354, 206 + offset: 11, 11 + index: -1 diff --git a/assets/action_bundle/spine/baoxiang.atlas.meta b/assets/action_bundle/spine/baoxiang.atlas.meta new file mode 100644 index 0000000..0cdd240 --- /dev/null +++ b/assets/action_bundle/spine/baoxiang.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "ee9bddc8-32cc-4b7b-ba3d-5c9dec477024", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/spine/baoxiang.json b/assets/action_bundle/spine/baoxiang.json new file mode 100644 index 0000000..310975a --- /dev/null +++ b/assets/action_bundle/spine/baoxiang.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"7BbLxTvRIZzWeiE8gc+Uk6k4X+4","spine":"3.8.99","x":-207.71,"y":-22.21,"width":411.39,"height":372.32,"images":"","audio":""},"bones":[{"name":"root"},{"name":"light","parent":"root","x":-1.38,"y":43.62},{"name":"bone","parent":"root","x":33.68,"y":180.12,"scaleX":1.7,"scaleY":1.7},{"name":"guangda","parent":"root","x":-11.15,"y":40.15},{"name":"qing","parent":"root","x":0.31,"y":15.37}],"slots":[{"name":"lightqing2","bone":"root","attachment":"lightqing"},{"name":"light","bone":"light","attachment":"light","blend":"additive"},{"name":"lightda","bone":"guangda","color":"ffffffcb","attachment":"lightda","blend":"additive"},{"name":"lightqing","bone":"qing","color":"ffffff8b","attachment":"lightqing"},{"name":"guangdian/00000","bone":"bone","attachment":"guangdian/00000","blend":"additive"}],"skins":[{"name":"default","attachments":{"guangdian/00000":{"guangdian/00000":{"width":200,"height":200},"guangdian/00001":{"width":200,"height":200},"guangdian/00002":{"width":200,"height":200},"guangdian/00003":{"width":200,"height":200},"guangdian/00004":{"width":200,"height":200},"guangdian/00005":{"width":200,"height":200},"guangdian/00006":{"width":200,"height":200},"guangdian/00007":{"width":200,"height":200},"guangdian/00008":{"width":200,"height":200},"guangdian/00009":{"width":200,"height":200},"guangdian/00010":{"width":200,"height":200},"guangdian/00011":{"width":200,"height":200},"guangdian/00012":{"width":200,"height":200},"guangdian/00013":{"width":200,"height":200}},"light":{"light":{"x":-27.64,"y":36.75,"width":342,"height":194}},"lightda":{"lightda":{"x":-19.56,"y":49.78,"width":354,"height":206}},"lightqing":{"lightqing":{"x":-29.55,"y":65.81,"width":354,"height":206}},"lightqing2":{"lightqing":{"x":-28.06,"y":80.79,"width":354,"height":206}}}}],"animations":{"animation":{"slots":{"guangdian/00000":{"attachment":[{"time":0.0667,"name":"guangdian/00001"},{"time":0.1333,"name":"guangdian/00002"},{"time":0.2,"name":"guangdian/00003"},{"time":0.2667,"name":"guangdian/00004"},{"time":0.3333,"name":"guangdian/00005"},{"time":0.4,"name":"guangdian/00006"},{"time":0.4667,"name":"guangdian/00007"},{"time":0.5333,"name":"guangdian/00008"},{"time":0.6,"name":"guangdian/00009"},{"time":0.6667,"name":"guangdian/00010"},{"time":0.7333,"name":"guangdian/00011"},{"time":0.8,"name":"guangdian/00012"},{"time":0.8667,"name":"guangdian/00013"},{"time":0.9333,"name":"guangdian/00000"},{"time":1,"name":"guangdian/00001"},{"time":1.0667,"name":"guangdian/00002"},{"time":1.1333,"name":"guangdian/00003"},{"time":1.2,"name":"guangdian/00004"},{"time":1.2667,"name":"guangdian/00005"},{"time":1.3333,"name":"guangdian/00006"},{"time":1.4,"name":"guangdian/00007"},{"time":1.4667,"name":"guangdian/00008"},{"time":1.5333,"name":"guangdian/00009"},{"time":1.6,"name":"guangdian/00010"},{"time":1.6667,"name":"guangdian/00011"},{"time":1.7333,"name":"guangdian/00012"},{"time":1.8,"name":"guangdian/00013"},{"time":1.8667,"name":"guangdian/00000"},{"time":1.9333,"name":"guangdian/00001"},{"time":2,"name":"guangdian/00002"},{"time":2.0667,"name":"guangdian/00003"},{"time":2.1333,"name":"guangdian/00004"},{"time":2.2,"name":"guangdian/00005"},{"time":2.2667,"name":"guangdian/00006"},{"time":2.3333,"name":"guangdian/00007"},{"time":2.4,"name":"guangdian/00008"},{"time":2.4667,"name":"guangdian/00009"},{"time":2.5333,"name":"guangdian/00010"},{"time":2.6,"name":"guangdian/00011"},{"time":2.6667,"name":"guangdian/00012"},{"time":2.7333,"name":"guangdian/00013"},{"time":2.8,"name":"guangdian/00000"},{"time":2.8667,"name":"guangdian/00001"},{"time":2.9333,"name":"guangdian/00002"},{"time":3,"name":"guangdian/00003"},{"time":3.0667,"name":"guangdian/00004"},{"time":3.1333,"name":"guangdian/00005"},{"time":3.2,"name":"guangdian/00006"},{"time":3.2667,"name":"guangdian/00007"},{"time":3.3333,"name":"guangdian/00008"},{"time":3.4,"name":"guangdian/00009"},{"time":3.4667,"name":"guangdian/00010"},{"time":3.5333,"name":"guangdian/00011"},{"time":3.6,"name":"guangdian/00012"},{"time":3.6667,"name":"guangdian/00013"},{"time":3.7333,"name":"guangdian/00000"},{"time":3.8,"name":"guangdian/00001"},{"time":3.8667,"name":"guangdian/00002"},{"time":3.9333,"name":"guangdian/00003"},{"time":4,"name":"guangdian/00004"},{"time":4.0667,"name":"guangdian/00005"},{"time":4.1333,"name":"guangdian/00006"},{"time":4.2,"name":"guangdian/00007"},{"time":4.2667,"name":"guangdian/00008"},{"time":4.3333,"name":"guangdian/00009"},{"time":4.4,"name":"guangdian/00010"},{"time":4.4667,"name":"guangdian/00011"},{"time":4.5333,"name":"guangdian/00012"},{"time":4.6,"name":"guangdian/00013"}]},"light":{"color":[{"color":"ffffff00"},{"time":0.5333,"color":"fffffff5"},{"time":1.9,"color":"ffffff00","curve":"stepped"},{"time":2.7667,"color":"ffffff00"},{"time":2.8,"color":"fffffff5"},{"time":4.1,"color":"ffffff00"}]},"lightda":{"color":[{"color":"ffffff22"},{"time":2.3667,"color":"fffffff8"},{"time":4.6,"color":"ffffff2c"}]}},"bones":{"light":{"scale":[{"time":0.5333},{"time":1.9,"x":1.2,"y":1.2},{"time":2.8},{"time":4.1,"x":1.2,"y":1.2}]}}}}} \ No newline at end of file diff --git a/assets/action_bundle/spine/baoxiang.json.meta b/assets/action_bundle/spine/baoxiang.json.meta new file mode 100644 index 0000000..548f002 --- /dev/null +++ b/assets/action_bundle/spine/baoxiang.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "f743f1be-be36-45be-9bd4-846e1b84e50e", + "importer": "spine", + "textures": [ + "76a345db-3751-4005-a4ad-c1fd6fcf9aaa" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/spine/baoxiang.png b/assets/action_bundle/spine/baoxiang.png new file mode 100644 index 0000000..9e47afb Binary files /dev/null and b/assets/action_bundle/spine/baoxiang.png differ diff --git a/assets/action_bundle/spine/baoxiang.png.meta b/assets/action_bundle/spine/baoxiang.png.meta new file mode 100644 index 0000000..c1751bb --- /dev/null +++ b/assets/action_bundle/spine/baoxiang.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "76a345db-3751-4005-a4ad-c1fd6fcf9aaa", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1316, + "height": 340, + "platformSettings": {}, + "subMetas": { + "baoxiang": { + "ver": "1.0.6", + "uuid": "b973ab31-fbe0-4088-8e12-54772a76e2f6", + "importer": "sprite-frame", + "rawTextureUuid": "76a345db-3751-4005-a4ad-c1fd6fcf9aaa", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 0.5, + "trimX": 2, + "trimY": 2, + "width": 1311, + "height": 335, + "rawWidth": 1316, + "rawHeight": 340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/spine/gold.atlas b/assets/action_bundle/spine/gold.atlas new file mode 100644 index 0000000..f60a630 --- /dev/null +++ b/assets/action_bundle/spine/gold.atlas @@ -0,0 +1,83 @@ + +gold.png +size: 1452,340 +format: RGBA8888 +filter: Linear,Linear +repeat: none +lightxulie/1 + rotate: false + xy: 364, 226 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/10 + rotate: false + xy: 364, 2 + size: 361, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/11 + rotate: false + xy: 727, 2 + size: 361, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/2 + rotate: false + xy: 726, 226 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/3 + rotate: false + xy: 1088, 226 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/4 + rotate: false + xy: 2, 114 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/5 + rotate: false + xy: 364, 114 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/6 + rotate: false + xy: 726, 114 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/7 + rotate: false + xy: 1088, 114 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/8 + rotate: false + xy: 2, 2 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 +lightxulie/9 + rotate: false + xy: 2, 226 + size: 360, 110 + orig: 361, 110 + offset: 0, 0 + index: -1 diff --git a/assets/action_bundle/spine/gold.atlas.meta b/assets/action_bundle/spine/gold.atlas.meta new file mode 100644 index 0000000..961831a --- /dev/null +++ b/assets/action_bundle/spine/gold.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "ec034d4e-3a42-4897-8d5b-90fef0433289", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/spine/gold.json b/assets/action_bundle/spine/gold.json new file mode 100644 index 0000000..3790ff7 --- /dev/null +++ b/assets/action_bundle/spine/gold.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"IAykiaalungkBdamufMjA2XWl3I","spine":"3.8.99","x":-239.85,"y":-61.39,"width":361,"height":110,"images":"","audio":"D:/work/block/做完的/新手礼包/gold3000"},"bones":[{"name":"root"},{"name":"light","parent":"root","x":-59.85,"y":-6.39}],"slots":[{"name":"lightxulie/1","bone":"light","attachment":"lightxulie/1"}],"skins":[{"name":"default","attachments":{"lightxulie/1":{"lightxulie/1":{"x":0.5,"width":361,"height":110},"lightxulie/2":{"x":0.5,"width":361,"height":110},"lightxulie/3":{"x":0.5,"width":361,"height":110},"lightxulie/4":{"x":0.5,"width":361,"height":110},"lightxulie/5":{"x":0.5,"width":361,"height":110},"lightxulie/6":{"x":0.5,"width":361,"height":110},"lightxulie/7":{"x":0.5,"width":361,"height":110},"lightxulie/8":{"x":0.5,"width":361,"height":110},"lightxulie/9":{"x":0.5,"width":361,"height":110},"lightxulie/10":{"x":0.5,"width":361,"height":110},"lightxulie/11":{"x":0.5,"width":361,"height":110}}}}],"animations":{"animation":{"slots":{"lightxulie/1":{"attachment":[{"time":0.7,"name":"lightxulie/2"},{"time":0.7667,"name":"lightxulie/3"},{"time":0.8333,"name":"lightxulie/4"},{"time":0.9,"name":"lightxulie/5"},{"time":0.9667,"name":"lightxulie/6"},{"time":1.0333,"name":"lightxulie/7"},{"time":1.1,"name":"lightxulie/8"},{"time":1.1667,"name":"lightxulie/9"},{"time":1.2333,"name":"lightxulie/10"},{"time":1.3,"name":"lightxulie/11"},{"time":1.3667,"name":"lightxulie/1"},{"time":2.1667,"name":"lightxulie/2"},{"time":2.2333,"name":"lightxulie/3"},{"time":2.3,"name":"lightxulie/4"},{"time":2.3667,"name":"lightxulie/5"},{"time":2.4333,"name":"lightxulie/6"},{"time":2.5,"name":"lightxulie/7"},{"time":2.5667,"name":"lightxulie/8"},{"time":2.6333,"name":"lightxulie/9"},{"time":2.7,"name":"lightxulie/10"},{"time":2.7667,"name":"lightxulie/11"}]}}}}} \ No newline at end of file diff --git a/assets/action_bundle/spine/gold.json.meta b/assets/action_bundle/spine/gold.json.meta new file mode 100644 index 0000000..a6ec9c8 --- /dev/null +++ b/assets/action_bundle/spine/gold.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "0a95c171-f3ba-466e-a146-9abea117bd06", + "importer": "spine", + "textures": [ + "79819a8d-b0e2-4038-be93-e4dd6e55cf89" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/spine/gold.png b/assets/action_bundle/spine/gold.png new file mode 100644 index 0000000..cecc59b Binary files /dev/null and b/assets/action_bundle/spine/gold.png differ diff --git a/assets/action_bundle/spine/gold.png.meta b/assets/action_bundle/spine/gold.png.meta new file mode 100644 index 0000000..ad2bf26 --- /dev/null +++ b/assets/action_bundle/spine/gold.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "79819a8d-b0e2-4038-be93-e4dd6e55cf89", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1452, + "height": 340, + "platformSettings": {}, + "subMetas": { + "gold": { + "ver": "1.0.6", + "uuid": "b31cab2b-d657-488c-864f-0924edcbc72c", + "importer": "sprite-frame", + "rawTextureUuid": "79819a8d-b0e2-4038-be93-e4dd6e55cf89", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": 1, + "trimX": 2, + "trimY": 2, + "width": 1446, + "height": 334, + "rawWidth": 1452, + "rawHeight": 340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/spine/qipao.atlas b/assets/action_bundle/spine/qipao.atlas new file mode 100644 index 0000000..22170a3 --- /dev/null +++ b/assets/action_bundle/spine/qipao.atlas @@ -0,0 +1,146 @@ + +qipao.png +size: 1672,932 +format: RGBA8888 +filter: Linear,Linear +repeat: none +00000 + rotate: false + xy: 1298, 318 + size: 71, 69 + orig: 400, 400 + offset: 156, 148 + index: -1 +00001 + rotate: false + xy: 1437, 165 + size: 212, 222 + orig: 400, 400 + offset: 103, 78 + index: -1 +00002 + rotate: false + xy: 2, 15 + size: 236, 243 + orig: 400, 400 + offset: 90, 71 + index: -1 +00003 + rotate: false + xy: 1409, 389 + size: 260, 266 + orig: 400, 400 + offset: 78, 61 + index: -1 +00004 + rotate: false + xy: 1130, 15 + size: 277, 284 + orig: 400, 400 + offset: 68, 52 + index: -1 +00005 + rotate: false + xy: 843, 2 + size: 285, 291 + orig: 400, 400 + offset: 63, 48 + index: -1 +00006 + rotate: false + xy: 993, 301 + size: 303, 309 + orig: 400, 400 + offset: 56, 38 + index: -1 +00007 + rotate: false + xy: 673, 295 + size: 318, 315 + orig: 400, 400 + offset: 48, 34 + index: -1 +00008 + rotate: false + xy: 343, 604 + size: 327, 323 + orig: 400, 400 + offset: 43, 31 + index: -1 +00009 + rotate: false + xy: 340, 265 + size: 331, 327 + orig: 400, 400 + offset: 41, 29 + index: -1 +00010 + rotate: false + xy: 2, 260 + size: 336, 332 + orig: 400, 400 + offset: 39, 27 + index: -1 +00011 + rotate: false + xy: 2, 594 + size: 339, 333 + orig: 400, 400 + offset: 37, 26 + index: -1 +dian/01 + rotate: false + xy: 1371, 323 + size: 64, 64 + orig: 400, 400 + offset: 167, 175 + index: -1 +dian/02 + rotate: false + xy: 1298, 526 + size: 106, 92 + orig: 400, 400 + offset: 145, 160 + index: -1 +dian/03 + rotate: false + xy: 1409, 19 + size: 186, 144 + orig: 400, 400 + offset: 112, 137 + index: -1 +dian/04 + rotate: false + xy: 240, 18 + size: 293, 240 + orig: 400, 400 + offset: 75, 101 + index: -1 +dian/05 + rotate: false + xy: 1351, 657 + size: 315, 270 + orig: 400, 400 + offset: 63, 82 + index: -1 +dian/06 + rotate: false + xy: 999, 620 + size: 350, 307 + orig: 400, 400 + offset: 48, 60 + index: -1 +dian/07 + rotate: false + xy: 672, 612 + size: 325, 315 + orig: 400, 400 + offset: 75, 56 + index: -1 +dian/08 + rotate: false + xy: 535, 37 + size: 306, 226 + orig: 400, 400 + offset: 94, 94 + index: -1 diff --git a/assets/action_bundle/spine/qipao.atlas.meta b/assets/action_bundle/spine/qipao.atlas.meta new file mode 100644 index 0000000..c033749 --- /dev/null +++ b/assets/action_bundle/spine/qipao.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "e47dc0e3-2e47-4e1d-ab9b-fc7ee2a204f8", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/spine/qipao.json b/assets/action_bundle/spine/qipao.json new file mode 100644 index 0000000..7478b37 --- /dev/null +++ b/assets/action_bundle/spine/qipao.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"Uwj+DTHrdsRLgmbuoNXqbn7SPE8","spine":"3.8.99","x":-201,"y":-200,"width":401,"height":402,"images":"","audio":""},"bones":[{"name":"root"},{"name":"bone","parent":"root","x":-1},{"name":"bone2","parent":"root","y":2}],"slots":[{"name":"00000","bone":"bone","attachment":"00011"},{"name":"dian/01","bone":"bone2","attachment":"dian/08"}],"skins":[{"name":"default","attachments":{"00000":{"00000":{"width":400,"height":400},"00001":{"width":400,"height":400},"00002":{"width":400,"height":400},"00003":{"width":400,"height":400},"00004":{"width":400,"height":400},"00005":{"width":400,"height":400},"00006":{"width":400,"height":400},"00007":{"width":400,"height":400},"00008":{"width":400,"height":400},"00009":{"width":400,"height":400},"00010":{"width":400,"height":400},"00011":{"width":400,"height":400}},"dian/01":{"dian/01":{"width":400,"height":400},"dian/02":{"width":400,"height":400},"dian/03":{"width":400,"height":400},"dian/04":{"width":400,"height":400},"dian/05":{"width":400,"height":400},"dian/06":{"width":400,"height":400},"dian/07":{"width":400,"height":400},"dian/08":{"width":400,"height":400}}}}],"animations":{"animation":{"slots":{"00000":{"attachment":[{"name":"00000"},{"time":0.0333,"name":"00001"},{"time":0.0667,"name":"00002"},{"time":0.1,"name":"00003"},{"time":0.1333,"name":"00004"},{"time":0.1667,"name":"00005"},{"time":0.2,"name":"00006"},{"time":0.2333,"name":"00007"},{"time":0.2667,"name":"00008"},{"time":0.3,"name":"00009"},{"time":0.3333,"name":"00010"},{"time":0.3667,"name":"00011"},{"time":0.4,"name":null}]},"dian/01":{"color":[{"color":"ffffff00"},{"time":0.0333,"color":"ffffffff","curve":"stepped"},{"time":0.3333,"color":"ffffffff"},{"time":0.7,"color":"ffffff00"}],"attachment":[{"name":"dian/01"},{"time":0.0667,"name":"dian/02"},{"time":0.1333,"name":"dian/03"},{"time":0.2,"name":"dian/04"},{"time":0.2667,"name":"dian/05"},{"time":0.3333,"name":"dian/06"},{"time":0.4,"name":"dian/07"},{"time":0.4667,"name":"dian/08"},{"time":0.5333,"name":null},{"time":0.7,"name":"dian/08"}]}},"bones":{"bone2":{"translate":[{"time":0.3333},{"time":0.7,"y":-23.54}]}}}}} \ No newline at end of file diff --git a/assets/action_bundle/spine/qipao.json.meta b/assets/action_bundle/spine/qipao.json.meta new file mode 100644 index 0000000..7cb8f7c --- /dev/null +++ b/assets/action_bundle/spine/qipao.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "2e4d1973-21a9-41b6-abbb-260192e7134d", + "importer": "spine", + "textures": [ + "931ef773-50a1-4eec-8a84-4cac65be773d" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/spine/qipao.png b/assets/action_bundle/spine/qipao.png new file mode 100644 index 0000000..937ed92 Binary files /dev/null and b/assets/action_bundle/spine/qipao.png differ diff --git a/assets/action_bundle/spine/qipao.png.meta b/assets/action_bundle/spine/qipao.png.meta new file mode 100644 index 0000000..0e81d5b --- /dev/null +++ b/assets/action_bundle/spine/qipao.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "931ef773-50a1-4eec-8a84-4cac65be773d", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1672, + "height": 932, + "platformSettings": {}, + "subMetas": { + "qipao": { + "ver": "1.0.6", + "uuid": "9898b400-2918-4751-8878-a9bacfff5094", + "importer": "sprite-frame", + "rawTextureUuid": "931ef773-50a1-4eec-8a84-4cac65be773d", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 1.5, + "trimX": 2, + "trimY": 2, + "width": 1667, + "height": 925, + "rawWidth": 1672, + "rawHeight": 932, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/animation.meta b/assets/animation.meta new file mode 100644 index 0000000..c3f6f2b --- /dev/null +++ b/assets/animation.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "7c1d6faa-66b9-4423-aa04-8c38a15768cf", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/animation/NewScript.js b/assets/animation/NewScript.js new file mode 100644 index 0000000..2930ce8 --- /dev/null +++ b/assets/animation/NewScript.js @@ -0,0 +1,45 @@ +// Learn cc.Class: +// - https://docs.cocos.com/creator/manual/en/scripting/class.html +// Learn Attribute: +// - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html +// Learn life-cycle callbacks: +// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html + +cc.Class({ + extends: cc.Component, + + properties: { + sex:{ + type:cc.Enum({ + male:0, + female:1 + }), + default:0 + } + // foo: { + // // ATTRIBUTES: + // default: null, // The default value will be used only when the component attaching + // // to a node for the first time + // type: cc.SpriteFrame, // optional, default is typeof default + // serializable: true, // optional, default is true + // }, + // bar: { + // get () { + // return this._bar; + // }, + // set (value) { + // this._bar = value; + // } + // }, + }, + + // LIFE-CYCLE CALLBACKS: + + // onLoad () {}, + + start () { + + }, + + // update (dt) {}, +}); diff --git a/assets/animation/NewScript.js.meta b/assets/animation/NewScript.js.meta new file mode 100644 index 0000000..8ebbd3a --- /dev/null +++ b/assets/animation/NewScript.js.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "2cd54f87-8181-484e-915e-e902e5bea0c1", + "importer": "javascript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/animation/caidai.anim b/assets/animation/caidai.anim new file mode 100644 index 0000000..ab9d2f7 --- /dev/null +++ b/assets/animation/caidai.anim @@ -0,0 +1,9 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "", + "_objFlags": 0, + "_duration": 0, + "sample": 60, + "curveData": {}, + "events": [] +} \ No newline at end of file diff --git a/assets/animation/caidai.anim.meta b/assets/animation/caidai.anim.meta new file mode 100644 index 0000000..9e62f5a --- /dev/null +++ b/assets/animation/caidai.anim.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.1.2", + "uuid": "e0f0c571-048a-45b2-a826-493c1fc72e86", + "importer": "animation-clip", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/animation/caidai1.anim b/assets/animation/caidai1.anim new file mode 100644 index 0000000..a4f6e9a --- /dev/null +++ b/assets/animation/caidai1.anim @@ -0,0 +1,139 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "caidai1", + "_objFlags": 0, + "_native": "", + "_duration": 0.3333333333333333, + "sample": 60, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "2285b83c-30f1-40fd-837d-5ad53f304172" + } + }, + { + "frame": 0.016666666666666666, + "value": { + "__uuid__": "2e144a0b-648c-4b59-8b0f-ee68b92601cf" + } + }, + { + "frame": 0.03333333333333333, + "value": { + "__uuid__": "79de0736-b778-43c7-9e9e-439667ed62fd" + } + }, + { + "frame": 0.05, + "value": { + "__uuid__": "e5e9249b-4bb6-471d-badb-79ffcea77101" + } + }, + { + "frame": 0.06666666666666667, + "value": { + "__uuid__": "cad13f7f-075d-440d-873e-7ac7b4465c5f" + } + }, + { + "frame": 0.08333333333333333, + "value": { + "__uuid__": "e8a470fc-29c4-4301-ad7c-47f68ba2151c" + } + }, + { + "frame": 0.1, + "value": { + "__uuid__": "23e18515-3d1d-4da1-a711-0c21db4d8b39" + } + }, + { + "frame": 0.11666666666666667, + "value": { + "__uuid__": "b5d54010-1c01-4012-bfd7-66bac95861c3" + } + }, + { + "frame": 0.13333333333333333, + "value": { + "__uuid__": "1325c35d-f6c5-4eda-bcec-54193bf36a30" + } + }, + { + "frame": 0.15, + "value": { + "__uuid__": "f7f13be7-6d5b-46ea-bb79-251cef8fb162" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "6c40c69b-0897-41d5-8daa-72430f07ab9d" + } + }, + { + "frame": 0.18333333333333332, + "value": { + "__uuid__": "8b62ffce-8a28-4ee1-b635-f05e99f8889f" + } + }, + { + "frame": 0.2, + "value": { + "__uuid__": "e0820bf4-750e-446f-82a4-5a9de0684c80" + } + }, + { + "frame": 0.21666666666666667, + "value": { + "__uuid__": "f453f11d-5bff-4b35-bbad-36cd93e62f41" + } + }, + { + "frame": 0.23333333333333334, + "value": { + "__uuid__": "1085c94a-3a49-452d-af1b-d8997bb798dd" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "a6fe3c42-6720-40b6-9e32-ed47755e78b1" + } + }, + { + "frame": 0.26666666666666666, + "value": { + "__uuid__": "82142a24-4205-4925-8b8a-190ab1511979" + } + }, + { + "frame": 0.2833333333333333, + "value": { + "__uuid__": "aa906b91-ef31-4d4e-8e12-cbf5f985d462" + } + }, + { + "frame": 0.3, + "value": { + "__uuid__": "ec9823b3-0084-4eab-a6c4-87440fb397d5" + } + }, + { + "frame": 0.31666666666666665, + "value": { + "__uuid__": "caa0c9b7-bbd1-4ef4-b05e-6a488e7ff66c" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/assets/animation/caidai1.anim.meta b/assets/animation/caidai1.anim.meta new file mode 100644 index 0000000..a1a3f8b --- /dev/null +++ b/assets/animation/caidai1.anim.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.1.2", + "uuid": "5b13766d-332c-4bc1-aa65-123ace5f9964", + "importer": "animation-clip", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/animation/guide.anim b/assets/animation/guide.anim new file mode 100644 index 0000000..5c517da --- /dev/null +++ b/assets/animation/guide.anim @@ -0,0 +1,55 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "guide", + "_objFlags": 0, + "_native": "", + "_duration": 2.0166666666666666, + "sample": 60, + "speed": 1, + "wrapMode": 2, + "curveData": { + "props": { + "opacity": [ + { + "frame": 0, + "value": 254 + }, + { + "frame": 0.016666666666666666, + "value": 254 + }, + { + "frame": 1, + "value": 255 + } + ], + "y": [ + { + "frame": 0, + "value": 91.1797753 + }, + { + "frame": 0.016666666666666666, + "value": -15 + }, + { + "frame": 1, + "value": -15 + }, + { + "frame": 1.0166666666666666, + "value": -15 + }, + { + "frame": 2, + "value": 255 + }, + { + "frame": 2.0166666666666666, + "value": 255 + } + ] + } + }, + "events": [] +} \ No newline at end of file diff --git a/assets/animation/guide.anim.meta b/assets/animation/guide.anim.meta new file mode 100644 index 0000000..b58c123 --- /dev/null +++ b/assets/animation/guide.anim.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.1.2", + "uuid": "edf3d60a-1823-4215-8a81-b4865596f370", + "importer": "animation-clip", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/animation/magic.anim b/assets/animation/magic.anim new file mode 100644 index 0000000..ab9d2f7 --- /dev/null +++ b/assets/animation/magic.anim @@ -0,0 +1,9 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "", + "_objFlags": 0, + "_duration": 0, + "sample": 60, + "curveData": {}, + "events": [] +} \ No newline at end of file diff --git a/assets/animation/magic.anim.meta b/assets/animation/magic.anim.meta new file mode 100644 index 0000000..5e79983 --- /dev/null +++ b/assets/animation/magic.anim.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.1.2", + "uuid": "b91a09d2-1614-49b6-a21e-b286a2441cb6", + "importer": "animation-clip", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/animation/set.anim b/assets/animation/set.anim new file mode 100644 index 0000000..c9b23b0 --- /dev/null +++ b/assets/animation/set.anim @@ -0,0 +1,69 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "set", + "_objFlags": 0, + "_native": "", + "_duration": 0.45, + "sample": 60, + "speed": 1, + "wrapMode": 1, + "curveData": { + "paths": { + "shengyin": { + "props": { + "x": [ + { + "frame": 0.15, + "value": 210 + }, + { + "frame": 0.26666666666666666, + "value": 49.411764705882334 + }, + { + "frame": 0.45, + "value": 0 + } + ] + } + }, + "zhendong": { + "props": { + "x": [ + { + "frame": 0, + "value": 210 + }, + { + "frame": 0.11666666666666667, + "value": 23.333333333333336 + }, + { + "frame": 0.3333333333333333, + "value": 0 + } + ] + } + }, + "yinyue": { + "props": { + "x": [ + { + "frame": 0.06666666666666667, + "value": 210 + }, + { + "frame": 0.18333333333333332, + "value": 83.99999999999999 + }, + { + "frame": 0.38333333333333336, + "value": 0 + } + ] + } + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/assets/animation/set.anim.meta b/assets/animation/set.anim.meta new file mode 100644 index 0000000..9c4d021 --- /dev/null +++ b/assets/animation/set.anim.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.1.2", + "uuid": "50c01dd8-431f-43cc-820e-abb2a859d031", + "importer": "animation-clip", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom.meta b/assets/custom.meta new file mode 100644 index 0000000..da26db8 --- /dev/null +++ b/assets/custom.meta @@ -0,0 +1,21 @@ +{ + "ver": "1.1.3", + "uuid": "94cc9377-a2b8-4217-8ba6-06074e079d58", + "importer": "folder", + "isBundle": true, + "bundleName": "custom", + "priority": 8, + "compressionType": { + "wechatgame": "subpackage" + }, + "optimizeHotUpdate": { + "wechatgame": false + }, + "inlineSpriteFrames": { + "wechatgame": false + }, + "isRemoteBundle": { + "wechatgame": false + }, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json.meta b/assets/custom/Json.meta new file mode 100644 index 0000000..63fede2 --- /dev/null +++ b/assets/custom/Json.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "be86c2a7-50a1-4a0a-af97-1416e9197f99", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/NEW_GUIDE.json b/assets/custom/Json/NEW_GUIDE.json new file mode 100644 index 0000000..4a30708 --- /dev/null +++ b/assets/custom/Json/NEW_GUIDE.json @@ -0,0 +1,19 @@ + + { + "NEW_GUIDE": [ + { + "level": 8, + "name": "hammer", + "tips": "锤子道具" + }, + { + "level": 11, + "name": "time", + "tips": "时间道具" + }, + { + "level": 16, + "name": "magic", + "tips": "魔法道具" + } + ]} \ No newline at end of file diff --git a/assets/custom/Json/NEW_GUIDE.json.meta b/assets/custom/Json/NEW_GUIDE.json.meta new file mode 100644 index 0000000..635e457 --- /dev/null +++ b/assets/custom/Json/NEW_GUIDE.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "37dcff18-2691-4552-9c14-4a50a7a60496", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/NEW_LEVEL.json b/assets/custom/Json/NEW_LEVEL.json new file mode 100644 index 0000000..c04180b --- /dev/null +++ b/assets/custom/Json/NEW_LEVEL.json @@ -0,0 +1,54 @@ +{ + "NEW_LEVEL": [ + { + "level": 7, + "name": "daoju7", + "tips": "垂直水平方块第一次出现" + }, + { + "level": 15, + "name": "daoju2", + "tips": "叠加方块第一次出现" + }, + { + "level": 25, + "name": "daoju4", + "tips": "冻结方块第一次出现" + }, + { + "level": 35, + "name": "daoju1", + "tips": "星星方块第一次出现" + }, + { + "level": 44, + "name": "daoju3", + "tips": "钥匙锁方块第一次出现" + }, + { + "level": 52, + "name": "daoju6", + "tips": "粘合方块第一次出现" + }, + { + "level": 61, + "name": "daoju8", + "tips": "开关门第一次出现" + }, + { + "level": 70, + "name": "daoju5", + "tips": "炸弹方块第一次出现" + }, + { + "level": 375, + "name": "daoju10", + "tips": "旋转门第一次出现" + }, + { + "level": 396, + "name": "daoju11", + "tips": "灰色不可消除方块第一次出现" + } + ] +} \ No newline at end of file diff --git a/assets/custom/Json/NEW_LEVEL.json.meta b/assets/custom/Json/NEW_LEVEL.json.meta new file mode 100644 index 0000000..7a6d791 --- /dev/null +++ b/assets/custom/Json/NEW_LEVEL.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8312f0f9-6f26-423d-aaa2-ff9ee5122ca2", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level1.json b/assets/custom/Json/level1.json new file mode 100644 index 0000000..809e6be --- /dev/null +++ b/assets/custom/Json/level1.json @@ -0,0 +1,71 @@ +{ + "LEVEL_INFO": [ + { + "id": "1", + "map": [ + 6, + 7 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 220 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 12, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level1.json.meta b/assets/custom/Json/level1.json.meta new file mode 100644 index 0000000..3628a5a --- /dev/null +++ b/assets/custom/Json/level1.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "cf23a18b-2a0f-45e2-9906-24be2d5b870f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level10.json b/assets/custom/Json/level10.json new file mode 100644 index 0000000..feece63 --- /dev/null +++ b/assets/custom/Json/level10.json @@ -0,0 +1,130 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "10", + "map": [ + 5, + 9 + ], + "time": 60, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 260 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 18, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 1, + "num": 17, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 16, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 3, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 2, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 1, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level10.json.meta b/assets/custom/Json/level10.json.meta new file mode 100644 index 0000000..1b3c381 --- /dev/null +++ b/assets/custom/Json/level10.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8c09ea35-2933-437e-9de7-bb94ad1c019e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level100.json b/assets/custom/Json/level100.json new file mode 100644 index 0000000..409fd20 --- /dev/null +++ b/assets/custom/Json/level100.json @@ -0,0 +1,668 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "100", + "map": [ + 10, + 14 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 600, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 600, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 480 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -720, + "z": 0 + }, + "id": 490 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -720, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -720, + "z": 0 + }, + "id": 510 + }, + { + "block": 5, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 2, + "id": 520 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -720, + "z": 0 + }, + "id": 530 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 540 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 600, + "z": 0 + }, + "id": 550 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -720, + "z": 0 + }, + "id": 560 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 600, + "z": 0 + }, + "id": 570 + }, + { + "block": 22, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "freezeTime": 18, + "id": 580 + }, + { + "block": 21, + "color": 5, + "type": 4, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "freezeTime": 18, + "id": 590 + }, + { + "block": 19, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "freezeTime": 18, + "id": 600 + }, + { + "block": 20, + "color": 4, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 18, + "id": 610 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 620 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 630 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 36, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 37, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 38, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 1, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 8, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 27, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 33, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 34, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 24, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 26, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 29, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 21, + "num": 30, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 31, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 24, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level100.json.meta b/assets/custom/Json/level100.json.meta new file mode 100644 index 0000000..2ac34e8 --- /dev/null +++ b/assets/custom/Json/level100.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6a78a951-d0ee-4089-ad88-c0361caed2c8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level101.json b/assets/custom/Json/level101.json new file mode 100644 index 0000000..ef89268 --- /dev/null +++ b/assets/custom/Json/level101.json @@ -0,0 +1,247 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "101", + "map": [ + 8, + 8 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 8, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 6, + "type": 6, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "boomTime": 45, + "id": 250 + }, + { + "block": 8, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 7, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 9, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 8, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 17, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 18, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 22, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level101.json.meta b/assets/custom/Json/level101.json.meta new file mode 100644 index 0000000..de25e5e --- /dev/null +++ b/assets/custom/Json/level101.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "615e1c78-bbf8-4aef-b55f-025f7c3aa7bb", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level102.json b/assets/custom/Json/level102.json new file mode 100644 index 0000000..a88f2c5 --- /dev/null +++ b/assets/custom/Json/level102.json @@ -0,0 +1,361 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "102", + "map": [ + 8, + 9 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "stacking": 2, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 8, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 7, + "type": 1, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "stacking": 6, + "id": 310 + }, + { + "block": 22, + "color": 2, + "type": 1, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "stacking": 6, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 1, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "stacking": 9, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "freezeTime": 8, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "freezeTime": 10, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 3, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "lockTime": 5, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 7, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 9, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 14, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 10, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 12, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 5, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 6, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 21, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level102.json.meta b/assets/custom/Json/level102.json.meta new file mode 100644 index 0000000..d73b11c --- /dev/null +++ b/assets/custom/Json/level102.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "438b7ec6-23dd-471a-9137-3cab7726c687", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level103.json b/assets/custom/Json/level103.json new file mode 100644 index 0000000..ebc6992 --- /dev/null +++ b/assets/custom/Json/level103.json @@ -0,0 +1,372 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "103", + "map": [ + 8, + 11 + ], + "time": 60, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 4, + "color": 7, + "type": 9, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 270 + }, + { + "block": 4, + "color": 2, + "type": 9, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 16, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 17, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 5, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 320 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 5, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 7, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 26, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 28, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 9, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 8, + "num": 11, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 9, + "num": 10, + "color": 6, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 10, + "num": 12, + "color": 6, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 11, + "num": 14, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 12, + "num": 16, + "color": 10, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 13, + "num": 13, + "color": 10, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 14, + "num": 15, + "color": 10, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 15, + "num": 17, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 16, + "num": 19, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 17, + "num": 18, + "color": 8, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 18, + "num": 20, + "color": 8, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 19, + "num": 3, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 20, + "num": 4, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 21, + "num": 24, + "color": 9, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 22, + "num": 25, + "color": 9, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 23, + "num": 0, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 24, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 25, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 26, + "num": 21, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 27, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 28, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level103.json.meta b/assets/custom/Json/level103.json.meta new file mode 100644 index 0000000..7910e8b --- /dev/null +++ b/assets/custom/Json/level103.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2b0f8eb4-2355-4f65-ae3a-ee6458fc3eb6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level104.json b/assets/custom/Json/level104.json new file mode 100644 index 0000000..28e0750 --- /dev/null +++ b/assets/custom/Json/level104.json @@ -0,0 +1,409 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "104", + "map": [ + 10, + 12 + ], + "time": 210, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -360, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 17, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 16, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 410 + }, + { + "block": 8, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 5, + "color": 1, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 5, + "id": 440 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 8, + "id": 450 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "freezeTime": 8, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 23, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 13, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 10, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 22, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 24, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 34, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level104.json.meta b/assets/custom/Json/level104.json.meta new file mode 100644 index 0000000..2154ade --- /dev/null +++ b/assets/custom/Json/level104.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d8431941-00e1-4638-b2a2-1bd96d9fc5b8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level105.json b/assets/custom/Json/level105.json new file mode 100644 index 0000000..6197a4c --- /dev/null +++ b/assets/custom/Json/level105.json @@ -0,0 +1,259 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "105", + "map": [ + 7, + 9 + ], + "time": 60, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 10, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 2, + "type": 6, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "boomTime": 60, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 19, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 20, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 15, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 9, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 11, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 13, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 7, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 2, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 3, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 16, + "color": 10, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level105.json.meta b/assets/custom/Json/level105.json.meta new file mode 100644 index 0000000..215eccc --- /dev/null +++ b/assets/custom/Json/level105.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "581928fd-74e9-493a-94b3-1a64313909d3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level106.json b/assets/custom/Json/level106.json new file mode 100644 index 0000000..2eaa738 --- /dev/null +++ b/assets/custom/Json/level106.json @@ -0,0 +1,386 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "106", + "map": [ + 8, + 9 + ], + "time": 95, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 5, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 10, + "type": 5, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "lockTime": 5, + "id": 270 + }, + { + "block": 1, + "color": 1, + "type": 6, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "boomTime": 12, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 8, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 10, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 4, + "color": 2, + "special": 1, + "length": 1 + }, + { + "id": 4, + "num": 16, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 23, + "color": 10, + "special": 1, + "length": 1 + }, + { + "id": 7, + "num": 12, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 14, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 21, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 2, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 7, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level106.json.meta b/assets/custom/Json/level106.json.meta new file mode 100644 index 0000000..9a5d660 --- /dev/null +++ b/assets/custom/Json/level106.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6b3f5d56-3637-404e-a4e5-189874cd71f3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level107.json b/assets/custom/Json/level107.json new file mode 100644 index 0000000..dff3259 --- /dev/null +++ b/assets/custom/Json/level107.json @@ -0,0 +1,271 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "107", + "map": [ + 9, + 9 + ], + "time": 45, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 14, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 20, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 15, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 2, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 8, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 5, + "num": 10, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 6, + "num": 17, + "color": 1, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 7, + "num": 19, + "color": 1, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 8, + "num": 7, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 9, + "num": 9, + "color": 10, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 10, + "num": 18, + "color": 10, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 11, + "num": 20, + "color": 10, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 12, + "num": 23, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 24, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level107.json.meta b/assets/custom/Json/level107.json.meta new file mode 100644 index 0000000..903082b --- /dev/null +++ b/assets/custom/Json/level107.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8e981011-d4c6-41b9-91f8-015f8d9b041d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level108.json b/assets/custom/Json/level108.json new file mode 100644 index 0000000..cfbff32 --- /dev/null +++ b/assets/custom/Json/level108.json @@ -0,0 +1,396 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "108", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 1, + "type": 9, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 5, + "color": 3, + "type": 9, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 9, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 11, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 23, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 5, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 22, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 25, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 2, + "color": 8, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level108.json.meta b/assets/custom/Json/level108.json.meta new file mode 100644 index 0000000..d8d32de --- /dev/null +++ b/assets/custom/Json/level108.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0a0f446a-b0fc-4929-a9cc-616f502d0dcb", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level109.json b/assets/custom/Json/level109.json new file mode 100644 index 0000000..271df1d --- /dev/null +++ b/assets/custom/Json/level109.json @@ -0,0 +1,569 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "109", + "map": [ + 11, + 11 + ], + "time": 160, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 460 + }, + { + "block": 14, + "color": 10, + "type": 3, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "lockTime": 8, + "id": 470 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 490 + }, + { + "block": 10, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 500 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 520 + }, + { + "block": 6, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 530 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 540 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 550 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 560 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 570 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 580 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 110, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 111, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 112, + "num": 30, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 113, + "num": 31, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 114, + "num": 32, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 115, + "num": 28, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 116, + "num": 29, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 117, + "num": 33, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 118, + "num": 34, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 119, + "num": 1, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 120, + "num": 2, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 121, + "num": 3, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 122, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 123, + "num": 5, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 124, + "num": 20, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 125, + "num": 16, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 126, + "num": 15, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 127, + "num": 19, + "color": 8, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level109.json.meta b/assets/custom/Json/level109.json.meta new file mode 100644 index 0000000..0c75cc4 --- /dev/null +++ b/assets/custom/Json/level109.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "69f4fb9f-c1a8-4ffe-bd04-f77c92671be7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level11.json b/assets/custom/Json/level11.json new file mode 100644 index 0000000..9cb6d7e --- /dev/null +++ b/assets/custom/Json/level11.json @@ -0,0 +1,445 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "11", + "map": [ + 9, + 12 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 7, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 14, + "color": 6, + "type": 7, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 430 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 440 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 450 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 15, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 14, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 16, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 24, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 32, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 4, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 5, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 28, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 29, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level11.json.meta b/assets/custom/Json/level11.json.meta new file mode 100644 index 0000000..f408d6e --- /dev/null +++ b/assets/custom/Json/level11.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7e2d7a92-92bd-4774-863b-73f079fd6f86", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level110.json b/assets/custom/Json/level110.json new file mode 100644 index 0000000..e275f7c --- /dev/null +++ b/assets/custom/Json/level110.json @@ -0,0 +1,345 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "110", + "map": [ + 9, + 11 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 16, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 17, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 2, + "type": 5, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 3, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 34, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 22, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 29, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 30, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 31, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 12, + "color": 2, + "special": 1, + "length": 2 + }, + { + "id": 13, + "num": 14, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 14, + "num": 4, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level110.json.meta b/assets/custom/Json/level110.json.meta new file mode 100644 index 0000000..c2b3017 --- /dev/null +++ b/assets/custom/Json/level110.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0ddde8cc-1b17-454b-8696-be34361845ef", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level111.json b/assets/custom/Json/level111.json new file mode 100644 index 0000000..2d12ac3 --- /dev/null +++ b/assets/custom/Json/level111.json @@ -0,0 +1,252 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "111", + "map": [ + 7, + 9 + ], + "time": 45, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 3, + "color": 7, + "type": 9, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 20, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 3, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 15, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 10, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 12, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 14, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 7, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level111.json.meta b/assets/custom/Json/level111.json.meta new file mode 100644 index 0000000..de282bd --- /dev/null +++ b/assets/custom/Json/level111.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "78522b60-9651-4017-8f9e-38238b0945ad", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level112.json b/assets/custom/Json/level112.json new file mode 100644 index 0000000..bfb60f8 --- /dev/null +++ b/assets/custom/Json/level112.json @@ -0,0 +1,256 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "112", + "map": [ + 8, + 8 + ], + "time": 140, + "gap": [ + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 8, + "type": 7, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 6, + "type": 8, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 18, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 20, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 2, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 21, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 8, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 9, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 24, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level112.json.meta b/assets/custom/Json/level112.json.meta new file mode 100644 index 0000000..7ac38ff --- /dev/null +++ b/assets/custom/Json/level112.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "48e7b0d8-05ea-4fd5-8f29-925fb0ba8845", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level113.json b/assets/custom/Json/level113.json new file mode 100644 index 0000000..56bd633 --- /dev/null +++ b/assets/custom/Json/level113.json @@ -0,0 +1,392 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "113", + "map": [ + 7, + 11 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 360 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 6, + "type": 3, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "lockTime": 4, + "id": 390 + }, + { + "block": 1, + "color": 5, + "type": 3, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "lockTime": 8, + "id": 390 + }, + { + "block": 1, + "color": 2, + "type": 8, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 4, + "type": 8, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 3, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 5, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 8, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 27, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 22, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 24, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 19, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 0, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 16, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 9, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level113.json.meta b/assets/custom/Json/level113.json.meta new file mode 100644 index 0000000..88a237e --- /dev/null +++ b/assets/custom/Json/level113.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0c986bfc-7618-4c66-994d-e406c1da0b24", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level114.json b/assets/custom/Json/level114.json new file mode 100644 index 0000000..2f98c9a --- /dev/null +++ b/assets/custom/Json/level114.json @@ -0,0 +1,355 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "114", + "map": [ + 9, + 9 + ], + "time": 135, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 14, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 15, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 8, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 12, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 20, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 15, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 24, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 7, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 9, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 0, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 8, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 16, + "num": 10, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 17, + "num": 3, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 18, + "num": 4, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 19, + "num": 21, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 20, + "num": 22, + "color": 3, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level114.json.meta b/assets/custom/Json/level114.json.meta new file mode 100644 index 0000000..c946159 --- /dev/null +++ b/assets/custom/Json/level114.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3876286a-8804-470f-9dbe-1ab37566bf3b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level115.json b/assets/custom/Json/level115.json new file mode 100644 index 0000000..9e2be22 --- /dev/null +++ b/assets/custom/Json/level115.json @@ -0,0 +1,355 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "115", + "map": [ + 9, + 12 + ], + "time": 60, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 1, + "type": 3, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "lockTime": 5, + "id": 260 + }, + { + "block": 1, + "color": 1, + "type": 4, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "freezeTime": 5, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "freezeTime": 5, + "id": 280 + }, + { + "block": 11, + "color": 7, + "type": 4, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "freezeTime": 5, + "id": 290 + }, + { + "block": 20, + "color": 2, + "type": 4, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "freezeTime": 6, + "id": 300 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "freezeTime": 7, + "id": 310 + }, + { + "block": 15, + "color": 8, + "type": 4, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "freezeTime": 10, + "id": 320 + }, + { + "block": 19, + "color": 6, + "type": 4, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "freezeTime": 11, + "id": 330 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "freezeTime": 11, + "id": 340 + }, + { + "block": 22, + "color": 10, + "type": 4, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "freezeTime": 13, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 4, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "freezeTime": 13, + "id": 360 + }, + { + "block": 15, + "color": 6, + "type": 4, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "freezeTime": 16, + "id": 380 + }, + { + "block": 22, + "color": 2, + "type": 4, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "freezeTime": 16, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "freezeTime": 14, + "id": 400 + }, + { + "block": 22, + "color": 2, + "type": 4, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "freezeTime": 8, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 13, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 18, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 20, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 22, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 5, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 29, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 30, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 27, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 28, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level115.json.meta b/assets/custom/Json/level115.json.meta new file mode 100644 index 0000000..30b74e7 --- /dev/null +++ b/assets/custom/Json/level115.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "46e711be-b11e-402a-a24c-75e2e394a75b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level116.json b/assets/custom/Json/level116.json new file mode 100644 index 0000000..173218b --- /dev/null +++ b/assets/custom/Json/level116.json @@ -0,0 +1,479 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "116", + "map": [ + 10, + 13 + ], + "time": 170, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": -240, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 4, + "type": 2, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 320 + }, + { + "block": 18, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 15, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 5, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 5, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 5, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 10, + "type": 5, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 20, + "color": 8, + "type": 4, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "freezeTime": 2, + "id": 440 + }, + { + "block": 15, + "color": 6, + "type": 4, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "freezeTime": 7, + "id": 450 + }, + { + "block": 12, + "color": 9, + "type": 3, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "lockTime": 4, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 27, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 28, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 29, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 3, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 4, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 5, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 6, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 7, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 11, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 13, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 21, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 25, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 31, + "color": 8, + "special": 1, + "length": 1 + }, + { + "id": 16, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 12, + "color": 7, + "special": 1, + "length": 2 + }, + { + "id": 19, + "num": 14, + "color": 7, + "special": 1, + "length": 0 + }, + { + "id": 20, + "num": 24, + "color": 10, + "special": 1, + "length": 2 + }, + { + "id": 21, + "num": 26, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 22, + "num": 33, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 23, + "num": 34, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 35, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level116.json.meta b/assets/custom/Json/level116.json.meta new file mode 100644 index 0000000..ec202de --- /dev/null +++ b/assets/custom/Json/level116.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9e607042-800f-425b-94f4-774ab34c3b91", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level117.json b/assets/custom/Json/level117.json new file mode 100644 index 0000000..99bf8c5 --- /dev/null +++ b/assets/custom/Json/level117.json @@ -0,0 +1,360 @@ +{ + "LEVEL_INFO": [ + { + "id": "120", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 210 + }, + { + "block": 20, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 220 + }, + { + "block": 4, + "color": 8, + "type": 9, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 5, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "freezeTime": 15, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "freezeTime": 15, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "freezeTime": 15, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "freezeTime": 10, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "freezeTime": 9, + "id": 330 + }, + { + "block": 2, + "color": 2, + "type": 4, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "freezeTime": 3, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 1, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "stacking": 5, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 4, + "type": 4, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "freezeTime": 6, + "id": 380 + }, + { + "block": 21, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 20, + "color": 6, + "special": 1, + "length": 2 + }, + { + "id": 3, + "num": 21, + "color": 6, + "special": 1, + "length": 0 + }, + { + "id": 4, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 17, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 18, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 13, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 15, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 23, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 8, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level117.json.meta b/assets/custom/Json/level117.json.meta new file mode 100644 index 0000000..1500c41 --- /dev/null +++ b/assets/custom/Json/level117.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6911a11f-7666-40b0-843c-0ce4d54f35ac", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level118.json b/assets/custom/Json/level118.json new file mode 100644 index 0000000..2ad2721 --- /dev/null +++ b/assets/custom/Json/level118.json @@ -0,0 +1,450 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "118", + "map": [ + 10, + 12 + ], + "time": 160, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "id": 300 + }, + { + "block": 11, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 360, + "y": 480, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 14, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 6, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 410 + }, + { + "block": 10, + "color": 8, + "type": 1, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "stacking": 1, + "id": 420 + }, + { + "block": 4, + "color": 1, + "type": 1, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "stacking": 3, + "id": 430 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "lockTime": 4, + "id": 440 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "freezeTime": 3, + "id": 460 + }, + { + "block": 18, + "color": 3, + "type": 4, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "freezeTime": 5, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 7, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 33, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 23, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 26, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 0, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 11, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 10, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 24, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level118.json.meta b/assets/custom/Json/level118.json.meta new file mode 100644 index 0000000..a36b416 --- /dev/null +++ b/assets/custom/Json/level118.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c8f0cf5f-c48c-4ca8-9399-47e3adc3a2ba", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level119.json b/assets/custom/Json/level119.json new file mode 100644 index 0000000..359d6fc --- /dev/null +++ b/assets/custom/Json/level119.json @@ -0,0 +1,368 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "119", + "map": [ + 8, + 10 + ], + "time": 125, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 9, + "type": 1, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "stacking": 2, + "id": 350 + }, + { + "block": 5, + "color": 2, + "type": 1, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "stacking": 9, + "id": 360 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 3, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "lockTime": 8, + "id": 400 + }, + { + "block": 2, + "color": 8, + "type": 3, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "lockTime": 4, + "id": 400 + }, + { + "block": 4, + "color": 7, + "type": 1, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "stacking": 1, + "id": 410 + }, + { + "block": 4, + "color": 1, + "type": 1, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "stacking": 7, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 21, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 3, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 1, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 11, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 17, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 16, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 5, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 25, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 26, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level119.json.meta b/assets/custom/Json/level119.json.meta new file mode 100644 index 0000000..de0e8c9 --- /dev/null +++ b/assets/custom/Json/level119.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d906f930-7480-418b-a3ce-caacbd4ecf2c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level12.json b/assets/custom/Json/level12.json new file mode 100644 index 0000000..7469d47 --- /dev/null +++ b/assets/custom/Json/level12.json @@ -0,0 +1,266 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "12", + "map": [ + 7, + 9 + ], + "time": 75, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 320 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 22, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 5, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level12.json.meta b/assets/custom/Json/level12.json.meta new file mode 100644 index 0000000..2601a70 --- /dev/null +++ b/assets/custom/Json/level12.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "92dc8a08-509a-4c12-b296-f37d8e0bd4b7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level120.json b/assets/custom/Json/level120.json new file mode 100644 index 0000000..6e742a6 --- /dev/null +++ b/assets/custom/Json/level120.json @@ -0,0 +1,403 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 2, + "color": "9" + }, + { + "x": 4, + "y": 2, + "color": "9" + }, + { + "x": 5, + "y": 2, + "color": "9" + }, + { + "x": 3, + "y": 3, + "color": "9" + }, + { + "x": 4, + "y": 3, + "color": "9" + }, + { + "x": 5, + "y": 3, + "color": "9" + } + ], + "id": "120", + "map": [ + 9, + 9 + ], + "time": 75, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 8, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 121, + "num": 11, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 122, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 123, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 124, + "num": 10, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 125, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 126, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 127, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 128, + "num": 1, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 129, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 130, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 131, + "num": 7, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 132, + "num": 9, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 133, + "num": 22, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 134, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 135, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 136, + "num": 25, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 137, + "num": 26, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level120.json.meta b/assets/custom/Json/level120.json.meta new file mode 100644 index 0000000..cc9238f --- /dev/null +++ b/assets/custom/Json/level120.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f41d602c-b8df-4067-a88a-16c4ba168356", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level121.json b/assets/custom/Json/level121.json new file mode 100644 index 0000000..3e0e62d --- /dev/null +++ b/assets/custom/Json/level121.json @@ -0,0 +1,412 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 4, + "color": "4" + }, + { + "x": 3, + "y": 5, + "color": "4" + }, + { + "x": 5, + "y": 3, + "color": "8" + }, + { + "x": 5, + "y": 4, + "color": "8" + } + ], + "id": "121", + "map": [ + 9, + 9 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 7, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 7, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 122, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 123, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 124, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 125, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 126, + "num": 11, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 127, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 128, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 129, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 130, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 131, + "num": 5, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 132, + "num": 6, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 133, + "num": 23, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 134, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 135, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 136, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level121.json.meta b/assets/custom/Json/level121.json.meta new file mode 100644 index 0000000..73eae1a --- /dev/null +++ b/assets/custom/Json/level121.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4ae3e51b-8215-4c9f-b09c-e1632c85bd7d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level122.json b/assets/custom/Json/level122.json new file mode 100644 index 0000000..c0dd599 --- /dev/null +++ b/assets/custom/Json/level122.json @@ -0,0 +1,384 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 4, + "color": "8" + }, + { + "x": 2, + "y": 5, + "color": "8" + }, + { + "x": 5, + "y": 4, + "color": "10" + }, + { + "x": 5, + "y": 5, + "color": "10" + } + ], + "id": "122", + "map": [ + 8, + 10 + ], + "time": 125, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 123, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 124, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 125, + "num": 11, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 126, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 127, + "num": 2, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 128, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 129, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 130, + "num": 14, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 131, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 132, + "num": 22, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 133, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 134, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 135, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 136, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level122.json.meta b/assets/custom/Json/level122.json.meta new file mode 100644 index 0000000..d253131 --- /dev/null +++ b/assets/custom/Json/level122.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "96acc152-cb32-45fb-806d-dbda87fd435b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level123.json b/assets/custom/Json/level123.json new file mode 100644 index 0000000..6c24b1c --- /dev/null +++ b/assets/custom/Json/level123.json @@ -0,0 +1,408 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 7, + "color": "3" + }, + { + "x": 4, + "y": 7, + "color": "3" + } + ], + "id": "123", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 1, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "stacking": 5, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 1, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "stacking": 8, + "id": 320 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "stacking": 8, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 4, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "freezeTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "freezeTime": 5, + "id": 400 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "freezeTime": 15, + "id": 410 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 18, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 124, + "num": 16, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 125, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 126, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 127, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 128, + "num": 25, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 129, + "num": 26, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 130, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 131, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 132, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 133, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 134, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 135, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 136, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 137, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 138, + "num": 5, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 139, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 140, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 141, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level123.json.meta b/assets/custom/Json/level123.json.meta new file mode 100644 index 0000000..80a23d4 --- /dev/null +++ b/assets/custom/Json/level123.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "301e6610-6a5d-46db-a4d0-3b707a3e6bb9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level124.json b/assets/custom/Json/level124.json new file mode 100644 index 0000000..86cdef8 --- /dev/null +++ b/assets/custom/Json/level124.json @@ -0,0 +1,508 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "124", + "map": [ + 11, + 14 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 12, + "z": 0 + }, + { + "x": 9, + "y": 12, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 6, + "type": 8, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 4, + "type": 8, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 22, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": -720, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 6, + "type": 2, + "position": { + "x": -180, + "y": -720, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -420, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 540, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 10, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -720, + "z": 0 + }, + "id": 360 + }, + { + "block": 10, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 6, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": -720, + "z": 0 + }, + "id": 380 + }, + { + "block": 6, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 15, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -720, + "z": 0 + }, + "id": 400 + }, + { + "block": 17, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 18, + "color": 2, + "type": 3, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "lockTime": 6, + "id": 420 + }, + { + "block": 16, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 440 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 450 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 480, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 4, + "type": 4, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "freezeTime": 4, + "id": 470 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 540, + "y": 360, + "z": 0 + }, + "freezeTime": 4, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 27, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 40, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 41, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 1, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 37, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 38, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 22, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 26, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 5, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 14, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 18, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 33, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 21, + "num": 34, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level124.json.meta b/assets/custom/Json/level124.json.meta new file mode 100644 index 0000000..dfda9aa --- /dev/null +++ b/assets/custom/Json/level124.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "dfae9728-10ae-4338-9000-1844255e36d6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level125.json b/assets/custom/Json/level125.json new file mode 100644 index 0000000..07b32b5 --- /dev/null +++ b/assets/custom/Json/level125.json @@ -0,0 +1,427 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "125", + "map": [ + 10, + 12 + ], + "time": 80, + "gap": [ + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 5, + "type": 1, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "stacking": 6, + "id": 210 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "stacking": 6, + "id": 220 + }, + { + "block": 21, + "color": 3, + "type": 1, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 230 + }, + { + "block": 22, + "color": 10, + "type": 1, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "stacking": 2, + "id": 240 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "stacking": 1, + "id": 250 + }, + { + "block": 20, + "color": 9, + "type": 1, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "stacking": 3, + "id": 260 + }, + { + "block": 19, + "color": 1, + "type": 1, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "stacking": 8, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 1, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "stacking": 6, + "id": 280 + }, + { + "block": 1, + "color": 6, + "type": 1, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "stacking": 8, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "stacking": 1, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 1, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "stacking": 7, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 1, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "stacking": 7, + "id": 330 + }, + { + "block": 13, + "color": 2, + "type": 4, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "freezeTime": 5, + "id": 340 + }, + { + "block": 9, + "color": 3, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 5, + "id": 350 + }, + { + "block": 11, + "color": 1, + "type": 4, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "freezeTime": 5, + "id": 360 + }, + { + "block": 3, + "color": 6, + "type": 4, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "freezeTime": 5, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "freezeTime": 5, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 24, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 26, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 28, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 1, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 2, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 25, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 10, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 34, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 35, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 7, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 8, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 31, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 32, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 37, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 21, + "num": 38, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 11, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 23, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level125.json.meta b/assets/custom/Json/level125.json.meta new file mode 100644 index 0000000..da0e228 --- /dev/null +++ b/assets/custom/Json/level125.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "dc0c1cff-b811-45ac-a0bb-85669ed178f7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level126.json b/assets/custom/Json/level126.json new file mode 100644 index 0000000..84bf32a --- /dev/null +++ b/assets/custom/Json/level126.json @@ -0,0 +1,340 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "126", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 14, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 14, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 5, + "color": 1, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 9, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 11, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 23, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 20, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 3, + "color": 3, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level126.json.meta b/assets/custom/Json/level126.json.meta new file mode 100644 index 0000000..811a746 --- /dev/null +++ b/assets/custom/Json/level126.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a0412d3a-5dcc-4671-af2e-aa9794f7e08f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level127.json b/assets/custom/Json/level127.json new file mode 100644 index 0000000..a3f1bf5 --- /dev/null +++ b/assets/custom/Json/level127.json @@ -0,0 +1,426 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 6, + "y": 9, + "color": "2" + }, + { + "x": 7, + "y": 9, + "color": "2" + }, + { + "x": 7, + "y": 8, + "color": "2" + }, + { + "x": 7, + "y": 7, + "color": "2" + } + ], + "id": "127", + "map": [ + 9, + 11 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 3, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 18, + "color": 5, + "type": 3, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "lockTime": 5, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 128, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 129, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 130, + "num": 29, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 131, + "num": 30, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 132, + "num": 24, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 133, + "num": 25, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 134, + "num": 26, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 135, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 136, + "num": 28, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 137, + "num": 19, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 138, + "num": 21, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 139, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 140, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 141, + "num": 14, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 142, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level127.json.meta b/assets/custom/Json/level127.json.meta new file mode 100644 index 0000000..725b710 --- /dev/null +++ b/assets/custom/Json/level127.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1e896a42-b9b2-4865-afaa-6aabd7f7a627", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level128.json b/assets/custom/Json/level128.json new file mode 100644 index 0000000..e276eb8 --- /dev/null +++ b/assets/custom/Json/level128.json @@ -0,0 +1,547 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "128", + "map": [ + 10, + 13 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 540, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "id": 340 + }, + { + "block": 21, + "color": 1, + "type": 5, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -360, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 22, + "color": 10, + "type": 5, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 11, + "color": 6, + "type": 2, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 390 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 540, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": 540, + "z": 0 + }, + "id": 470 + }, + { + "block": 5, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "lockTime": 4, + "id": 480 + }, + { + "block": 18, + "color": 1, + "type": 4, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "freezeTime": 6, + "id": 490 + }, + { + "block": 18, + "color": 7, + "type": 4, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "freezeTime": 6, + "id": 500 + }, + { + "block": 0, + "color": 8, + "type": 4, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "freezeTime": 2, + "id": 520 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "freezeTime": 2, + "id": 520 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 520 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 520 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 12, + "color": 1, + "special": 1, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 3, + "num": 33, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 34, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 24, + "color": 10, + "special": 1, + "length": 2 + }, + { + "id": 7, + "num": 26, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 8, + "num": 6, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 7, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 8, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 1, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 11, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 13, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 16, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 18, + "num": 22, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 19, + "num": 21, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 20, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 28, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 23, + "num": 29, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level128.json.meta b/assets/custom/Json/level128.json.meta new file mode 100644 index 0000000..94cabd2 --- /dev/null +++ b/assets/custom/Json/level128.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "510edcae-1f66-45f1-8bb4-3db4986cfa22", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level129.json b/assets/custom/Json/level129.json new file mode 100644 index 0000000..f246dd8 --- /dev/null +++ b/assets/custom/Json/level129.json @@ -0,0 +1,506 @@ +{ + "LEVEL_INFO": [ + { + "id": "121", + "map": [ + 10, + 12 + ], + "time": 170, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 19, + "color": 2, + "type": 2, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 6, + "type": 2, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 6, + "type": 8, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 8, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 4, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 5, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 7, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 8, + "id": 420 + }, + { + "block": 23, + "color": 7, + "type": 1, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "stacking": 8, + "id": 430 + }, + { + "block": 23, + "color": 7, + "type": 1, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "stacking": 8, + "id": 440 + }, + { + "block": 23, + "color": 7, + "type": 1, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "stacking": 8, + "id": 450 + }, + { + "block": 23, + "color": 7, + "type": 1, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "stacking": 8, + "id": 460 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 470 + }, + { + "block": 21, + "color": 7, + "type": 4, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "freezeTime": 3, + "id": 480 + }, + { + "block": 22, + "color": 5, + "type": 4, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "freezeTime": 3, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 21, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 23, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 26, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 22, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 24, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 10, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 34, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 35, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 4, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 18, + "num": 30, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 19, + "num": 16, + "color": 10, + "special": 1, + "length": 2 + }, + { + "id": 20, + "num": 18, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 21, + "num": 8, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 9, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level129.json.meta b/assets/custom/Json/level129.json.meta new file mode 100644 index 0000000..19ac99c --- /dev/null +++ b/assets/custom/Json/level129.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "672e5215-004a-4393-9969-1f76b342b288", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level13.json b/assets/custom/Json/level13.json new file mode 100644 index 0000000..747e5f7 --- /dev/null +++ b/assets/custom/Json/level13.json @@ -0,0 +1,394 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "13", + "map": [ + 9, + 9 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 27, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 1, + "num": 8, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 18, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 14, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 25, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 26, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 4, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 7, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 18, + "num": 19, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 19, + "num": 24, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 20, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 21, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 9, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 23, + "num": 11, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 25, + "num": 21, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 26, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 27, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level13.json.meta b/assets/custom/Json/level13.json.meta new file mode 100644 index 0000000..1529100 --- /dev/null +++ b/assets/custom/Json/level13.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "933d4cfc-5ecb-43c2-a7ec-f0b8ac153140", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level130.json b/assets/custom/Json/level130.json new file mode 100644 index 0000000..c541fbc --- /dev/null +++ b/assets/custom/Json/level130.json @@ -0,0 +1,641 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "130", + "map": [ + 11, + 13 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 540, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 540, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -660, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -660, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 18, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -660, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 6, + "type": 2, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 420, + "y": -660, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -660, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 540, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 540, + "z": 0 + }, + "id": 460 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 470 + }, + { + "block": 18, + "color": 9, + "type": 3, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "lockTime": 3, + "id": 480 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 540, + "z": 0 + }, + "id": 490 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 510 + }, + { + "block": 5, + "color": 5, + "type": 5, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 520 + }, + { + "block": 5, + "color": 5, + "type": 5, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 530 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 540 + }, + { + "block": 13, + "color": 9, + "type": 4, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "freezeTime": 2, + "id": 550 + }, + { + "block": 9, + "color": 6, + "type": 4, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "freezeTime": 2, + "id": 560 + }, + { + "block": 8, + "color": 7, + "type": 4, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "freezeTime": 6, + "id": 570 + }, + { + "block": 12, + "color": 9, + "type": 4, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "freezeTime": 6, + "id": 580 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 33, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 34, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 35, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 12, + "color": 5, + "special": 1, + "length": 3 + }, + { + "id": 5, + "num": 14, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 6, + "num": 16, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 7, + "num": 24, + "color": 5, + "special": 1, + "length": 3 + }, + { + "id": 8, + "num": 26, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 9, + "num": 28, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 10, + "num": 4, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 19, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 36, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 37, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 11, + "color": 5, + "special": 1, + "length": 3 + }, + { + "id": 17, + "num": 13, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 18, + "num": 15, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 19, + "num": 23, + "color": 5, + "special": 1, + "length": 3 + }, + { + "id": 20, + "num": 25, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 21, + "num": 27, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 22, + "num": 2, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 23, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 7, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 25, + "num": 8, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 26, + "num": 31, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 27, + "num": 32, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 28, + "num": 20, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level130.json.meta b/assets/custom/Json/level130.json.meta new file mode 100644 index 0000000..8a1dee6 --- /dev/null +++ b/assets/custom/Json/level130.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2eb31c5e-4f7a-42d8-a961-3b5e60583d3e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level131.json b/assets/custom/Json/level131.json new file mode 100644 index 0000000..26c3749 --- /dev/null +++ b/assets/custom/Json/level131.json @@ -0,0 +1,500 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 7, + "color": "7" + }, + { + "x": 5, + "y": 7, + "color": "7" + }, + { + "x": 6, + "y": 7, + "color": "7" + }, + { + "x": 4, + "y": 8, + "color": "7" + }, + { + "x": 5, + "y": 8, + "color": "7" + }, + { + "x": 6, + "y": 8, + "color": "7" + } + ], + "id": "131", + "map": [ + 11, + 11 + ], + "time": 250, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -420, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 540, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -420, + "y": -300, + "z": 0 + }, + "id": 450 + }, + { + "block": 18, + "color": 3, + "type": 3, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "lockTime": 6, + "id": 460 + }, + { + "block": 11, + "color": 7, + "type": 4, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "freezeTime": 4, + "id": 470 + }, + { + "block": 9, + "color": 6, + "type": 4, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "freezeTime": 8, + "id": 480 + }, + { + "block": 13, + "color": 9, + "type": 4, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "freezeTime": 12, + "id": 490 + }, + { + "block": 3, + "color": 6, + "type": 4, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "freezeTime": 16, + "id": 500 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 132, + "num": 16, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 133, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 134, + "num": 20, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 135, + "num": 32, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 136, + "num": 33, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 137, + "num": 28, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 138, + "num": 29, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 139, + "num": 5, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 140, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 141, + "num": 1, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 142, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 143, + "num": 15, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 144, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 145, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 146, + "num": 9, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 147, + "num": 25, + "color": 10, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level131.json.meta b/assets/custom/Json/level131.json.meta new file mode 100644 index 0000000..6a7a80e --- /dev/null +++ b/assets/custom/Json/level131.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "cfddd1e3-dca7-4b95-9892-46a6948315ca", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level132.json b/assets/custom/Json/level132.json new file mode 100644 index 0000000..d71135c --- /dev/null +++ b/assets/custom/Json/level132.json @@ -0,0 +1,395 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 2, + "color": "5" + }, + { + "x": 4, + "y": 2, + "color": "5" + } + ], + "id": "132", + "map": [ + 8, + 9 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 2, + "type": 4, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "freezeTime": 3, + "id": 410 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "freezeTime": 7, + "id": 420 + }, + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "freezeTime": 12, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 133, + "num": 1, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 134, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 135, + "num": 5, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 136, + "num": 10, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 137, + "num": 12, + "color": 10, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 138, + "num": 14, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 139, + "num": 16, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 140, + "num": 7, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 141, + "num": 9, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 142, + "num": 15, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 143, + "num": 17, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 144, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 145, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 146, + "num": 24, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level132.json.meta b/assets/custom/Json/level132.json.meta new file mode 100644 index 0000000..c14360d --- /dev/null +++ b/assets/custom/Json/level132.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8b4fe7f9-ceba-43bb-bb53-6ae24b9d9244", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level133.json b/assets/custom/Json/level133.json new file mode 100644 index 0000000..c0e6290 --- /dev/null +++ b/assets/custom/Json/level133.json @@ -0,0 +1,459 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "133", + "map": [ + 11, + 12 + ], + "time": 110, + "gap": [ + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 3, + "y": 4, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 9, + "y": 10, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 9, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 540, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 9, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 7, + "type": 2, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 1, + "type": 2, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 9, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 1, + "position": { + "x": 540, + "y": -120, + "z": 0 + }, + "stacking": 8, + "id": 300 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 540, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "lockTime": 3, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 1, + "position": { + "x": -420, + "y": 360, + "z": 0 + }, + "stacking": 1, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "freezeTime": 8, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 134, + "num": 32, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 135, + "num": 33, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 136, + "num": 35, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 137, + "num": 36, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 138, + "num": 37, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 139, + "num": 10, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 140, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 141, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 142, + "num": 7, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 143, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 144, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 145, + "num": 0, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 146, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 147, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level133.json.meta b/assets/custom/Json/level133.json.meta new file mode 100644 index 0000000..b0df79a --- /dev/null +++ b/assets/custom/Json/level133.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "fa10390d-fc46-4025-b791-04d326c1f013", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level134.json b/assets/custom/Json/level134.json new file mode 100644 index 0000000..b473db7 --- /dev/null +++ b/assets/custom/Json/level134.json @@ -0,0 +1,459 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "134", + "map": [ + 9, + 12 + ], + "time": 145, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 210 + }, + { + "block": 19, + "color": 2, + "type": 9, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "adhesiveTime": 1, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 16, + "color": 6, + "type": 2, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 10, + "type": 3, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "lockTime": 4, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 3, + "type": 4, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "freezeTime": 1, + "id": 420 + }, + { + "block": 5, + "color": 5, + "type": 4, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "freezeTime": 2, + "id": 430 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "freezeTime": 3, + "id": 440 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "freezeTime": 4, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 26, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 2, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 28, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 30, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 31, + "color": 8, + "special": 2, + "length": 3, + "lock": true + }, + { + "id": 15, + "num": 32, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 16, + "num": 33, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 17, + "num": 5, + "color": 8, + "special": 2, + "length": 3, + "lock": false + }, + { + "id": 18, + "num": 6, + "color": 8, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 19, + "num": 7, + "color": 8, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 20, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 21, + "num": 9, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level134.json.meta b/assets/custom/Json/level134.json.meta new file mode 100644 index 0000000..052e700 --- /dev/null +++ b/assets/custom/Json/level134.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "abae2d80-f428-4585-870a-295a24697637", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level135.json b/assets/custom/Json/level135.json new file mode 100644 index 0000000..dc971a5 --- /dev/null +++ b/assets/custom/Json/level135.json @@ -0,0 +1,578 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "135", + "map": [ + 11, + 14 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 10, + "color": 6, + "type": 0, + "position": { + "x": -420, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 540, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -420, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 600, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 19, + "color": 6, + "type": 2, + "position": { + "x": 540, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 20, + "color": 10, + "type": 2, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 430 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 440 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 450 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 460 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 480 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -720, + "z": 0 + }, + "id": 490 + }, + { + "block": 6, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 360, + "z": 0 + }, + "id": 500 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 510 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 520 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 530 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -720, + "z": 0 + }, + "id": 540 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 550 + }, + { + "block": 14, + "color": 10, + "type": 3, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "lockTime": 4, + "id": 560 + }, + { + "block": 15, + "color": 4, + "type": 4, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "freezeTime": 2, + "id": 570 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 136, + "num": 35, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 137, + "num": 36, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 138, + "num": 18, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 139, + "num": 20, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 140, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 141, + "num": 5, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 142, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 143, + "num": 13, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 144, + "num": 15, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 145, + "num": 23, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 146, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 147, + "num": 37, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 148, + "num": 38, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 149, + "num": 39, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 150, + "num": 27, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 151, + "num": 29, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 152, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 153, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 154, + "num": 7, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 155, + "num": 8, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 156, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level135.json.meta b/assets/custom/Json/level135.json.meta new file mode 100644 index 0000000..f186c74 --- /dev/null +++ b/assets/custom/Json/level135.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5080d509-53d2-44d1-90c4-349c2e006a19", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level136.json b/assets/custom/Json/level136.json new file mode 100644 index 0000000..89d762d --- /dev/null +++ b/assets/custom/Json/level136.json @@ -0,0 +1,575 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 2, + "color": "9" + }, + { + "x": 4, + "y": 3, + "color": "9" + }, + { + "x": 5, + "y": 2, + "color": "9" + }, + { + "x": 4, + "y": 5, + "color": "8" + }, + { + "x": 5, + "y": 5, + "color": "8" + }, + { + "x": 4, + "y": 6, + "color": "8" + } + ], + "id": "136", + "map": [ + 9, + 12 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 480, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 480 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 490 + }, + { + "block": 1, + "color": 4, + "type": 9, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 500 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 510 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 10, + "type": 5, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 530 + }, + { + "block": 1, + "color": 4, + "type": 5, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 540 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 550 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 137, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 138, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 139, + "num": 32, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 140, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 141, + "num": 24, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 142, + "num": 25, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 143, + "num": 19, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 144, + "num": 21, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 145, + "num": 4, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 146, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 147, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 148, + "num": 9, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 149, + "num": 28, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 150, + "num": 29, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 151, + "num": 14, + "color": 10, + "special": 1, + "length": 3 + }, + { + "id": 152, + "num": 16, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 153, + "num": 18, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 154, + "num": 13, + "color": 4, + "special": 1, + "length": 2 + }, + { + "id": 155, + "num": 15, + "color": 4, + "special": 1, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level136.json.meta b/assets/custom/Json/level136.json.meta new file mode 100644 index 0000000..7056dff --- /dev/null +++ b/assets/custom/Json/level136.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c21f6763-e9f2-4ade-96f8-5b52f938e3ae", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level137.json b/assets/custom/Json/level137.json new file mode 100644 index 0000000..3e93600 --- /dev/null +++ b/assets/custom/Json/level137.json @@ -0,0 +1,502 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "137", + "map": [ + 10, + 11 + ], + "time": 145, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 410 + }, + { + "block": 4, + "color": 8, + "type": 8, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 5, + "type": 8, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 460 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 470 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 2, + "type": 7, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 7, + "type": 7, + "position": { + "x": -240, + "y": -540, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 510 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 420, + "z": 0 + }, + "id": 520 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 530 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 540 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 550 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 560 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 138, + "num": 21, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 139, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 140, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 141, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 142, + "num": 7, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 143, + "num": 8, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 144, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 145, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 146, + "num": 2, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 147, + "num": 3, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 148, + "num": 30, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 149, + "num": 31, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level137.json.meta b/assets/custom/Json/level137.json.meta new file mode 100644 index 0000000..c689e9d --- /dev/null +++ b/assets/custom/Json/level137.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a790b6e5-b51f-4d1a-aa85-2832e8fcfc9f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level138.json b/assets/custom/Json/level138.json new file mode 100644 index 0000000..94e92ca --- /dev/null +++ b/assets/custom/Json/level138.json @@ -0,0 +1,512 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "138", + "map": [ + 11, + 13 + ], + "time": 55, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -660, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -660, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -660, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -660, + "z": 0 + }, + "id": 450 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 470 + }, + { + "block": 18, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 510 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 520 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 530 + }, + { + "block": 14, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "lockTime": 4, + "id": 540 + }, + { + "block": 0, + "color": 3, + "type": 4, + "position": { + "x": 60, + "y": 540, + "z": 0 + }, + "freezeTime": 8, + "id": 550 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "freezeTime": 11, + "id": 560 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 420 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 540, + "z": 0 + }, + "id": 430 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 440 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "id": 450 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 540, + "z": 0 + }, + "id": 460 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 540, + "z": 0 + }, + "id": 470 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 480 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 490 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 540, + "z": 0 + }, + "id": 500 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 510 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 520 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 530 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 540 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 550 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 560 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 139, + "num": 35, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 140, + "num": 36, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 141, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 142, + "num": 7, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 143, + "num": 38, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 144, + "num": 26, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 145, + "num": 28, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 146, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 147, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 148, + "num": 9, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 149, + "num": 17, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 150, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 151, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level138.json.meta b/assets/custom/Json/level138.json.meta new file mode 100644 index 0000000..edcbdc2 --- /dev/null +++ b/assets/custom/Json/level138.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f6714297-00e0-44fb-b706-e3fbef1f486d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level139.json b/assets/custom/Json/level139.json new file mode 100644 index 0000000..e211641 --- /dev/null +++ b/assets/custom/Json/level139.json @@ -0,0 +1,403 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 1, + "y": 7, + "color": "7" + }, + { + "x": 2, + "y": 7, + "color": "7" + }, + { + "x": 5, + "y": 7, + "color": "3" + }, + { + "x": 6, + "y": 7, + "color": "3" + } + ], + "id": "139", + "map": [ + 8, + 10 + ], + "time": 85, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 2, + "color": 2, + "type": 6, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "boomTime": 25, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 6, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "boomTime": 25, + "id": 340 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 5, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 5, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 5, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 140, + "num": 1, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 141, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 142, + "num": 8, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 143, + "num": 18, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 144, + "num": 23, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 145, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 146, + "num": 25, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 147, + "num": 21, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 148, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 149, + "num": 3, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 150, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 151, + "num": 5, + "color": 8, + "special": 1, + "length": 1 + }, + { + "id": 152, + "num": 26, + "color": 3, + "special": 1, + "length": 1 + }, + { + "id": 153, + "num": 6, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 154, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 155, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level139.json.meta b/assets/custom/Json/level139.json.meta new file mode 100644 index 0000000..0742f42 --- /dev/null +++ b/assets/custom/Json/level139.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9ad126e0-4c06-4e80-8376-4a7ab4e046bf", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level14.json b/assets/custom/Json/level14.json new file mode 100644 index 0000000..24eda1b --- /dev/null +++ b/assets/custom/Json/level14.json @@ -0,0 +1,234 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "14", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 310 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 14, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 13, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 3, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 21, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 22, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 6, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 8, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 1, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level14.json.meta b/assets/custom/Json/level14.json.meta new file mode 100644 index 0000000..1f7e2a3 --- /dev/null +++ b/assets/custom/Json/level14.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "257c6394-95e2-415a-b84f-aa8079faeb97", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level140.json b/assets/custom/Json/level140.json new file mode 100644 index 0000000..b1c26b4 --- /dev/null +++ b/assets/custom/Json/level140.json @@ -0,0 +1,360 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "140", + "map": [ + 7, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 18, + "color": 9, + "type": 3, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "lockTime": 8, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 15, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 141, + "num": 10, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 142, + "num": 12, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 143, + "num": 14, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 144, + "num": 2, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 145, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 146, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 147, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 148, + "num": 22, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 149, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 150, + "num": 13, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 151, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 152, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level140.json.meta b/assets/custom/Json/level140.json.meta new file mode 100644 index 0000000..0efcb4d --- /dev/null +++ b/assets/custom/Json/level140.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4bd2d099-e112-49c5-b0ec-680470952c3e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level141.json b/assets/custom/Json/level141.json new file mode 100644 index 0000000..f765759 --- /dev/null +++ b/assets/custom/Json/level141.json @@ -0,0 +1,296 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "141", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 20, + "color": 5, + "type": 4, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "freezeTime": 4, + "id": 370 + }, + { + "block": 22, + "color": 3, + "type": 4, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "freezeTime": 9, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 142, + "num": 18, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 143, + "num": 23, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 144, + "num": 5, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 145, + "num": 2, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 146, + "num": 0, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 147, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 148, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 149, + "num": 10, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 150, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 151, + "num": 20, + "color": 10, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level141.json.meta b/assets/custom/Json/level141.json.meta new file mode 100644 index 0000000..a8aeb77 --- /dev/null +++ b/assets/custom/Json/level141.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "407bfb1e-6181-40c6-8b1f-6bd368cb9507", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level142.json b/assets/custom/Json/level142.json new file mode 100644 index 0000000..a957038 --- /dev/null +++ b/assets/custom/Json/level142.json @@ -0,0 +1,431 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 6, + "y": 6, + "color": "2" + }, + { + "x": 7, + "y": 6, + "color": "2" + }, + { + "x": 6, + "y": 5, + "color": "2" + }, + { + "x": 7, + "y": 5, + "color": "2" + }, + { + "x": 1, + "y": 6, + "color": "5" + }, + { + "x": 2, + "y": 6, + "color": "5" + }, + { + "x": 1, + "y": 5, + "color": "5" + }, + { + "x": 2, + "y": 5, + "color": "5" + } + ], + "id": "142", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 3, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 3, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -300, + "y": 480, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 19, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 3, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 14, + "color": 10, + "type": 3, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "lockTime": 7, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 143, + "num": 20, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 144, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 145, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 146, + "num": 27, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 147, + "num": 30, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 148, + "num": 2, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 149, + "num": 3, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 150, + "num": 6, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 151, + "num": 7, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 152, + "num": 38, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 153, + "num": 39, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 154, + "num": 34, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 155, + "num": 35, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 156, + "num": 21, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level142.json.meta b/assets/custom/Json/level142.json.meta new file mode 100644 index 0000000..281b2fd --- /dev/null +++ b/assets/custom/Json/level142.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "04dc7ac0-3e79-43b0-baf1-f0b827edfcb6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level143.json b/assets/custom/Json/level143.json new file mode 100644 index 0000000..e5e2fdd --- /dev/null +++ b/assets/custom/Json/level143.json @@ -0,0 +1,283 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "143", + "map": [ + 8, + 8 + ], + "time": 95, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 3, + "color": 9, + "type": 6, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 45, + "id": 360 + }, + { + "block": 22, + "color": 3, + "type": 4, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "freezeTime": 4, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 144, + "num": 10, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 145, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 146, + "num": 7, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 147, + "num": 16, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 148, + "num": 3, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 149, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 150, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 151, + "num": 6, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 152, + "num": 17, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 153, + "num": 21, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level143.json.meta b/assets/custom/Json/level143.json.meta new file mode 100644 index 0000000..1d9f701 --- /dev/null +++ b/assets/custom/Json/level143.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f539cbbc-12a9-42a4-9a80-05013ba69d0b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level144.json b/assets/custom/Json/level144.json new file mode 100644 index 0000000..86c7b3c --- /dev/null +++ b/assets/custom/Json/level144.json @@ -0,0 +1,554 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "144", + "map": [ + 10, + 15 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 540, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 540, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": 660, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 660, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 430 + }, + { + "block": 14, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 440 + }, + { + "block": 14, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": -120, + "y": -780, + "z": 0 + }, + "adhesiveTime": 2, + "id": 480 + }, + { + "block": 3, + "color": 6, + "type": 9, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 490 + }, + { + "block": 3, + "color": 2, + "type": 9, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 500 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 240, + "y": -780, + "z": 0 + }, + "adhesiveTime": 1, + "id": 510 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -780, + "z": 0 + }, + "id": 520 + }, + { + "block": 18, + "color": 8, + "type": 4, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "freezeTime": 7, + "id": 530 + }, + { + "block": 18, + "color": 4, + "type": 4, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "freezeTime": 10, + "id": 540 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "freezeTime": 20, + "id": 550 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 145, + "num": 39, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 146, + "num": 40, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 147, + "num": 41, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 148, + "num": 17, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 149, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 150, + "num": 10, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 151, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 152, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 153, + "num": 37, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 154, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 155, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 156, + "num": 8, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 157, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 158, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 159, + "num": 2, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 160, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 161, + "num": 31, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 162, + "num": 32, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 163, + "num": 21, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 164, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level144.json.meta b/assets/custom/Json/level144.json.meta new file mode 100644 index 0000000..20943b1 --- /dev/null +++ b/assets/custom/Json/level144.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5417765e-1eff-4053-9572-b1d1197db88a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level145.json b/assets/custom/Json/level145.json new file mode 100644 index 0000000..2a27542 --- /dev/null +++ b/assets/custom/Json/level145.json @@ -0,0 +1,299 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "145", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 6, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 6, + "type": 1, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "stacking": 9, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 10, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 20, + "color": 10, + "type": 1, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "stacking": 3, + "id": 310 + }, + { + "block": 5, + "color": 3, + "type": 6, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 35, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 146, + "num": 12, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 147, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 148, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 149, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 150, + "num": 20, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 151, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 152, + "num": 23, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 153, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 154, + "num": 9, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 155, + "num": 11, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 156, + "num": 17, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 157, + "num": 19, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 158, + "num": 3, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 159, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level145.json.meta b/assets/custom/Json/level145.json.meta new file mode 100644 index 0000000..61a55bb --- /dev/null +++ b/assets/custom/Json/level145.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "87a1f7e1-e195-4224-9223-90f9bfcf81c8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level146.json b/assets/custom/Json/level146.json new file mode 100644 index 0000000..62302ca --- /dev/null +++ b/assets/custom/Json/level146.json @@ -0,0 +1,364 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 3, + "color": "2" + }, + { + "x": 4, + "y": 3, + "color": "2" + }, + { + "x": 5, + "y": 3, + "color": "2" + }, + { + "x": 3, + "y": 2, + "color": "5" + }, + { + "x": 4, + "y": 2, + "color": "5" + }, + { + "x": 5, + "y": 2, + "color": "5" + } + ], + "id": "146", + "map": [ + 9, + 9 + ], + "time": 95, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 147, + "num": 7, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 148, + "num": 9, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 149, + "num": 1, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 150, + "num": 10, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 151, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 152, + "num": 14, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 153, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 154, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 155, + "num": 22, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 156, + "num": 25, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 157, + "num": 4, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 158, + "num": 17, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 159, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level146.json.meta b/assets/custom/Json/level146.json.meta new file mode 100644 index 0000000..1c1ece0 --- /dev/null +++ b/assets/custom/Json/level146.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1f01b045-4882-4eae-9c4d-37103df09d36", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level147.json b/assets/custom/Json/level147.json new file mode 100644 index 0000000..4d9afee --- /dev/null +++ b/assets/custom/Json/level147.json @@ -0,0 +1,416 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 5, + "color": "7" + }, + { + "x": 3, + "y": 6, + "color": "7" + } + ], + "id": "147", + "map": [ + 7, + 11 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 0, + "color": 4, + "type": 7, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 2, + "type": 7, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 148, + "num": 16, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 149, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 150, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 151, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 152, + "num": 7, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 153, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 154, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 155, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 156, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 157, + "num": 26, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 158, + "num": 24, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 159, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 160, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 161, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 162, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 163, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 15, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 165, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level147.json.meta b/assets/custom/Json/level147.json.meta new file mode 100644 index 0000000..2210791 --- /dev/null +++ b/assets/custom/Json/level147.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2af3d18b-c59a-483c-ac3a-ec6056ba053e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level148.json b/assets/custom/Json/level148.json new file mode 100644 index 0000000..ff5e592 --- /dev/null +++ b/assets/custom/Json/level148.json @@ -0,0 +1,432 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 6, + "color": "9" + }, + { + "x": 4, + "y": 6, + "color": "9" + }, + { + "x": 4, + "y": 5, + "color": "9" + }, + { + "x": 3, + "y": 5, + "color": "9" + } + ], + "id": "148", + "map": [ + 8, + 10 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 1, + "type": 1, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "stacking": 5, + "id": 360 + }, + { + "block": 4, + "color": 5, + "type": 1, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "stacking": 1, + "id": 370 + }, + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "stacking": 7, + "id": 380 + }, + { + "block": 5, + "color": 9, + "type": 1, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "stacking": 1, + "id": 390 + }, + { + "block": 1, + "color": 2, + "type": 7, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 7, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 149, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 150, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 151, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 152, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 153, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 154, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 155, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 156, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 157, + "num": 26, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 158, + "num": 27, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 159, + "num": 23, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 160, + "num": 24, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 161, + "num": 25, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 162, + "num": 17, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 163, + "num": 19, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 165, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 166, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 167, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 168, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 169, + "num": 9, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 170, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level148.json.meta b/assets/custom/Json/level148.json.meta new file mode 100644 index 0000000..534b844 --- /dev/null +++ b/assets/custom/Json/level148.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7d884300-fa5a-466c-8a20-6acdbe42ceda", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level149.json b/assets/custom/Json/level149.json new file mode 100644 index 0000000..36965d6 --- /dev/null +++ b/assets/custom/Json/level149.json @@ -0,0 +1,312 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "149", + "map": [ + 9, + 12 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 18, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 6, + "type": 1, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "stacking": 1, + "id": 230 + }, + { + "block": 18, + "color": 3, + "type": 1, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "stacking": 6, + "id": 250 + }, + { + "block": 5, + "color": 10, + "type": 1, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "stacking": 3, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 20, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 18, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 6, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "boomTime": 60, + "id": 330 + }, + { + "block": 13, + "color": 1, + "type": 1, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "stacking": 9, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 13, + "color": 3, + "type": 1, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "stacking": 8, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 150, + "num": 10, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 151, + "num": 12, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 152, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 153, + "num": 18, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 154, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 155, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 156, + "num": 32, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 157, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 158, + "num": 28, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 159, + "num": 29, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 160, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 161, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 162, + "num": 15, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 163, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 19, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 165, + "num": 4, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 166, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level149.json.meta b/assets/custom/Json/level149.json.meta new file mode 100644 index 0000000..0af8a1f --- /dev/null +++ b/assets/custom/Json/level149.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "38201fb6-580d-498d-818a-9b513cd981ea", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level15.json b/assets/custom/Json/level15.json new file mode 100644 index 0000000..e9dbe58 --- /dev/null +++ b/assets/custom/Json/level15.json @@ -0,0 +1,382 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "15", + "map": [ + 8, + 11 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 18, + "color": 5, + "type": 1, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "stacking": 9, + "id": 210 + }, + { + "block": 15, + "color": 5, + "type": 1, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "stacking": 9, + "id": 220 + }, + { + "block": 14, + "color": 9, + "type": 1, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "stacking": 5, + "id": 230 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 6, + "color": 7, + "type": 1, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "stacking": 4, + "id": 250 + }, + { + "block": 18, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "stacking": 6, + "id": 270 + }, + { + "block": 8, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "stacking": 2, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 20, + "color": 2, + "type": 1, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "stacking": 6, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 6, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 8, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 21, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 22, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 10, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 12, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 9, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 13, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 16, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 16, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 20, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 15, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 20, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 0, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 23, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 25, + "num": 24, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 26, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 27, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 28, + "num": 27, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 29, + "num": 28, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 30, + "num": 29, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level15.json.meta b/assets/custom/Json/level15.json.meta new file mode 100644 index 0000000..f16ea35 --- /dev/null +++ b/assets/custom/Json/level15.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "059e1eb6-2d96-4ad8-83c6-eb9c43d16925", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level150.json b/assets/custom/Json/level150.json new file mode 100644 index 0000000..f261c74 --- /dev/null +++ b/assets/custom/Json/level150.json @@ -0,0 +1,424 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "150", + "map": [ + 10, + 12 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 270 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 5, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 5, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 17, + "color": 5, + "type": 0, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 400 + }, + { + "block": 16, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "freezeTime": 7, + "id": 450 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "freezeTime": 16, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 151, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 152, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 153, + "num": 33, + "color": 2, + "special": 1, + "length": 1 + }, + { + "id": 154, + "num": 7, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 155, + "num": 2, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 156, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 157, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 158, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 159, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 160, + "num": 14, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 161, + "num": 16, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 162, + "num": 18, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 163, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 28, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 165, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 166, + "num": 30, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level150.json.meta b/assets/custom/Json/level150.json.meta new file mode 100644 index 0000000..29281d3 --- /dev/null +++ b/assets/custom/Json/level150.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "dc754672-6abb-4801-910e-98ba5a873885", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level151.json b/assets/custom/Json/level151.json new file mode 100644 index 0000000..b21b6b6 --- /dev/null +++ b/assets/custom/Json/level151.json @@ -0,0 +1,255 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "151", + "map": [ + 7, + 9 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 10, + "type": 8, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 152, + "num": 20, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 153, + "num": 21, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 154, + "num": 15, + "color": 1, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 155, + "num": 7, + "color": 5, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 156, + "num": 16, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 157, + "num": 9, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 158, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 159, + "num": 13, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 160, + "num": 3, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 161, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 162, + "num": 8, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level151.json.meta b/assets/custom/Json/level151.json.meta new file mode 100644 index 0000000..a2d0cff --- /dev/null +++ b/assets/custom/Json/level151.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "892e12ad-70db-468f-b4bd-a2cd65677298", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level152.json b/assets/custom/Json/level152.json new file mode 100644 index 0000000..0aafa1e --- /dev/null +++ b/assets/custom/Json/level152.json @@ -0,0 +1,340 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "152", + "map": [ + 9, + 11 + ], + "time": 135, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 9, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 18, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 13, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 3, + "color": 9, + "type": 3, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "lockTime": 6, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 6, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "boomTime": 90, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 153, + "num": 12, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 154, + "num": 3, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 155, + "num": 29, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 156, + "num": 16, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 157, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 158, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 159, + "num": 30, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 160, + "num": 31, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 161, + "num": 15, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 162, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 163, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 165, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 166, + "num": 33, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level152.json.meta b/assets/custom/Json/level152.json.meta new file mode 100644 index 0000000..56f8c79 --- /dev/null +++ b/assets/custom/Json/level152.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c23a8d9a-37a2-4ee6-b9e3-3adf2f1d82be", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level153.json b/assets/custom/Json/level153.json new file mode 100644 index 0000000..c0e36da --- /dev/null +++ b/assets/custom/Json/level153.json @@ -0,0 +1,424 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 7, + "color": "8" + }, + { + "x": 4, + "y": 7, + "color": "8" + }, + { + "x": 5, + "y": 7, + "color": "8" + }, + { + "x": 3, + "y": 6, + "color": "8" + }, + { + "x": 4, + "y": 6, + "color": "8" + }, + { + "x": 5, + "y": 6, + "color": "8" + } + ], + "id": "153", + "map": [ + 9, + 12 + ], + "time": 80, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 7, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 154, + "num": 14, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 155, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 156, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 157, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 158, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 159, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 160, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 161, + "num": 29, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 162, + "num": 5, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 163, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 30, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 165, + "num": 31, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 166, + "num": 4, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 167, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 168, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 169, + "num": 27, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 170, + "num": 28, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level153.json.meta b/assets/custom/Json/level153.json.meta new file mode 100644 index 0000000..a3631ac --- /dev/null +++ b/assets/custom/Json/level153.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "779053a1-7af9-4a8b-88d7-8f7750f4e969", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level154.json b/assets/custom/Json/level154.json new file mode 100644 index 0000000..1e0ad93 --- /dev/null +++ b/assets/custom/Json/level154.json @@ -0,0 +1,394 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "154", + "map": [ + 8, + 10 + ], + "time": 85, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 3, + "type": 6, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 45, + "id": 290 + }, + { + "block": 16, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 17, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 155, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 156, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 157, + "num": 9, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 158, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 159, + "num": 5, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 160, + "num": 22, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 161, + "num": 25, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 162, + "num": 23, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 163, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 2, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level154.json.meta b/assets/custom/Json/level154.json.meta new file mode 100644 index 0000000..79fe28a --- /dev/null +++ b/assets/custom/Json/level154.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a81ff75b-b73d-433f-abf4-18849599cdff", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level155.json b/assets/custom/Json/level155.json new file mode 100644 index 0000000..ab1197e --- /dev/null +++ b/assets/custom/Json/level155.json @@ -0,0 +1,485 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 5, + "y": 4, + "color": "3" + }, + { + "x": 6, + "y": 4, + "color": "3" + }, + { + "x": 5, + "y": 5, + "color": "3" + }, + { + "x": 6, + "y": 5, + "color": "3" + }, + { + "x": 5, + "y": 6, + "color": "3" + }, + { + "x": 6, + "y": 6, + "color": "3" + }, + { + "x": 2, + "y": 5, + "color": "5" + }, + { + "x": 3, + "y": 5, + "color": "5" + }, + { + "x": 2, + "y": 6, + "color": "5" + }, + { + "x": 3, + "y": 6, + "color": "5" + }, + { + "x": 2, + "y": 7, + "color": "5" + }, + { + "x": 3, + "y": 7, + "color": "5" + } + ], + "id": "155", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 9, + "type": 7, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 156, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 157, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 158, + "num": 21, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 159, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 160, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 161, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 162, + "num": 9, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 163, + "num": 11, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 165, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 166, + "num": 2, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 167, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 168, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 169, + "num": 8, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 170, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 171, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 172, + "num": 22, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 173, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 174, + "num": 30, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 175, + "num": 31, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level155.json.meta b/assets/custom/Json/level155.json.meta new file mode 100644 index 0000000..bc25ba7 --- /dev/null +++ b/assets/custom/Json/level155.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ba3abf78-760a-4de6-a530-8952d6a424ba", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level156.json b/assets/custom/Json/level156.json new file mode 100644 index 0000000..bc2fffa --- /dev/null +++ b/assets/custom/Json/level156.json @@ -0,0 +1,288 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "156", + "map": [ + 9, + 9 + ], + "time": 125, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 8, + "type": 3, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "lockTime": 6, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 4, + "type": 8, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 157, + "num": 25, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 158, + "num": 10, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 159, + "num": 9, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 160, + "num": 4, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 161, + "num": 1, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 162, + "num": 22, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 163, + "num": 17, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 164, + "num": 18, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level156.json.meta b/assets/custom/Json/level156.json.meta new file mode 100644 index 0000000..fe6be3f --- /dev/null +++ b/assets/custom/Json/level156.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3b669f8e-12ad-4d16-9561-6fd9ace64638", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level157.json b/assets/custom/Json/level157.json new file mode 100644 index 0000000..5ddfe8a --- /dev/null +++ b/assets/custom/Json/level157.json @@ -0,0 +1,451 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "157", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 10, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 6, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 480, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 14, + "color": 6, + "type": 1, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 400 + }, + { + "block": 14, + "color": 8, + "type": 1, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "stacking": 9, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 158, + "num": 14, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 159, + "num": 18, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 160, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 161, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 162, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 163, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 164, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 165, + "num": 30, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 166, + "num": 31, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 167, + "num": 4, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 168, + "num": 5, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 169, + "num": 34, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 170, + "num": 35, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 171, + "num": 21, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level157.json.meta b/assets/custom/Json/level157.json.meta new file mode 100644 index 0000000..f8caa71 --- /dev/null +++ b/assets/custom/Json/level157.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b97dfffc-df55-4efa-a2b5-66c748fa8992", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level158.json b/assets/custom/Json/level158.json new file mode 100644 index 0000000..111e2a8 --- /dev/null +++ b/assets/custom/Json/level158.json @@ -0,0 +1,586 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 8, + "color": "6" + }, + { + "x": 5, + "y": 8, + "color": "6" + }, + { + "x": 4, + "y": 7, + "color": "6" + }, + { + "x": 5, + "y": 7, + "color": "6" + }, + { + "x": 3, + "y": 8, + "color": "6" + }, + { + "x": 3, + "y": 7, + "color": "6" + }, + { + "x": 6, + "y": 8, + "color": "6" + }, + { + "x": 6, + "y": 7, + "color": "6" + } + ], + "id": "158", + "map": [ + 10, + 15 + ], + "time": 120, + "gap": [ + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 13, + "z": 0 + }, + { + "x": 5, + "y": 13, + "z": 0 + }, + { + "x": 5, + "y": 12, + "z": 0 + }, + { + "x": 4, + "y": 12, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -540, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -780, + "z": 0 + }, + "id": 250 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -780, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 540, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 400 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 540, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": -360, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 450 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 460 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 470 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 159, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 160, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 161, + "num": 39, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 162, + "num": 40, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 163, + "num": 32, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 164, + "num": 34, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 165, + "num": 36, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 166, + "num": 8, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 167, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 168, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 169, + "num": 14, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 170, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 171, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 172, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 173, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 174, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 175, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 176, + "num": 41, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 177, + "num": 42, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 178, + "num": 31, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 179, + "num": 33, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 180, + "num": 45, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 181, + "num": 46, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 182, + "num": 47, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level158.json.meta b/assets/custom/Json/level158.json.meta new file mode 100644 index 0000000..b0dfc5b --- /dev/null +++ b/assets/custom/Json/level158.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b7511b6e-f062-438e-891c-0316f3451fe1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level159.json b/assets/custom/Json/level159.json new file mode 100644 index 0000000..8468915 --- /dev/null +++ b/assets/custom/Json/level159.json @@ -0,0 +1,443 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 6, + "color": "9" + }, + { + "x": 3, + "y": 6, + "color": "9" + }, + { + "x": 4, + "y": 6, + "color": "2" + }, + { + "x": 5, + "y": 6, + "color": "2" + } + ], + "id": "159", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 9, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 160, + "num": 23, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 161, + "num": 24, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 162, + "num": 3, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 163, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 11, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 165, + "num": 13, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 166, + "num": 15, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 167, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 168, + "num": 1, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 169, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 170, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 171, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 172, + "num": 10, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 173, + "num": 21, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level159.json.meta b/assets/custom/Json/level159.json.meta new file mode 100644 index 0000000..d114823 --- /dev/null +++ b/assets/custom/Json/level159.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "dccf64a3-d345-4f9a-940f-211254abf29d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level16.json b/assets/custom/Json/level16.json new file mode 100644 index 0000000..e288c3d --- /dev/null +++ b/assets/custom/Json/level16.json @@ -0,0 +1,269 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "16", + "map": [ + 7, + 9 + ], + "time": 80, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 20, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 21, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 11, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 12, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 10, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level16.json.meta b/assets/custom/Json/level16.json.meta new file mode 100644 index 0000000..97dd862 --- /dev/null +++ b/assets/custom/Json/level16.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2a1b17d6-1191-49f5-9d22-584e0776462b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level160.json b/assets/custom/Json/level160.json new file mode 100644 index 0000000..53f7b24 --- /dev/null +++ b/assets/custom/Json/level160.json @@ -0,0 +1,369 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "160", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "lockTime": 4, + "id": 300 + }, + { + "block": 23, + "color": 10, + "type": 3, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "lockTime": 4, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 4, + "type": 1, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "stacking": 3, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 161, + "num": 1, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 162, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 163, + "num": 21, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 164, + "num": 22, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 165, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 166, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 167, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 168, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 169, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 170, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 171, + "num": 9, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 172, + "num": 11, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 173, + "num": 17, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 174, + "num": 19, + "color": 10, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level160.json.meta b/assets/custom/Json/level160.json.meta new file mode 100644 index 0000000..7a27dd7 --- /dev/null +++ b/assets/custom/Json/level160.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "49dcf99f-7d47-4172-ae8f-223bada8dd07", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level161.json b/assets/custom/Json/level161.json new file mode 100644 index 0000000..8dd4122 --- /dev/null +++ b/assets/custom/Json/level161.json @@ -0,0 +1,420 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 3, + "color": "5" + }, + { + "x": 4, + "y": 3, + "color": "5" + }, + { + "x": 3, + "y": 2, + "color": "5" + }, + { + "x": 4, + "y": 2, + "color": "5" + } + ], + "id": "161", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 430 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 5, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 162, + "num": 3, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 163, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 164, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 165, + "num": 23, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 166, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 167, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 168, + "num": 21, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 169, + "num": 14, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 170, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 171, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 172, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 173, + "num": 1, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 174, + "num": 11, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 175, + "num": 13, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 176, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 177, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level161.json.meta b/assets/custom/Json/level161.json.meta new file mode 100644 index 0000000..e3f7ab4 --- /dev/null +++ b/assets/custom/Json/level161.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a44f03f2-3b84-44d2-a2e3-6e274a3705da", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level162.json b/assets/custom/Json/level162.json new file mode 100644 index 0000000..e6ffab6 --- /dev/null +++ b/assets/custom/Json/level162.json @@ -0,0 +1,384 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "162", + "map": [ + 8, + 10 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 330 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 7, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 7, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 430 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "freezeTime": 8, + "id": 440 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "freezeTime": 13, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 163, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 164, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 165, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 166, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 167, + "num": 23, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 168, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 169, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 170, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 171, + "num": 13, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 172, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 173, + "num": 3, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 174, + "num": 1, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level162.json.meta b/assets/custom/Json/level162.json.meta new file mode 100644 index 0000000..d5cd2e9 --- /dev/null +++ b/assets/custom/Json/level162.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f8b9f4b1-ed19-4273-8af4-38a259315f28", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level163.json b/assets/custom/Json/level163.json new file mode 100644 index 0000000..99430dc --- /dev/null +++ b/assets/custom/Json/level163.json @@ -0,0 +1,314 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "163", + "map": [ + 8, + 9 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 3, + "color": 8, + "type": 5, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 3, + "color": 6, + "type": 5, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "freezeTime": 7, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 164, + "num": 7, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 165, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 166, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 167, + "num": 3, + "color": 8, + "special": 1, + "length": 1 + }, + { + "id": 168, + "num": 13, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 169, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 170, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 171, + "num": 22, + "color": 6, + "special": 1, + "length": 1 + }, + { + "id": 172, + "num": 12, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 173, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 174, + "num": 0, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 175, + "num": 1, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 176, + "num": 19, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 177, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 178, + "num": 24, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 179, + "num": 25, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 180, + "num": 5, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 181, + "num": 6, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level163.json.meta b/assets/custom/Json/level163.json.meta new file mode 100644 index 0000000..159aad8 --- /dev/null +++ b/assets/custom/Json/level163.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "084e6c6d-bb25-4e87-b81b-cb52dc90da6a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level164.json b/assets/custom/Json/level164.json new file mode 100644 index 0000000..dcd2726 --- /dev/null +++ b/assets/custom/Json/level164.json @@ -0,0 +1,585 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 1, + "y": 9, + "color": "9" + }, + { + "x": 1, + "y": 8, + "color": "9" + }, + { + "x": 2, + "y": 9, + "color": "9" + }, + { + "x": 2, + "y": 8, + "color": "9" + }, + { + "x": 7, + "y": 9, + "color": "4" + }, + { + "x": 7, + "y": 8, + "color": "4" + }, + { + "x": 8, + "y": 9, + "color": "4" + }, + { + "x": 8, + "y": 8, + "color": "4" + } + ], + "id": "164", + "map": [ + 10, + 13 + ], + "time": 130, + "gap": [ + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -660, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 540, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 470 + }, + { + "block": 23, + "color": 6, + "type": 8, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 480 + }, + { + "block": 23, + "color": 6, + "type": 8, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 510 + }, + { + "block": 6, + "color": 8, + "type": 4, + "position": { + "x": -240, + "y": -540, + "z": 0 + }, + "freezeTime": 9, + "id": 520 + }, + { + "block": 10, + "color": 5, + "type": 4, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "freezeTime": 14, + "id": 530 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 165, + "num": 5, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 166, + "num": 6, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 167, + "num": 34, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 168, + "num": 35, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 169, + "num": 16, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 170, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 171, + "num": 20, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 172, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 173, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 174, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 175, + "num": 15, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 176, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 177, + "num": 19, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 178, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 179, + "num": 29, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 180, + "num": 30, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level164.json.meta b/assets/custom/Json/level164.json.meta new file mode 100644 index 0000000..ada4262 --- /dev/null +++ b/assets/custom/Json/level164.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "56d712e4-13eb-4a9e-ae7a-c2d8b01c5b56", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level165.json b/assets/custom/Json/level165.json new file mode 100644 index 0000000..a76715c --- /dev/null +++ b/assets/custom/Json/level165.json @@ -0,0 +1,343 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "165", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 4, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 7, + "type": 6, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 40, + "id": 220 + }, + { + "block": 0, + "color": 7, + "type": 8, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 166, + "num": 11, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 167, + "num": 13, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 168, + "num": 1, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 169, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 170, + "num": 34, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 171, + "num": 35, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 172, + "num": 22, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 173, + "num": 24, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 174, + "num": 6, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 175, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 176, + "num": 31, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 177, + "num": 32, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 178, + "num": 4, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 179, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 180, + "num": 23, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 181, + "num": 29, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level165.json.meta b/assets/custom/Json/level165.json.meta new file mode 100644 index 0000000..33def47 --- /dev/null +++ b/assets/custom/Json/level165.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "149845d3-f071-4816-9e50-4704ddbdd613", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level166.json b/assets/custom/Json/level166.json new file mode 100644 index 0000000..81d3c33 --- /dev/null +++ b/assets/custom/Json/level166.json @@ -0,0 +1,415 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 3, + "color": "10" + }, + { + "x": 2, + "y": 4, + "color": "10" + }, + { + "x": 5, + "y": 3, + "color": "2" + }, + { + "x": 5, + "y": 4, + "color": "2" + } + ], + "id": "166", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 5, + "type": 1, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "stacking": 3, + "id": 410 + }, + { + "block": 5, + "color": 3, + "type": 1, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "stacking": 5, + "id": 420 + }, + { + "block": 1, + "color": 1, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 167, + "num": 9, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 168, + "num": 11, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 169, + "num": 17, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 170, + "num": 19, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 171, + "num": 4, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 172, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 173, + "num": 1, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 174, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 175, + "num": 8, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 176, + "num": 10, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 177, + "num": 16, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 178, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 179, + "num": 21, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 180, + "num": 22, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 181, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 182, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level166.json.meta b/assets/custom/Json/level166.json.meta new file mode 100644 index 0000000..183c14f --- /dev/null +++ b/assets/custom/Json/level166.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3a7d2158-22bc-4869-a08f-3748cb4fbd82", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level167.json b/assets/custom/Json/level167.json new file mode 100644 index 0000000..17c49a6 --- /dev/null +++ b/assets/custom/Json/level167.json @@ -0,0 +1,293 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "167", + "map": [ + 8, + 8 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 4, + "type": 1, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "stacking": 10, + "id": 220 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "stacking": 8, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 6, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 10, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 168, + "num": 9, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 169, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 170, + "num": 13, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 171, + "num": 15, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 172, + "num": 16, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 173, + "num": 1, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 174, + "num": 22, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 175, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 176, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 177, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 178, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 179, + "num": 3, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level167.json.meta b/assets/custom/Json/level167.json.meta new file mode 100644 index 0000000..104640a --- /dev/null +++ b/assets/custom/Json/level167.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4f2ceaf6-3fe2-4974-b140-3d2e6ce8266b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level168.json b/assets/custom/Json/level168.json new file mode 100644 index 0000000..f26e3a2 --- /dev/null +++ b/assets/custom/Json/level168.json @@ -0,0 +1,474 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 8, + "y": 4, + "color": "9" + }, + { + "x": 8, + "y": 5, + "color": "9" + }, + { + "x": 8, + "y": 6, + "color": "9" + }, + { + "x": 2, + "y": 4, + "color": "4" + }, + { + "x": 2, + "y": 5, + "color": "4" + }, + { + "x": 2, + "y": 6, + "color": "4" + } + ], + "id": "168", + "map": [ + 11, + 11 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 470 + }, + { + "block": 18, + "color": 9, + "type": 3, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "lockTime": 6, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 169, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 170, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 171, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 172, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 173, + "num": 0, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 174, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 175, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 176, + "num": 33, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 177, + "num": 34, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 178, + "num": 35, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 179, + "num": 13, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 180, + "num": 21, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 181, + "num": 30, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 182, + "num": 31, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 183, + "num": 22, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 184, + "num": 24, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level168.json.meta b/assets/custom/Json/level168.json.meta new file mode 100644 index 0000000..dd56793 --- /dev/null +++ b/assets/custom/Json/level168.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "326c1fd3-da14-4465-a1c1-1352f93c85c7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level169.json b/assets/custom/Json/level169.json new file mode 100644 index 0000000..9658e6e --- /dev/null +++ b/assets/custom/Json/level169.json @@ -0,0 +1,280 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "169", + "map": [ + 8, + 8 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 2, + "color": 4, + "type": 9, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 2, + "type": 3, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "lockTime": 4, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 170, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 171, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 172, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 173, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 174, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 175, + "num": 8, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 176, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 177, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 178, + "num": 2, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 179, + "num": 3, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 180, + "num": 20, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 181, + "num": 21, + "color": 10, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level169.json.meta b/assets/custom/Json/level169.json.meta new file mode 100644 index 0000000..6bfb305 --- /dev/null +++ b/assets/custom/Json/level169.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5a94d402-5556-4c27-8dca-e531f356b183", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level17.json b/assets/custom/Json/level17.json new file mode 100644 index 0000000..ea87554 --- /dev/null +++ b/assets/custom/Json/level17.json @@ -0,0 +1,194 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "17", + "map": [ + 7, + 9 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 17, + "color": 1, + "type": 1, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "stacking": 8, + "id": 210 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 16, + "color": 8, + "type": 1, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "stacking": 3, + "id": 230 + }, + { + "block": 8, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 3, + "type": 1, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "stacking": 2, + "id": 290 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 12, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 1, + "num": 14, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 11, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level17.json.meta b/assets/custom/Json/level17.json.meta new file mode 100644 index 0000000..8c72592 --- /dev/null +++ b/assets/custom/Json/level17.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e480c6e1-3b6f-479e-a4af-c06173b519ea", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level170.json b/assets/custom/Json/level170.json new file mode 100644 index 0000000..4702d6c --- /dev/null +++ b/assets/custom/Json/level170.json @@ -0,0 +1,350 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "170", + "map": [ + 9, + 9 + ], + "time": 65, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 4, + "type": 5, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 5, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 14, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 171, + "num": 11, + "color": 2, + "special": 1, + "length": 1 + }, + { + "id": 172, + "num": 15, + "color": 4, + "special": 1, + "length": 1 + }, + { + "id": 173, + "num": 3, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 174, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 175, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 176, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 177, + "num": 26, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 178, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 179, + "num": 24, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 180, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 181, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 182, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 183, + "num": 5, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 184, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 185, + "num": 16, + "color": 10, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 186, + "num": 18, + "color": 10, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 187, + "num": 10, + "color": 4, + "special": 3, + "length": 2, + "freeze": 11 + }, + { + "id": 188, + "num": 12, + "color": 4, + "special": 3, + "length": 0, + "freeze": 11 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level170.json.meta b/assets/custom/Json/level170.json.meta new file mode 100644 index 0000000..0276c0d --- /dev/null +++ b/assets/custom/Json/level170.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "97aac509-ae22-41b9-a310-92c872a5875d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level171.json b/assets/custom/Json/level171.json new file mode 100644 index 0000000..64328b7 --- /dev/null +++ b/assets/custom/Json/level171.json @@ -0,0 +1,435 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "171", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 5, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 5, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 5, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "lockTime": 7, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 172, + "num": 6, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 173, + "num": 7, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 174, + "num": 11, + "color": 2, + "special": 1, + "length": 1 + }, + { + "id": 175, + "num": 17, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 176, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 177, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 178, + "num": 4, + "color": 6, + "special": 3, + "length": 2, + "freeze": 1 + }, + { + "id": 179, + "num": 5, + "color": 6, + "special": 3, + "length": 0, + "freeze": 1 + }, + { + "id": 180, + "num": 24, + "color": 1, + "special": 3, + "length": 2, + "freeze": 3 + }, + { + "id": 181, + "num": 25, + "color": 1, + "special": 3, + "length": 0, + "freeze": 3 + }, + { + "id": 182, + "num": 2, + "color": 3, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 183, + "num": 3, + "color": 3, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 184, + "num": 22, + "color": 9, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 185, + "num": 23, + "color": 9, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 186, + "num": 0, + "color": 7, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 187, + "num": 1, + "color": 7, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 188, + "num": 20, + "color": 8, + "special": 3, + "length": 2, + "freeze": 11 + }, + { + "id": 189, + "num": 21, + "color": 8, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 190, + "num": 16, + "color": 10, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 191, + "num": 18, + "color": 10, + "special": 3, + "length": 0, + "freeze": 15 + }, + { + "id": 192, + "num": 8, + "color": 4, + "special": 3, + "length": 2, + "freeze": 13 + }, + { + "id": 193, + "num": 10, + "color": 4, + "special": 3, + "length": 0, + "freeze": 13 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level171.json.meta b/assets/custom/Json/level171.json.meta new file mode 100644 index 0000000..6594c81 --- /dev/null +++ b/assets/custom/Json/level171.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "346c8bef-6ae9-4ff5-afff-0b6d07b464e0", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level172.json b/assets/custom/Json/level172.json new file mode 100644 index 0000000..374d2d4 --- /dev/null +++ b/assets/custom/Json/level172.json @@ -0,0 +1,410 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "172", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 5, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 173, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 174, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 175, + "num": 6, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 176, + "num": 7, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 177, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 178, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 179, + "num": 24, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 180, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 181, + "num": 1, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 182, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 183, + "num": 10, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 184, + "num": 16, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 185, + "num": 21, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 186, + "num": 22, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 187, + "num": 17, + "color": 9, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 188, + "num": 19, + "color": 9, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 189, + "num": 9, + "color": 6, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 190, + "num": 11, + "color": 6, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level172.json.meta b/assets/custom/Json/level172.json.meta new file mode 100644 index 0000000..ac2b2af --- /dev/null +++ b/assets/custom/Json/level172.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "af5fb282-d1c7-48d6-8019-44486109c3a5", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level173.json b/assets/custom/Json/level173.json new file mode 100644 index 0000000..fa97874 --- /dev/null +++ b/assets/custom/Json/level173.json @@ -0,0 +1,530 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "173", + "map": [ + 11, + 11 + ], + "time": 190, + "gap": [ + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 9, + "y": 6, + "z": 0 + }, + { + "x": 9, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 9, + "id": 440 + }, + { + "block": 2, + "color": 3, + "type": 4, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "freezeTime": 13, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 174, + "num": 0, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 175, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 176, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 177, + "num": 45, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 178, + "num": 46, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 179, + "num": 47, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 180, + "num": 44, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 181, + "num": 10, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 182, + "num": 26, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 183, + "num": 25, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 184, + "num": 11, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 185, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 186, + "num": 33, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 187, + "num": 35, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 188, + "num": 16, + "color": 4, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 189, + "num": 18, + "color": 4, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 190, + "num": 34, + "color": 9, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 191, + "num": 40, + "color": 9, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level173.json.meta b/assets/custom/Json/level173.json.meta new file mode 100644 index 0000000..59a1e51 --- /dev/null +++ b/assets/custom/Json/level173.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "22e42ec9-8380-448e-8d06-24b6ea71c817", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level174.json b/assets/custom/Json/level174.json new file mode 100644 index 0000000..fd3ea15 --- /dev/null +++ b/assets/custom/Json/level174.json @@ -0,0 +1,488 @@ +{ + "LEVEL_INFO": [ + { + "id": "122", + "map": [ + 10, + 12 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 18, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 10, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 1, + "type": 8, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 8, + "color": 2, + "type": 8, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 8, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 7, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 3, + "color": 9, + "type": 7, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 15, + "color": 3, + "type": 7, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 6, + "type": 1, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "stacking": 5, + "id": 380 + }, + { + "block": 21, + "color": 8, + "type": 4, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "freezeTime": 9, + "id": 390 + }, + { + "block": 22, + "color": 3, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 9, + "id": 400 + }, + { + "block": 4, + "color": 7, + "type": 4, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "freezeTime": 15, + "id": 410 + }, + { + "block": 19, + "color": 9, + "type": 4, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "freezeTime": 17, + "id": 420 + }, + { + "block": 22, + "color": 9, + "type": 4, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "freezeTime": 18, + "id": 430 + }, + { + "block": 21, + "color": 6, + "type": 4, + "position": { + "x": -360, + "y": 360, + "z": 0 + }, + "freezeTime": 19, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 23, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 25, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 17, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 19, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 21, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 2, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 20, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 22, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 5, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 18, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 30, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 21, + "num": 31, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 28, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 23, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 32, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 25, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 26, + "num": 14, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 27, + "num": 16, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 28, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level174.json.meta b/assets/custom/Json/level174.json.meta new file mode 100644 index 0000000..bca6a22 --- /dev/null +++ b/assets/custom/Json/level174.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7b87a1c6-ba69-49ee-b38f-555e2a799442", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level175.json b/assets/custom/Json/level175.json new file mode 100644 index 0000000..1a6c5b3 --- /dev/null +++ b/assets/custom/Json/level175.json @@ -0,0 +1,419 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "175", + "map": [ + 8, + 10 + ], + "time": 95, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 4, + "type": 8, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 5, + "type": 8, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 6, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "boomTime": 17, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 6, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "boomTime": 20, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 176, + "num": 13, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 177, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 178, + "num": 5, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 179, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 180, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 181, + "num": 0, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 182, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 183, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 184, + "num": 20, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 185, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 186, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 187, + "num": 25, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 188, + "num": 26, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 189, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 190, + "num": 12, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 191, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 192, + "num": 8, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 193, + "num": 18, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 194, + "num": 9, + "color": 2, + "special": 3, + "length": 1, + "freeze": 10 + }, + { + "id": 195, + "num": 19, + "color": 7, + "special": 3, + "length": 1, + "freeze": 15 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level175.json.meta b/assets/custom/Json/level175.json.meta new file mode 100644 index 0000000..fb13ac7 --- /dev/null +++ b/assets/custom/Json/level175.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "39db2cb5-8d69-4561-82bc-eac5ca630d0a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level176.json b/assets/custom/Json/level176.json new file mode 100644 index 0000000..aedecb5 --- /dev/null +++ b/assets/custom/Json/level176.json @@ -0,0 +1,377 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "176", + "map": [ + 9, + 12 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 6, + "type": 2, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 14, + "color": 7, + "type": 2, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 18, + "color": 5, + "type": 3, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "lockTime": 6, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 10, + "color": 3, + "type": 4, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "freezeTime": 7, + "id": 380 + }, + { + "block": 6, + "color": 6, + "type": 4, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "freezeTime": 12, + "id": 390 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "freezeTime": 17, + "id": 400 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "freezeTime": 16, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 32, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 13, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 24, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 0, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 29, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 8, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 9, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 14, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 16, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level176.json.meta b/assets/custom/Json/level176.json.meta new file mode 100644 index 0000000..07e2160 --- /dev/null +++ b/assets/custom/Json/level176.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d744860a-9150-42ce-b307-470c2ea198fc", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level177.json b/assets/custom/Json/level177.json new file mode 100644 index 0000000..ac021f9 --- /dev/null +++ b/assets/custom/Json/level177.json @@ -0,0 +1,418 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "177", + "map": [ + 8, + 10 + ], + "time": 165, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 8, + "id": 390 + }, + { + "block": 12, + "color": 7, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 8, + "id": 400 + }, + { + "block": 10, + "color": 4, + "type": 4, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "freezeTime": 13, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 12, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 8, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 6, + "num": 10, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 7, + "num": 17, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 8, + "num": 19, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 9, + "num": 16, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 10, + "num": 18, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 11, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 25, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 26, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 27, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 9, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 17, + "num": 11, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 18, + "num": 21, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 5, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 21, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 7, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level177.json.meta b/assets/custom/Json/level177.json.meta new file mode 100644 index 0000000..95b1e90 --- /dev/null +++ b/assets/custom/Json/level177.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5023ef6f-049c-468f-91cf-041bd32494dc", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level178.json b/assets/custom/Json/level178.json new file mode 100644 index 0000000..3a129c0 --- /dev/null +++ b/assets/custom/Json/level178.json @@ -0,0 +1,287 @@ +{ + "LEVEL_INFO": [ + { + "id": "123", + "map": [ + 6, + 9 + ], + "time": 60, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "freezeTime": 13, + "id": 360 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "freezeTime": 13, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 10, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 14, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 2, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 7, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 13, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 15, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level178.json.meta b/assets/custom/Json/level178.json.meta new file mode 100644 index 0000000..4cb482f --- /dev/null +++ b/assets/custom/Json/level178.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "fd7bab1a-7bb0-4569-911a-7d02aaae007f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level179.json b/assets/custom/Json/level179.json new file mode 100644 index 0000000..5c765bd --- /dev/null +++ b/assets/custom/Json/level179.json @@ -0,0 +1,482 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 3, + "color": "2" + }, + { + "x": 4, + "y": 3, + "color": "2" + }, + { + "x": 3, + "y": 6, + "color": "9" + }, + { + "x": 4, + "y": 6, + "color": "9" + }, + { + "x": 4, + "y": 7, + "color": "9" + }, + { + "x": 3, + "y": 7, + "color": "9" + } + ], + "id": "179", + "map": [ + 8, + 10 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 8, + "type": 6, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "boomTime": 20, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 180, + "num": 10, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 181, + "num": 12, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 182, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 183, + "num": 16, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 184, + "num": 21, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 185, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 186, + "num": 1, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 187, + "num": 2, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 188, + "num": 23, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 189, + "num": 24, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 190, + "num": 3, + "color": 4, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 191, + "num": 4, + "color": 4, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 192, + "num": 11, + "color": 1, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 193, + "num": 13, + "color": 1, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 194, + "num": 15, + "color": 6, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 195, + "num": 17, + "color": 6, + "special": 3, + "length": 0, + "freeze": 9 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level179.json.meta b/assets/custom/Json/level179.json.meta new file mode 100644 index 0000000..b554936 --- /dev/null +++ b/assets/custom/Json/level179.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "31cf9713-3adf-4fb4-a04c-9b348680300f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level18.json b/assets/custom/Json/level18.json new file mode 100644 index 0000000..507f330 --- /dev/null +++ b/assets/custom/Json/level18.json @@ -0,0 +1,484 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "18", + "map": [ + 11, + 11 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 8, + "type": 8, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 8, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 18, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 18, + "color": 1, + "type": 1, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "stacking": 8, + "id": 290 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 12, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 14, + "color": 5, + "type": 1, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "stacking": 2, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 2, + "type": 1, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "stacking": 8, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 12, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 1, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 3, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 13, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 10, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 32, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 33, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 34, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 35, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 16, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 18, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 29, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 19, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 31, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 22, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 22, + "num": 24, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 26, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 4, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 25, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 26, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 27, + "num": 9, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 28, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 29, + "num": 23, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 30, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level18.json.meta b/assets/custom/Json/level18.json.meta new file mode 100644 index 0000000..5406a89 --- /dev/null +++ b/assets/custom/Json/level18.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b77a22b4-309b-44fa-abd8-2969a04f40c1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level180.json b/assets/custom/Json/level180.json new file mode 100644 index 0000000..03567fd --- /dev/null +++ b/assets/custom/Json/level180.json @@ -0,0 +1,253 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "180", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 10, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 12, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 0, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 9, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 13, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 21, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 3, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level180.json.meta b/assets/custom/Json/level180.json.meta new file mode 100644 index 0000000..e8dab4a --- /dev/null +++ b/assets/custom/Json/level180.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "31b3e941-d9f9-475a-8a87-5f56cf5def07", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level181.json b/assets/custom/Json/level181.json new file mode 100644 index 0000000..66ec76c --- /dev/null +++ b/assets/custom/Json/level181.json @@ -0,0 +1,316 @@ +{ + "LEVEL_INFO": [ + { + "id": "127", + "map": [ + 6, + 9 + ], + "time": 135, + "gap": [ + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 18, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 8, + "color": 8, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 4, + "num": 3, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 20, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 21, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 7, + "color": 2, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 9, + "num": 16, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 15, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level181.json.meta b/assets/custom/Json/level181.json.meta new file mode 100644 index 0000000..839feab --- /dev/null +++ b/assets/custom/Json/level181.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ab7d8a5f-67d5-4f5e-9cb6-91f183bc06c7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level182.json b/assets/custom/Json/level182.json new file mode 100644 index 0000000..17f3a4e --- /dev/null +++ b/assets/custom/Json/level182.json @@ -0,0 +1,394 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 1, + "y": 7, + "color": "4" + }, + { + "x": 2, + "y": 7, + "color": "4" + }, + { + "x": 5, + "y": 7, + "color": "3" + }, + { + "x": 6, + "y": 7, + "color": "3" + } + ], + "id": "182", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 5, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 183, + "num": 11, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 184, + "num": 13, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 185, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 186, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 187, + "num": 3, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 188, + "num": 23, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 189, + "num": 24, + "color": 10, + "special": 1, + "length": 2 + }, + { + "id": 190, + "num": 25, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 191, + "num": 4, + "color": 5, + "special": 1, + "length": 2 + }, + { + "id": 192, + "num": 5, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 193, + "num": 1, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 194, + "num": 10, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 195, + "num": 16, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 196, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level182.json.meta b/assets/custom/Json/level182.json.meta new file mode 100644 index 0000000..bddb500 --- /dev/null +++ b/assets/custom/Json/level182.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "97b424fd-f138-4ad3-a825-e0e4ab0a397e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level183.json b/assets/custom/Json/level183.json new file mode 100644 index 0000000..7b55d36 --- /dev/null +++ b/assets/custom/Json/level183.json @@ -0,0 +1,446 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "183", + "map": [ + 8, + 10 + ], + "time": 155, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 8, + "type": 6, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "boomTime": 15, + "id": 450 + }, + { + "block": 1, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "freezeTime": 8, + "id": 460 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 12, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 184, + "num": 9, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 185, + "num": 11, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 186, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 187, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 188, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 189, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 190, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 191, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 192, + "num": 5, + "color": 9, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 193, + "num": 6, + "color": 9, + "special": 3, + "length": 0, + "freeze": 4 + }, + { + "id": 194, + "num": 25, + "color": 10, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 195, + "num": 26, + "color": 10, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 196, + "num": 1, + "color": 7, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 197, + "num": 2, + "color": 7, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 198, + "num": 21, + "color": 4, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 199, + "num": 22, + "color": 4, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level183.json.meta b/assets/custom/Json/level183.json.meta new file mode 100644 index 0000000..06bdc31 --- /dev/null +++ b/assets/custom/Json/level183.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4d3df186-4cbc-4d6c-867e-7148aa60da2d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level184.json b/assets/custom/Json/level184.json new file mode 100644 index 0000000..81c5659 --- /dev/null +++ b/assets/custom/Json/level184.json @@ -0,0 +1,567 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "184", + "map": [ + 10, + 13 + ], + "time": 140, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 3, + "y": 11, + "z": 0 + }, + { + "x": 6, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "lockTime": 6, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 420 + }, + { + "block": 6, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 440 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 470 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 480 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 500 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 510 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 530 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 540 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 550 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 4, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 0, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 14, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 32, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 18, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 2, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 30, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 34, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level184.json.meta b/assets/custom/Json/level184.json.meta new file mode 100644 index 0000000..af84796 --- /dev/null +++ b/assets/custom/Json/level184.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9a576da6-020b-4b8c-a501-7ff5658716ed", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level185.json b/assets/custom/Json/level185.json new file mode 100644 index 0000000..72500da --- /dev/null +++ b/assets/custom/Json/level185.json @@ -0,0 +1,648 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "185", + "map": [ + 11, + 11 + ], + "time": 220, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 410 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 490 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 500 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 510 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 530 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 540 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 550 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 560 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 570 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 580 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 590 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 600 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 610 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 620 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 630 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 640 + }, + { + "block": 4, + "color": 8, + "type": 4, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "freezeTime": 9, + "id": 650 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 30, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 31, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 32, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 12, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 14, + "color": 4, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 6, + "num": 16, + "color": 4, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 7, + "num": 20, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 8, + "num": 22, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 9, + "num": 3, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 19, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 24, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 15, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 11, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 21, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level185.json.meta b/assets/custom/Json/level185.json.meta new file mode 100644 index 0000000..7139e5d --- /dev/null +++ b/assets/custom/Json/level185.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "79f1ee93-d988-456a-86fa-747087b90306", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level186.json b/assets/custom/Json/level186.json new file mode 100644 index 0000000..0edcbbd --- /dev/null +++ b/assets/custom/Json/level186.json @@ -0,0 +1,430 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 6, + "color": "9" + }, + { + "x": 4, + "y": 6, + "color": "9" + }, + { + "x": 4, + "y": 5, + "color": "9" + }, + { + "x": 3, + "y": 5, + "color": "9" + }, + { + "x": 2, + "y": 6, + "color": "7" + }, + { + "x": 2, + "y": 5, + "color": "7" + }, + { + "x": 5, + "y": 6, + "color": "7" + }, + { + "x": 5, + "y": 5, + "color": "7" + } + ], + "id": "186", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 9, + "type": 1, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "stacking": 2, + "id": 380 + }, + { + "block": 4, + "color": 4, + "type": 1, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "stacking": 9, + "id": 390 + }, + { + "block": 5, + "color": 9, + "type": 1, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "stacking": 5, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 187, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 188, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 189, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 190, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 191, + "num": 21, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 192, + "num": 22, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 193, + "num": 9, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 194, + "num": 11, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 195, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 196, + "num": 10, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 197, + "num": 16, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 198, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 199, + "num": 1, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 200, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 201, + "num": 4, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 202, + "num": 24, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 203, + "num": 13, + "color": 10, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 204, + "num": 15, + "color": 10, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 205, + "num": 5, + "color": 8, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 206, + "num": 6, + "color": 8, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level186.json.meta b/assets/custom/Json/level186.json.meta new file mode 100644 index 0000000..9daa2c6 --- /dev/null +++ b/assets/custom/Json/level186.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d31a3872-b963-484a-983a-fd233612e937", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level187.json b/assets/custom/Json/level187.json new file mode 100644 index 0000000..4bd0699 --- /dev/null +++ b/assets/custom/Json/level187.json @@ -0,0 +1,455 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "187", + "map": [ + 10, + 12 + ], + "time": 125, + "gap": [ + { + "x": 3, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 10, + "type": 1, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "stacking": 6, + "id": 230 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 6, + "type": 1, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "stacking": 9, + "id": 390 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 6, + "color": 9, + "type": 4, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "freezeTime": 7, + "id": 410 + }, + { + "block": 10, + "color": 8, + "type": 4, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "freezeTime": 13, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 13, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 6, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 8, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 19, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 21, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 22, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 20, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 34, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 35, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 2, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 29, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 31, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 38, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 39, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 40, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level187.json.meta b/assets/custom/Json/level187.json.meta new file mode 100644 index 0000000..61ad1e6 --- /dev/null +++ b/assets/custom/Json/level187.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "91f5c47a-909e-45f5-a1ea-011bc9778b32", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level188.json b/assets/custom/Json/level188.json new file mode 100644 index 0000000..133224f --- /dev/null +++ b/assets/custom/Json/level188.json @@ -0,0 +1,417 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 6, + "color": "1" + }, + { + "x": 3, + "y": 5, + "color": "1" + }, + { + "x": 4, + "y": 6, + "color": "1" + }, + { + "x": 4, + "y": 5, + "color": "1" + } + ], + "id": "188", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 189, + "num": 11, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 190, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 191, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 192, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 193, + "num": 1, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 194, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 195, + "num": 10, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 196, + "num": 16, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 197, + "num": 4, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 198, + "num": 5, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 199, + "num": 12, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 200, + "num": 14, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 201, + "num": 24, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 202, + "num": 25, + "color": 10, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level188.json.meta b/assets/custom/Json/level188.json.meta new file mode 100644 index 0000000..a678783 --- /dev/null +++ b/assets/custom/Json/level188.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5dd5f31d-cabc-4195-adcb-971b73358067", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level189.json b/assets/custom/Json/level189.json new file mode 100644 index 0000000..164611a --- /dev/null +++ b/assets/custom/Json/level189.json @@ -0,0 +1,544 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "189", + "map": [ + 10, + 12 + ], + "time": 75, + "gap": [ + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 19, + "color": 5, + "type": 9, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 20, + "color": 1, + "type": 9, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 460 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 470 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 480 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 500 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 530 + }, + { + "block": 4, + "color": 6, + "type": 8, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 540 + }, + { + "block": 4, + "color": 1, + "type": 8, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 550 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 25, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 11, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 14, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 4, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 19, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 36, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 37, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 33, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 34, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 35, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 18, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level189.json.meta b/assets/custom/Json/level189.json.meta new file mode 100644 index 0000000..94db77b --- /dev/null +++ b/assets/custom/Json/level189.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d0568895-34b2-4658-a17e-474c3e992cd6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level19.json b/assets/custom/Json/level19.json new file mode 100644 index 0000000..b458a2d --- /dev/null +++ b/assets/custom/Json/level19.json @@ -0,0 +1,216 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "19", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [ + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 17, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 16, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 270 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 20, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 21, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 23, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 25, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 26, + "num": 25, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 27, + "num": 26, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level19.json.meta b/assets/custom/Json/level19.json.meta new file mode 100644 index 0000000..3359bac --- /dev/null +++ b/assets/custom/Json/level19.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "92a55f0e-c363-4a6c-8f90-184e94ab3627", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level190.json b/assets/custom/Json/level190.json new file mode 100644 index 0000000..af4bbbe --- /dev/null +++ b/assets/custom/Json/level190.json @@ -0,0 +1,428 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "190", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 11, + "id": 450 + }, + { + "block": 1, + "color": 4, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 15, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 191, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 192, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 193, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 194, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 195, + "num": 1, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 196, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 197, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 198, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 199, + "num": 24, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 200, + "num": 4, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 201, + "num": 11, + "color": 6, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 202, + "num": 13, + "color": 6, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 203, + "num": 12, + "color": 4, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 204, + "num": 14, + "color": 4, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 205, + "num": 15, + "color": 10, + "special": 3, + "length": 2, + "freeze": 13 + }, + { + "id": 206, + "num": 17, + "color": 10, + "special": 3, + "length": 0, + "freeze": 13 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level190.json.meta b/assets/custom/Json/level190.json.meta new file mode 100644 index 0000000..6714f90 --- /dev/null +++ b/assets/custom/Json/level190.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "70d4f772-89e9-453e-ae12-bfbad2112aff", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level191.json b/assets/custom/Json/level191.json new file mode 100644 index 0000000..4b713ae --- /dev/null +++ b/assets/custom/Json/level191.json @@ -0,0 +1,301 @@ +{ + "LEVEL_INFO": [ + { + "id": "64", + "map": [ + 8, + 8 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 1, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "stacking": 9, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 17, + "color": 1, + "type": 1, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "stacking": 3, + "id": 290 + }, + { + "block": 16, + "color": 3, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 1, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "stacking": 8, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 8, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 2, + "num": 6, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 11, + "color": 9, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 4, + "num": 3, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 18, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 1, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 0, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 19, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 21, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 23, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level191.json.meta b/assets/custom/Json/level191.json.meta new file mode 100644 index 0000000..8dbd984 --- /dev/null +++ b/assets/custom/Json/level191.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9fd9f044-2fdb-4ca2-9ba4-ecf9b1b30b82", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level192.json b/assets/custom/Json/level192.json new file mode 100644 index 0000000..1a51741 --- /dev/null +++ b/assets/custom/Json/level192.json @@ -0,0 +1,425 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 8, + "color": "5" + }, + { + "x": 3, + "y": 8, + "color": "5" + }, + { + "x": 2, + "y": 7, + "color": "5" + }, + { + "x": 3, + "y": 7, + "color": "5" + }, + { + "x": 5, + "y": 8, + "color": "8" + }, + { + "x": 6, + "y": 8, + "color": "8" + }, + { + "x": 5, + "y": 7, + "color": "8" + }, + { + "x": 6, + "y": 7, + "color": "8" + } + ], + "id": "192", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 13, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 9, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 7, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 7, + "type": 6, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "boomTime": 20, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 193, + "num": 14, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 194, + "num": 18, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 195, + "num": 28, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 196, + "num": 29, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 197, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 198, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 199, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 200, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 201, + "num": 32, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 202, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 203, + "num": 7, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 204, + "num": 8, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 205, + "num": 3, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 206, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level192.json.meta b/assets/custom/Json/level192.json.meta new file mode 100644 index 0000000..cae55b1 --- /dev/null +++ b/assets/custom/Json/level192.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9692bf1b-24ae-4240-86c2-6fce3234b1ba", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level193.json b/assets/custom/Json/level193.json new file mode 100644 index 0000000..d0b3bde --- /dev/null +++ b/assets/custom/Json/level193.json @@ -0,0 +1,448 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "193", + "map": [ + 9, + 11 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 9, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 13, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 7, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 7, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 1, + "type": 6, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "boomTime": 18, + "id": 430 + }, + { + "block": 2, + "color": 3, + "type": 4, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "freezeTime": 11, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 194, + "num": 12, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 195, + "num": 20, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 196, + "num": 14, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 197, + "num": 16, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 198, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 199, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 200, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 201, + "num": 29, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 202, + "num": 30, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 203, + "num": 26, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 204, + "num": 27, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 205, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 206, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 207, + "num": 11, + "color": 5, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 208, + "num": 13, + "color": 5, + "special": 3, + "length": 0, + "freeze": 15 + }, + { + "id": 209, + "num": 17, + "color": 6, + "special": 3, + "length": 2, + "freeze": 20 + }, + { + "id": 210, + "num": 19, + "color": 6, + "special": 3, + "length": 0, + "freeze": 20 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level193.json.meta b/assets/custom/Json/level193.json.meta new file mode 100644 index 0000000..9c173cd --- /dev/null +++ b/assets/custom/Json/level193.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "897e85b8-20f8-4b81-92d3-41884878d93c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level194.json b/assets/custom/Json/level194.json new file mode 100644 index 0000000..d0a10dc --- /dev/null +++ b/assets/custom/Json/level194.json @@ -0,0 +1,473 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "194", + "map": [ + 10, + 13 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 3, + "type": 8, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 5, + "type": 8, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": -120, + "y": 540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 430 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 440 + }, + { + "block": 10, + "color": 9, + "type": 4, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "freezeTime": 7, + "id": 450 + }, + { + "block": 6, + "color": 9, + "type": 4, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "freezeTime": 9, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 18, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 26, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 19, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 21, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 2, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 3, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 38, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 39, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 40, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 6, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 34, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 35, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level194.json.meta b/assets/custom/Json/level194.json.meta new file mode 100644 index 0000000..5f18bf8 --- /dev/null +++ b/assets/custom/Json/level194.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d925cd9b-05a6-4bf3-b026-eb30c85daeb9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level195.json b/assets/custom/Json/level195.json new file mode 100644 index 0000000..eb898b4 --- /dev/null +++ b/assets/custom/Json/level195.json @@ -0,0 +1,456 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "195", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 9, + "type": 1, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "stacking": 10, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 6, + "color": 8, + "type": 1, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "stacking": 6, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 7, + "type": 1, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "stacking": 3, + "id": 400 + }, + { + "block": 8, + "color": 4, + "type": 1, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "stacking": 7, + "id": 410 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "boomTime": 30, + "id": 430 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 23, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 26, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 28, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 29, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 18, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 20, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 2, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 17, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 19, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 32, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 33, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 34, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 10, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 11, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 27, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level195.json.meta b/assets/custom/Json/level195.json.meta new file mode 100644 index 0000000..54d4842 --- /dev/null +++ b/assets/custom/Json/level195.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "98042e13-c30b-4ba4-94d3-804b8b32ac78", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level196.json b/assets/custom/Json/level196.json new file mode 100644 index 0000000..00b24c8 --- /dev/null +++ b/assets/custom/Json/level196.json @@ -0,0 +1,409 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "196", + "map": [ + 7, + 11 + ], + "time": 210, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 1, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "stacking": 6, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "stacking": 6, + "id": 320 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "stacking": 6, + "id": 330 + }, + { + "block": 1, + "color": 6, + "type": 1, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "stacking": 5, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "stacking": 10, + "id": 350 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "stacking": 10, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 1, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "stacking": 3, + "id": 370 + }, + { + "block": 1, + "color": 3, + "type": 1, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "stacking": 5, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 8, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 6, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "boomTime": 40, + "id": 410 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "freezeTime": 11, + "id": 420 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "freezeTime": 18, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 197, + "num": 10, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 198, + "num": 12, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 199, + "num": 16, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 200, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 201, + "num": 6, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 202, + "num": 7, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 203, + "num": 19, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 204, + "num": 20, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 205, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 206, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 207, + "num": 11, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 208, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 209, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 210, + "num": 17, + "color": 2, + "special": 3, + "length": 1, + "freeze": 4 + }, + { + "id": 211, + "num": 9, + "color": 7, + "special": 3, + "length": 1, + "freeze": 13 + }, + { + "id": 212, + "num": 25, + "color": 3, + "special": 3, + "length": 2, + "freeze": 20 + }, + { + "id": 213, + "num": 26, + "color": 3, + "special": 3, + "length": 0, + "freeze": 20 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level196.json.meta b/assets/custom/Json/level196.json.meta new file mode 100644 index 0000000..352fbe0 --- /dev/null +++ b/assets/custom/Json/level196.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b5f5d37a-5ee4-41b6-8560-d8a3757e2a21", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level197.json b/assets/custom/Json/level197.json new file mode 100644 index 0000000..8009214 --- /dev/null +++ b/assets/custom/Json/level197.json @@ -0,0 +1,498 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 6, + "color": "2" + }, + { + "x": 4, + "y": 5, + "color": "2" + }, + { + "x": 4, + "y": 4, + "color": "2" + } + ], + "id": "197", + "map": [ + 9, + 12 + ], + "time": 130, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "freezeTime": 8, + "id": 440 + }, + { + "block": 2, + "color": 10, + "type": 4, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "freezeTime": 12, + "id": 450 + }, + { + "block": 2, + "color": 6, + "type": 5, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 3, + "type": 5, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 470 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 198, + "num": 15, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 199, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 200, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 201, + "num": 0, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 202, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 203, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 204, + "num": 3, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 205, + "num": 4, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 206, + "num": 7, + "color": 6, + "special": 1, + "length": 2 + }, + { + "id": 207, + "num": 8, + "color": 6, + "special": 1, + "length": 0 + }, + { + "id": 208, + "num": 32, + "color": 3, + "special": 1, + "length": 2 + }, + { + "id": 209, + "num": 33, + "color": 3, + "special": 1, + "length": 0 + }, + { + "id": 210, + "num": 28, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 211, + "num": 29, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 212, + "num": 25, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 213, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 214, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 215, + "num": 14, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 216, + "num": 16, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 217, + "num": 18, + "color": 3, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level197.json.meta b/assets/custom/Json/level197.json.meta new file mode 100644 index 0000000..fa3da66 --- /dev/null +++ b/assets/custom/Json/level197.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c34fe5fb-254c-47e3-bdce-28aa9fc918ee", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level198.json b/assets/custom/Json/level198.json new file mode 100644 index 0000000..db08162 --- /dev/null +++ b/assets/custom/Json/level198.json @@ -0,0 +1,440 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "198", + "map": [ + 9, + 12 + ], + "time": 70, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 14, + "color": 8, + "type": 6, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "boomTime": 40, + "id": 300 + }, + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "stacking": 6, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 4, + "type": 1, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "stacking": 10, + "id": 350 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 430 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 440 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 32, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 30, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 26, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 27, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 18, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 6, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 13, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 10, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level198.json.meta b/assets/custom/Json/level198.json.meta new file mode 100644 index 0000000..96724da --- /dev/null +++ b/assets/custom/Json/level198.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1883424e-194c-4470-879d-e0bd576b010b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level199.json b/assets/custom/Json/level199.json new file mode 100644 index 0000000..b2bce93 --- /dev/null +++ b/assets/custom/Json/level199.json @@ -0,0 +1,509 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "199", + "map": [ + 10, + 13 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 10, + "type": 5, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "lockTime": 5, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 1, + "type": 5, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 6, + "type": 5, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 6, + "type": 5, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 410 + }, + { + "block": 8, + "color": 6, + "type": 5, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 6, + "type": 8, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 450 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 460 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "freezeTime": 12, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 18, + "color": 10, + "special": 1, + "length": 2 + }, + { + "id": 2, + "num": 20, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 3, + "num": 2, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 34, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 4, + "color": 1, + "special": 1, + "length": 2 + }, + { + "id": 7, + "num": 5, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 8, + "num": 16, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 19, + "color": 6, + "special": 1, + "length": 3 + }, + { + "id": 10, + "num": 21, + "color": 6, + "special": 1, + "length": 0 + }, + { + "id": 11, + "num": 23, + "color": 6, + "special": 1, + "length": 0 + }, + { + "id": 12, + "num": 11, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 0, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 32, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 17, + "num": 30, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 18, + "num": 22, + "color": 3, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level199.json.meta b/assets/custom/Json/level199.json.meta new file mode 100644 index 0000000..e985264 --- /dev/null +++ b/assets/custom/Json/level199.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "efd5e68e-9dd1-4fd8-a700-313dbe15478c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level2.json b/assets/custom/Json/level2.json new file mode 100644 index 0000000..2c9e761 --- /dev/null +++ b/assets/custom/Json/level2.json @@ -0,0 +1,86 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "2", + "map": [ + 7, + 7 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 220 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 5, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 7, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 10, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 14, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level2.json.meta b/assets/custom/Json/level2.json.meta new file mode 100644 index 0000000..c805721 --- /dev/null +++ b/assets/custom/Json/level2.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "76cfa326-3d21-4ca5-8ecf-d35cf4bd383b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level20.json b/assets/custom/Json/level20.json new file mode 100644 index 0000000..7207065 --- /dev/null +++ b/assets/custom/Json/level20.json @@ -0,0 +1,312 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "20", + "map": [ + 9, + 9 + ], + "time": 140, + "gap": [ + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 20, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 29, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 0, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 1, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 7, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 27, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 28, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 23, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level20.json.meta b/assets/custom/Json/level20.json.meta new file mode 100644 index 0000000..68c4bb6 --- /dev/null +++ b/assets/custom/Json/level20.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2982813d-b86d-476a-b7f0-4aa5db975110", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level200.json b/assets/custom/Json/level200.json new file mode 100644 index 0000000..d4ae941 --- /dev/null +++ b/assets/custom/Json/level200.json @@ -0,0 +1,427 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "200", + "map": [ + 9, + 12 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 14, + "color": 2, + "type": 3, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "lockTime": 6, + "id": 400 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 4, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "freezeTime": 6, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 201, + "num": 13, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 202, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 203, + "num": 14, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 204, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 205, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 206, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 207, + "num": 3, + "color": 1, + "special": 3, + "length": 2, + "freeze": 2 + }, + { + "id": 208, + "num": 4, + "color": 1, + "special": 3, + "length": 0, + "freeze": 2 + }, + { + "id": 209, + "num": 0, + "color": 10, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 210, + "num": 1, + "color": 10, + "special": 3, + "length": 0, + "freeze": 4 + }, + { + "id": 211, + "num": 28, + "color": 4, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 212, + "num": 29, + "color": 4, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 213, + "num": 31, + "color": 7, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 214, + "num": 32, + "color": 7, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 215, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 216, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level200.json.meta b/assets/custom/Json/level200.json.meta new file mode 100644 index 0000000..a99880f --- /dev/null +++ b/assets/custom/Json/level200.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3daac9b2-3e3c-48f1-afa1-61d8d387bc57", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level201.json b/assets/custom/Json/level201.json new file mode 100644 index 0000000..c1e51a4 --- /dev/null +++ b/assets/custom/Json/level201.json @@ -0,0 +1,480 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "201", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 9, + "type": 8, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 480 + }, + { + "block": 4, + "color": 7, + "type": 6, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "boomTime": 35, + "id": 490 + }, + { + "block": 14, + "color": 7, + "type": 4, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "freezeTime": 10, + "id": 500 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 27, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 28, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 3, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 15, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 32, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 33, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 24, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 5, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 29, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 0, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 14, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 16, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level201.json.meta b/assets/custom/Json/level201.json.meta new file mode 100644 index 0000000..d795900 --- /dev/null +++ b/assets/custom/Json/level201.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1d3c2033-792d-414c-94f0-fc838de3f433", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level202.json b/assets/custom/Json/level202.json new file mode 100644 index 0000000..60d190f --- /dev/null +++ b/assets/custom/Json/level202.json @@ -0,0 +1,406 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 4, + "color": "3" + }, + { + "x": 4, + "y": 4, + "color": "3" + }, + { + "x": 3, + "y": 3, + "color": "8" + }, + { + "x": 4, + "y": 3, + "color": "8" + } + ], + "id": "202", + "map": [ + 8, + 10 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 4, + "type": 3, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "lockTime": 6, + "id": 430 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 203, + "num": 1, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 204, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 205, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 206, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 207, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 208, + "num": 21, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 209, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 210, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 211, + "num": 9, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 212, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 213, + "num": 17, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 214, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 215, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 216, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level202.json.meta b/assets/custom/Json/level202.json.meta new file mode 100644 index 0000000..7f1181f --- /dev/null +++ b/assets/custom/Json/level202.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8b6b2088-7ac9-4885-b715-98af1dd53b5f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level203.json b/assets/custom/Json/level203.json new file mode 100644 index 0000000..ae3260b --- /dev/null +++ b/assets/custom/Json/level203.json @@ -0,0 +1,439 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "203", + "map": [ + 9, + 12 + ], + "time": 105, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 250 + }, + { + "block": 10, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 6, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 7, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 14, + "color": 5, + "type": 3, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 410 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "freezeTime": 8, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 21, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 36, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 37, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 33, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 34, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 35, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 20, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 16, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 0, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level203.json.meta b/assets/custom/Json/level203.json.meta new file mode 100644 index 0000000..18f89aa --- /dev/null +++ b/assets/custom/Json/level203.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "09c9173a-df3d-4be5-a41f-6870d01ad085", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level204.json b/assets/custom/Json/level204.json new file mode 100644 index 0000000..e68f5dc --- /dev/null +++ b/assets/custom/Json/level204.json @@ -0,0 +1,412 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 5, + "color": "5" + }, + { + "x": 3, + "y": 4, + "color": "5" + }, + { + "x": 4, + "y": 5, + "color": "5" + }, + { + "x": 4, + "y": 4, + "color": "5" + }, + { + "x": 5, + "y": 5, + "color": "5" + }, + { + "x": 5, + "y": 4, + "color": "5" + } + ], + "id": "204", + "map": [ + 9, + 9 + ], + "time": 145, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 3, + "color": 5, + "type": 3, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "lockTime": 4, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 205, + "num": 11, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 206, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 207, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 208, + "num": 26, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 209, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 210, + "num": 10, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 211, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 212, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 213, + "num": 18, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 214, + "num": 24, + "color": 6, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 215, + "num": 25, + "color": 6, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 216, + "num": 1, + "color": 8, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 217, + "num": 2, + "color": 8, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 218, + "num": 3, + "color": 7, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 219, + "num": 4, + "color": 7, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 220, + "num": 22, + "color": 2, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 221, + "num": 23, + "color": 2, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level204.json.meta b/assets/custom/Json/level204.json.meta new file mode 100644 index 0000000..5cb69b3 --- /dev/null +++ b/assets/custom/Json/level204.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f7490fef-b02f-4d90-84e9-3d2af2b13fe6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level205.json b/assets/custom/Json/level205.json new file mode 100644 index 0000000..794353e --- /dev/null +++ b/assets/custom/Json/level205.json @@ -0,0 +1,350 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "205", + "map": [ + 9, + 9 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 206, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 207, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 208, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 209, + "num": 12, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 210, + "num": 16, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 211, + "num": 1, + "color": 10, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 212, + "num": 2, + "color": 10, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 213, + "num": 26, + "color": 2, + "special": 3, + "length": 2, + "freeze": 11 + }, + { + "id": 214, + "num": 27, + "color": 2, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 215, + "num": 3, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 216, + "num": 20, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 217, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 218, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level205.json.meta b/assets/custom/Json/level205.json.meta new file mode 100644 index 0000000..d1ec387 --- /dev/null +++ b/assets/custom/Json/level205.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "49c79cf5-b113-4bd2-abf3-4e1ed0c5e088", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level206.json b/assets/custom/Json/level206.json new file mode 100644 index 0000000..a6c1770 --- /dev/null +++ b/assets/custom/Json/level206.json @@ -0,0 +1,319 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "206", + "map": [ + 9, + 9 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 14, + "color": 7, + "type": 5, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 14, + "color": 10, + "type": 5, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 5, + "type": 4, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "freezeTime": 7, + "id": 340 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "freezeTime": 11, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 8, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 10, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 12, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 26, + "color": 7, + "special": 1, + "length": 2 + }, + { + "id": 5, + "num": 27, + "color": 7, + "special": 1, + "length": 0 + }, + { + "id": 6, + "num": 24, + "color": 10, + "special": 1, + "length": 2 + }, + { + "id": 7, + "num": 25, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 3, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 15, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 17, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 19, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 14, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 14, + "num": 16, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 15, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 11, + "color": 4, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 18, + "num": 13, + "color": 4, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level206.json.meta b/assets/custom/Json/level206.json.meta new file mode 100644 index 0000000..0afdd8e --- /dev/null +++ b/assets/custom/Json/level206.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4a892c5c-fafc-4301-b596-f3a6d614416e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level207.json b/assets/custom/Json/level207.json new file mode 100644 index 0000000..1ba96a4 --- /dev/null +++ b/assets/custom/Json/level207.json @@ -0,0 +1,367 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 2, + "color": "2" + }, + { + "x": 3, + "y": 3, + "color": "2" + }, + { + "x": 3, + "y": 7, + "color": "1" + }, + { + "x": 3, + "y": 8, + "color": "1" + } + ], + "id": "207", + "map": [ + 7, + 11 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 208, + "num": 9, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 209, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 210, + "num": 15, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 211, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 212, + "num": 24, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 213, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 214, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 215, + "num": 23, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 216, + "num": 3, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 217, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 218, + "num": 5, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 219, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 220, + "num": 10, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 221, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 222, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 223, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 224, + "num": 0, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 225, + "num": 19, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level207.json.meta b/assets/custom/Json/level207.json.meta new file mode 100644 index 0000000..f7752db --- /dev/null +++ b/assets/custom/Json/level207.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f03554e0-d620-4fd5-8940-830b5760cea8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level208.json b/assets/custom/Json/level208.json new file mode 100644 index 0000000..4a81f46 --- /dev/null +++ b/assets/custom/Json/level208.json @@ -0,0 +1,284 @@ +{ + "LEVEL_INFO": [ + { + "id": "132", + "map": [ + 7, + 10 + ], + "time": 75, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 6, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 8, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 270 + }, + { + "block": 14, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "freezeTime": 10, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 4, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "freezeTime": 10, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 18, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 20, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 21, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 7, + "num": 22, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 8, + "num": 3, + "color": 3, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 9, + "num": 4, + "color": 3, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 10, + "num": 0, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 12, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 13, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 9, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 11, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level208.json.meta b/assets/custom/Json/level208.json.meta new file mode 100644 index 0000000..a1372cb --- /dev/null +++ b/assets/custom/Json/level208.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "29614041-a5b5-43eb-bac6-b368ffea2086", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level209.json b/assets/custom/Json/level209.json new file mode 100644 index 0000000..d849ace --- /dev/null +++ b/assets/custom/Json/level209.json @@ -0,0 +1,376 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 3, + "color": "1" + }, + { + "x": 4, + "y": 3, + "color": "1" + }, + { + "x": 3, + "y": 2, + "color": "3" + }, + { + "x": 4, + "y": 2, + "color": "7" + } + ], + "id": "500", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 1, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 5, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 501, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 502, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 503, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 504, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 9, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 506, + "num": 19, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 507, + "num": 3, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 508, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 5, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 510, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 511, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 20, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 513, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 514, + "num": 23, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 515, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 516, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level209.json.meta b/assets/custom/Json/level209.json.meta new file mode 100644 index 0000000..7e3e921 --- /dev/null +++ b/assets/custom/Json/level209.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "391e8efa-3224-4ae8-857f-1c4de2b953d8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level21.json b/assets/custom/Json/level21.json new file mode 100644 index 0000000..8daed79 --- /dev/null +++ b/assets/custom/Json/level21.json @@ -0,0 +1,423 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "21", + "map": [ + 10, + 10 + ], + "time": 100, + "gap": [ + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 15, + "color": 6, + "type": 1, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "stacking": 5, + "id": 280 + }, + { + "block": 10, + "color": 8, + "type": 1, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 290 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 3, + "color": 9, + "type": 7, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 6, + "color": 9, + "type": 1, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "stacking": 3, + "id": 350 + }, + { + "block": 22, + "color": 4, + "type": 1, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "stacking": 2, + "id": 360 + }, + { + "block": 22, + "color": 2, + "type": 8, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 22, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 23, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 25, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 26, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 27, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 28, + "num": 28, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 29, + "num": 2, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 30, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 31, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 32, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 33, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 34, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 35, + "num": 29, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 36, + "num": 30, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 37, + "num": 31, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 38, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 39, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 40, + "num": 12, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 41, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 42, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 43, + "num": 18, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 44, + "num": 20, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 45, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level21.json.meta b/assets/custom/Json/level21.json.meta new file mode 100644 index 0000000..a519be2 --- /dev/null +++ b/assets/custom/Json/level21.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f12e967c-5941-4412-aec3-a0f685bbd348", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level210.json b/assets/custom/Json/level210.json new file mode 100644 index 0000000..9c35181 --- /dev/null +++ b/assets/custom/Json/level210.json @@ -0,0 +1,416 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "210", + "map": [ + 9, + 12 + ], + "time": 80, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 5, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 10, + "type": 5, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 5, + "type": 7, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 5, + "type": 7, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 280 + }, + { + "block": 18, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 14, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "freezeTime": 4, + "id": 370 + }, + { + "block": 21, + "color": 5, + "type": 4, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "freezeTime": 7, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "freezeTime": 8, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 22, + "color": 10, + "special": 1, + "length": 1 + }, + { + "id": 2, + "num": 33, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 3, + "num": 34, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 35, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 16, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 20, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 21, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 23, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 0, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 3, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 36, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 37, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level210.json.meta b/assets/custom/Json/level210.json.meta new file mode 100644 index 0000000..6652d55 --- /dev/null +++ b/assets/custom/Json/level210.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "64223d1d-d8e8-42d6-bb67-257bc74e0eae", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level211.json b/assets/custom/Json/level211.json new file mode 100644 index 0000000..54d56b4 --- /dev/null +++ b/assets/custom/Json/level211.json @@ -0,0 +1,492 @@ +{ + "LEVEL_INFO": [ + { + "id": "146", + "map": [ + 11, + 11 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 240 + }, + { + "block": 14, + "color": 1, + "type": 3, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "lockTime": 4, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 18, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 4, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "freezeTime": 11, + "id": 350 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "freezeTime": 11, + "id": 360 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "freezeTime": 12, + "id": 370 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "freezeTime": 12, + "id": 380 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "freezeTime": 14, + "id": 390 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "freezeTime": 14, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "freezeTime": 15, + "id": 410 + }, + { + "block": 1, + "color": 10, + "type": 4, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "freezeTime": 15, + "id": 420 + }, + { + "block": 17, + "color": 6, + "type": 4, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "freezeTime": 18, + "id": 430 + }, + { + "block": 16, + "color": 10, + "type": 4, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "freezeTime": 18, + "id": 440 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 20, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 11, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 13, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 17, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 19, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 21, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 31, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 33, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 34, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 35, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 3, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 16, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 1, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 19, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level211.json.meta b/assets/custom/Json/level211.json.meta new file mode 100644 index 0000000..d11a1f3 --- /dev/null +++ b/assets/custom/Json/level211.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "79ab7805-208b-4b64-afb8-99660bcd8400", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level212.json b/assets/custom/Json/level212.json new file mode 100644 index 0000000..232448b --- /dev/null +++ b/assets/custom/Json/level212.json @@ -0,0 +1,448 @@ +{ + "LEVEL_INFO": [ + { + "id": "147", + "map": [ + 10, + 13 + ], + "time": 120, + "gap": [ + { + "x": 4, + "y": 11, + "z": 0 + }, + { + "x": 5, + "y": 11, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 14, + "color": 5, + "type": 5, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "id": 210 + }, + { + "block": 14, + "color": 8, + "type": 5, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 270 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 280 + }, + { + "block": 19, + "color": 6, + "type": 2, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "id": 290 + }, + { + "block": 20, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 480, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -360, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 9, + "type": 3, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "lockTime": 5, + "id": 350 + }, + { + "block": 16, + "color": 3, + "type": 4, + "position": { + "x": -360, + "y": 300, + "z": 0 + }, + "freezeTime": 2, + "id": 360 + }, + { + "block": 17, + "color": 10, + "type": 4, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "freezeTime": 2, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 12, + "color": 5, + "special": 1, + "length": 3 + }, + { + "id": 2, + "num": 14, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 3, + "num": 16, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 4, + "num": 43, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 44, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 45, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 32, + "color": 8, + "special": 1, + "length": 3 + }, + { + "id": 8, + "num": 34, + "color": 8, + "special": 1, + "length": 0 + }, + { + "id": 9, + "num": 36, + "color": 8, + "special": 1, + "length": 0 + }, + { + "id": 10, + "num": 6, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 11, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 13, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 31, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 35, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 46, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 47, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 37, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 24, + "num": 38, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 25, + "num": 9, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 26, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level212.json.meta b/assets/custom/Json/level212.json.meta new file mode 100644 index 0000000..57930c1 --- /dev/null +++ b/assets/custom/Json/level212.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "37c505f5-71ee-4f37-b08c-fe8d90b7f58a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level213.json b/assets/custom/Json/level213.json new file mode 100644 index 0000000..e293b78 --- /dev/null +++ b/assets/custom/Json/level213.json @@ -0,0 +1,400 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "213", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 3, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 10, + "id": 390 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "stacking": 2, + "id": 400 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "stacking": 4, + "id": 410 + }, + { + "block": 4, + "color": 3, + "type": 8, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 10, + "type": 8, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 214, + "num": 21, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 215, + "num": 1, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 216, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 217, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 218, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 219, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 220, + "num": 9, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 221, + "num": 11, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 222, + "num": 17, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 223, + "num": 19, + "color": 10, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 224, + "num": 4, + "color": 5, + "special": 3, + "length": 3, + "freeze": 8 + }, + { + "id": 225, + "num": 5, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 226, + "num": 6, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 227, + "num": 24, + "color": 9, + "special": 3, + "length": 3, + "freeze": 12 + }, + { + "id": 228, + "num": 25, + "color": 9, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 229, + "num": 26, + "color": 9, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level213.json.meta b/assets/custom/Json/level213.json.meta new file mode 100644 index 0000000..ff10cb0 --- /dev/null +++ b/assets/custom/Json/level213.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c78b6d9c-2b0e-40a4-832e-18c53b23f67a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level214.json b/assets/custom/Json/level214.json new file mode 100644 index 0000000..69f1fad --- /dev/null +++ b/assets/custom/Json/level214.json @@ -0,0 +1,557 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "214", + "map": [ + 10, + 14 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 600, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 600, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -720, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -720, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": -360, + "y": 480, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 5, + "type": 5, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -720, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 19, + "color": 3, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 17, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 22, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": 480, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 430 + }, + { + "block": 13, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 440 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -720, + "z": 0 + }, + "id": 450 + }, + { + "block": 6, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -720, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 490 + }, + { + "block": 5, + "color": 3, + "type": 4, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "freezeTime": 5, + "id": 500 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "freezeTime": 8, + "id": 510 + }, + { + "block": 1, + "color": 7, + "type": 4, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "freezeTime": 14, + "id": 520 + }, + { + "block": 14, + "color": 5, + "type": 3, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "lockTime": 5, + "id": 530 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 29, + "color": 5, + "special": 1, + "length": 2 + }, + { + "id": 5, + "num": 30, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 6, + "num": 32, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 33, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 35, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 36, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 37, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 38, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 21, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 8, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 16, + "num": 9, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 6, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 3, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 21, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 5, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 1, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 24, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level214.json.meta b/assets/custom/Json/level214.json.meta new file mode 100644 index 0000000..adbded4 --- /dev/null +++ b/assets/custom/Json/level214.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9eaf9844-0f06-498a-a003-b61e01fcff71", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level215.json b/assets/custom/Json/level215.json new file mode 100644 index 0000000..05233d3 --- /dev/null +++ b/assets/custom/Json/level215.json @@ -0,0 +1,242 @@ +{ + "LEVEL_INFO": [ + { + "id": "148", + "map": [ + 7, + 8 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 3, + "type": 8, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 19, + "color": 6, + "type": 8, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 1, + "type": 6, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "boomTime": 50, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 14, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 16, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 17, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 8, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level215.json.meta b/assets/custom/Json/level215.json.meta new file mode 100644 index 0000000..f5ec9fd --- /dev/null +++ b/assets/custom/Json/level215.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "699869c0-86dc-48fd-b5f2-7e34aff10ffe", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level216.json b/assets/custom/Json/level216.json new file mode 100644 index 0000000..e05b213 --- /dev/null +++ b/assets/custom/Json/level216.json @@ -0,0 +1,355 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "216", + "map": [ + 8, + 9 + ], + "time": 85, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 4, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "freezeTime": 6, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 4, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "freezeTime": 11, + "id": 370 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "freezeTime": 15, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 217, + "num": 12, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 218, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 219, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 220, + "num": 7, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 221, + "num": 9, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 222, + "num": 5, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 223, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 224, + "num": 14, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 225, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 226, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 227, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 228, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 229, + "num": 15, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 230, + "num": 17, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 231, + "num": 2, + "color": 4, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 232, + "num": 3, + "color": 4, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 233, + "num": 21, + "color": 6, + "special": 3, + "length": 2, + "freeze": 11 + }, + { + "id": 234, + "num": 22, + "color": 6, + "special": 3, + "length": 0, + "freeze": 11 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level216.json.meta b/assets/custom/Json/level216.json.meta new file mode 100644 index 0000000..ee54833 --- /dev/null +++ b/assets/custom/Json/level216.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5d2d19c5-d3ec-4a32-9df3-822b8026f181", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level217.json b/assets/custom/Json/level217.json new file mode 100644 index 0000000..6adb502 --- /dev/null +++ b/assets/custom/Json/level217.json @@ -0,0 +1,475 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 7, + "color": "4" + }, + { + "x": 4, + "y": 7, + "color": "4" + }, + { + "x": 5, + "y": 7, + "color": "4" + }, + { + "x": 3, + "y": 6, + "color": "4" + }, + { + "x": 4, + "y": 6, + "color": "4" + }, + { + "x": 5, + "y": 6, + "color": "4" + } + ], + "id": "217", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 4, + "type": 9, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 230 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 240 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 5, + "color": 3, + "type": 9, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 218, + "num": 32, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 219, + "num": 33, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 220, + "num": 34, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 221, + "num": 20, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 222, + "num": 16, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 223, + "num": 36, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 224, + "num": 37, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 225, + "num": 0, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 226, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 227, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 228, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 229, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 230, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 231, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 232, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 233, + "num": 24, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level217.json.meta b/assets/custom/Json/level217.json.meta new file mode 100644 index 0000000..e7162d9 --- /dev/null +++ b/assets/custom/Json/level217.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "218d4e5e-bc23-44dc-b5d8-66c5841505d8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level218.json b/assets/custom/Json/level218.json new file mode 100644 index 0000000..d164303 --- /dev/null +++ b/assets/custom/Json/level218.json @@ -0,0 +1,389 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "218", + "map": [ + 8, + 10 + ], + "time": 155, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 16, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 17, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 6, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "boomTime": 25, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 219, + "num": 13, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 220, + "num": 15, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 221, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 222, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 223, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 224, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 225, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 226, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 227, + "num": 26, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 228, + "num": 27, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 229, + "num": 9, + "color": 4, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 230, + "num": 11, + "color": 4, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 231, + "num": 17, + "color": 9, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 232, + "num": 19, + "color": 9, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 233, + "num": 12, + "color": 5, + "special": 3, + "length": 1, + "freeze": 10 + }, + { + "id": 234, + "num": 14, + "color": 7, + "special": 3, + "length": 1, + "freeze": 13 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level218.json.meta b/assets/custom/Json/level218.json.meta new file mode 100644 index 0000000..97e56f1 --- /dev/null +++ b/assets/custom/Json/level218.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0ad264c3-d93c-4892-aec6-2e91e4f81fc4", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level219.json b/assets/custom/Json/level219.json new file mode 100644 index 0000000..2dabb2c --- /dev/null +++ b/assets/custom/Json/level219.json @@ -0,0 +1,430 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "219", + "map": [ + 7, + 11 + ], + "time": 135, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 7, + "type": 3, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "lockTime": 7, + "id": 390 + }, + { + "block": 5, + "color": 3, + "type": 4, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "freezeTime": 10, + "id": 400 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "freezeTime": 10, + "id": 410 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "freezeTime": 12, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 220, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 221, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 222, + "num": 10, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 223, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 224, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 225, + "num": 5, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 226, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 227, + "num": 24, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 228, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 229, + "num": 9, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 230, + "num": 11, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 231, + "num": 15, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 232, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 233, + "num": 14, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 234, + "num": 22, + "color": 9, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 235, + "num": 23, + "color": 9, + "special": 3, + "length": 0, + "freeze": 4 + }, + { + "id": 236, + "num": 3, + "color": 6, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 237, + "num": 4, + "color": 6, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 238, + "num": 20, + "color": 2, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 239, + "num": 21, + "color": 2, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 240, + "num": 1, + "color": 10, + "special": 3, + "length": 2, + "freeze": 11 + }, + { + "id": 241, + "num": 2, + "color": 10, + "special": 3, + "length": 0, + "freeze": 11 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level219.json.meta b/assets/custom/Json/level219.json.meta new file mode 100644 index 0000000..a619617 --- /dev/null +++ b/assets/custom/Json/level219.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1b8f0210-ac49-403f-b6a1-c4cb98a5ecc3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level22.json b/assets/custom/Json/level22.json new file mode 100644 index 0000000..418bec7 --- /dev/null +++ b/assets/custom/Json/level22.json @@ -0,0 +1,233 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "22", + "map": [ + 8, + 8 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 300 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 13, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 15, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 9, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 3, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level22.json.meta b/assets/custom/Json/level22.json.meta new file mode 100644 index 0000000..7fcdccc --- /dev/null +++ b/assets/custom/Json/level22.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9b2dd653-8198-4221-b239-f531220b63e9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level220.json b/assets/custom/Json/level220.json new file mode 100644 index 0000000..158726f --- /dev/null +++ b/assets/custom/Json/level220.json @@ -0,0 +1,451 @@ +{ + "LEVEL_INFO": [ + { + "id": "153", + "map": [ + 11, + 13 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 540, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 540, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -660, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -660, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -660, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -660, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": 540, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 350 + }, + { + "block": 3, + "color": 10, + "type": 2, + "position": { + "x": 300, + "y": -660, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 7, + "type": 2, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 9, + "type": 3, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "lockTime": 7, + "id": 390 + }, + { + "block": 6, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 6, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 410 + }, + { + "block": 10, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 420 + }, + { + "block": 6, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 430 + }, + { + "block": 10, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 450 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "freezeTime": 7, + "id": 460 + }, + { + "block": 5, + "color": 5, + "type": 4, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "freezeTime": 12, + "id": 470 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 31, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 32, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 21, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 33, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 34, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 35, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 20, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 22, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 2, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 4, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 16, + "num": 5, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level220.json.meta b/assets/custom/Json/level220.json.meta new file mode 100644 index 0000000..f2949af --- /dev/null +++ b/assets/custom/Json/level220.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c711910f-ab6a-48d5-90d6-90d1f95a862e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level221.json b/assets/custom/Json/level221.json new file mode 100644 index 0000000..09f773c --- /dev/null +++ b/assets/custom/Json/level221.json @@ -0,0 +1,538 @@ +{ + "LEVEL_INFO": [ + { + "id": "155", + "map": [ + 9, + 12 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 480, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 5, + "type": 9, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 470 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 480 + }, + { + "block": 0, + "color": 3, + "type": 4, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "freezeTime": 14, + "id": 490 + }, + { + "block": 4, + "color": 1, + "type": 4, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "freezeTime": 17, + "id": 500 + }, + { + "block": 4, + "color": 7, + "type": 4, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "freezeTime": 18, + "id": 510 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 4, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 35, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 36, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 37, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 32, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 22, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 24, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 19, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 23, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 15, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 16, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 14, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 16, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 19, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level221.json.meta b/assets/custom/Json/level221.json.meta new file mode 100644 index 0000000..4431fd0 --- /dev/null +++ b/assets/custom/Json/level221.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "df4a1e98-4e2e-47b4-b5a0-cc086b1fe85c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level222.json b/assets/custom/Json/level222.json new file mode 100644 index 0000000..9889578 --- /dev/null +++ b/assets/custom/Json/level222.json @@ -0,0 +1,312 @@ +{ + "LEVEL_INFO": [ + { + "id": "158", + "map": [ + 7, + 9 + ], + "time": 60, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 4, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "freezeTime": 8, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "freezeTime": 8, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "freezeTime": 12, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "freezeTime": 12, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 15, + "color": 6, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 4, + "num": 10, + "color": 10, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 5, + "num": 7, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 11, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 1, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level222.json.meta b/assets/custom/Json/level222.json.meta new file mode 100644 index 0000000..af44f0f --- /dev/null +++ b/assets/custom/Json/level222.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "53e3dfa1-7861-48f1-ad2f-cdc76a4a2ee0", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level223.json b/assets/custom/Json/level223.json new file mode 100644 index 0000000..c67c50b --- /dev/null +++ b/assets/custom/Json/level223.json @@ -0,0 +1,319 @@ +{ + "LEVEL_INFO": [ + { + "id": "159", + "map": [ + 7, + 9 + ], + "time": 75, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "freezeTime": 9, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "freezeTime": 9, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 14, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 16, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 12, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 17, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 11, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 7, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 9, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 13, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level223.json.meta b/assets/custom/Json/level223.json.meta new file mode 100644 index 0000000..c4c3616 --- /dev/null +++ b/assets/custom/Json/level223.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7d8e10da-2640-46ab-bd95-63aab69d34f1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level224.json b/assets/custom/Json/level224.json new file mode 100644 index 0000000..948e0f0 --- /dev/null +++ b/assets/custom/Json/level224.json @@ -0,0 +1,591 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 7, + "color": "9" + }, + { + "x": 4, + "y": 7, + "color": "9" + }, + { + "x": 5, + "y": 7, + "color": "9" + }, + { + "x": 6, + "y": 7, + "color": "9" + } + ], + "id": "224", + "map": [ + 10, + 12 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 470 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 470 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 500 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 510 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 520 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 530 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 540 + }, + { + "block": 1, + "color": 7, + "type": 9, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 550 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 560 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 225, + "num": 28, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 226, + "num": 29, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 227, + "num": 13, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 228, + "num": 15, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 229, + "num": 21, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 230, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 231, + "num": 5, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 232, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 233, + "num": 7, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 234, + "num": 2, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 235, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 236, + "num": 31, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 237, + "num": 32, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 238, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 239, + "num": 12, + "color": 1, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 240, + "num": 14, + "color": 1, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 241, + "num": 16, + "color": 10, + "special": 3, + "length": 2, + "freeze": 13 + }, + { + "id": 242, + "num": 18, + "color": 10, + "special": 3, + "length": 0, + "freeze": 13 + }, + { + "id": 243, + "num": 20, + "color": 3, + "special": 3, + "length": 2, + "freeze": 16 + }, + { + "id": 244, + "num": 22, + "color": 3, + "special": 3, + "length": 0, + "freeze": 16 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level224.json.meta b/assets/custom/Json/level224.json.meta new file mode 100644 index 0000000..9700bc0 --- /dev/null +++ b/assets/custom/Json/level224.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "914a085f-8d78-4e8b-9a29-c0a3006c6940", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level225.json b/assets/custom/Json/level225.json new file mode 100644 index 0000000..7b1517b --- /dev/null +++ b/assets/custom/Json/level225.json @@ -0,0 +1,410 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "225", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 21, + "color": 6, + "type": 3, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "lockTime": 5, + "id": 400 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 7, + "type": 7, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 14, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 23, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 1, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 3, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 19, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level225.json.meta b/assets/custom/Json/level225.json.meta new file mode 100644 index 0000000..fbfd581 --- /dev/null +++ b/assets/custom/Json/level225.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4cf273d9-fb3b-4410-8668-cbe25be4af44", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level226.json b/assets/custom/Json/level226.json new file mode 100644 index 0000000..9529601 --- /dev/null +++ b/assets/custom/Json/level226.json @@ -0,0 +1,608 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 4, + "color": "2" + }, + { + "x": 5, + "y": 4, + "color": "2" + }, + { + "x": 6, + "y": 4, + "color": "2" + }, + { + "x": 4, + "y": 5, + "color": "2" + }, + { + "x": 5, + "y": 5, + "color": "2" + }, + { + "x": 6, + "y": 5, + "color": "2" + } + ], + "id": "226", + "map": [ + 11, + 11 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 490 + }, + { + "block": 6, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 500 + }, + { + "block": 10, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 510 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 520 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 530 + }, + { + "block": 0, + "color": 7, + "type": 7, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 540 + }, + { + "block": 0, + "color": 3, + "type": 7, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 550 + }, + { + "block": 2, + "color": 2, + "type": 4, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "freezeTime": 4, + "id": 560 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "freezeTime": 4, + "id": 570 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "boomTime": 20, + "id": 580 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 227, + "num": 2, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 228, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 229, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 230, + "num": 29, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 231, + "num": 30, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 232, + "num": 31, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 233, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 234, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 235, + "num": 22, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 236, + "num": 24, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 237, + "num": 5, + "color": 7, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 238, + "num": 6, + "color": 7, + "special": 3, + "length": 0, + "freeze": 4 + }, + { + "id": 239, + "num": 11, + "color": 2, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 240, + "num": 13, + "color": 2, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 241, + "num": 32, + "color": 6, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 242, + "num": 33, + "color": 6, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 243, + "num": 21, + "color": 9, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 244, + "num": 23, + "color": 9, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level226.json.meta b/assets/custom/Json/level226.json.meta new file mode 100644 index 0000000..397a017 --- /dev/null +++ b/assets/custom/Json/level226.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4a59593f-d1df-4212-acd8-5a478d8f2fec", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level227.json b/assets/custom/Json/level227.json new file mode 100644 index 0000000..435c291 --- /dev/null +++ b/assets/custom/Json/level227.json @@ -0,0 +1,295 @@ +{ + "LEVEL_INFO": [ + { + "id": "161", + "map": [ + 8, + 8 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 3, + "type": 3, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "lockTime": 4, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 22, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 21, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 18, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 1, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 2, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 0, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 4, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 3, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level227.json.meta b/assets/custom/Json/level227.json.meta new file mode 100644 index 0000000..f0c5672 --- /dev/null +++ b/assets/custom/Json/level227.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1e3b7900-77ad-4bf9-84fa-738e50bf5058", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level228.json b/assets/custom/Json/level228.json new file mode 100644 index 0000000..7fd06bf --- /dev/null +++ b/assets/custom/Json/level228.json @@ -0,0 +1,651 @@ +{ + "LEVEL_INFO": [ + { + "id": "164", + "map": [ + 10, + 15 + ], + "time": 70, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 540, + "z": 0 + }, + "id": 370 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 540, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 420, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": -360, + "y": 420, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 180, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 460 + }, + { + "block": 14, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 480 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 490 + }, + { + "block": 14, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 520 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 530 + }, + { + "block": 3, + "color": 7, + "type": 9, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "adhesiveTime": 1, + "id": 540 + }, + { + "block": 1, + "color": 7, + "type": 9, + "position": { + "x": 0, + "y": -540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 550 + }, + { + "block": 3, + "color": 9, + "type": 9, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "adhesiveTime": 1, + "id": 560 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": 660, + "z": 0 + }, + "freezeTime": 2, + "id": 570 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "freezeTime": 4, + "id": 580 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "freezeTime": 24, + "id": 590 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": -360, + "y": -780, + "z": 0 + }, + "freezeTime": 8, + "id": 600 + }, + { + "block": 2, + "color": 10, + "type": 4, + "position": { + "x": 480, + "y": -780, + "z": 0 + }, + "freezeTime": 10, + "id": 610 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 39, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 40, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 41, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 26, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 4, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 36, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 37, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 33, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 29, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 25, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 24, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level228.json.meta b/assets/custom/Json/level228.json.meta new file mode 100644 index 0000000..f4261e0 --- /dev/null +++ b/assets/custom/Json/level228.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bddf9164-98da-449a-9e91-f7fd5fbf9e60", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level229.json b/assets/custom/Json/level229.json new file mode 100644 index 0000000..f970978 --- /dev/null +++ b/assets/custom/Json/level229.json @@ -0,0 +1,297 @@ +{ + "LEVEL_INFO": [ + { + "id": "166", + "map": [ + 8, + 10 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 6, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 12, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 10, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 8, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "boomTime": 15, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 6, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "boomTime": 30, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 9, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 17, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 19, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 26, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 7, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 12, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 16, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 18, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level229.json.meta b/assets/custom/Json/level229.json.meta new file mode 100644 index 0000000..c91ba30 --- /dev/null +++ b/assets/custom/Json/level229.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ec7c0b79-0fed-4bab-80eb-f0aaeb9d7c5a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level23.json b/assets/custom/Json/level23.json new file mode 100644 index 0000000..2dd44ca --- /dev/null +++ b/assets/custom/Json/level23.json @@ -0,0 +1,313 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "23", + "map": [ + 9, + 11 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 14, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 15, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 22, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 29, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 16, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 3, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 12, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 6, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 15, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 23, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level23.json.meta b/assets/custom/Json/level23.json.meta new file mode 100644 index 0000000..7e587d6 --- /dev/null +++ b/assets/custom/Json/level23.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a5a1fd16-fffe-4e74-8bf9-7fd966fce8b7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level230.json b/assets/custom/Json/level230.json new file mode 100644 index 0000000..d41f8e8 --- /dev/null +++ b/assets/custom/Json/level230.json @@ -0,0 +1,411 @@ +{ + "LEVEL_INFO": [ + { + "id": "168", + "map": [ + 9, + 12 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 12, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 270 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 7, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 7, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 8, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 18, + "color": 3, + "type": 1, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "stacking": 8, + "id": 320 + }, + { + "block": 19, + "color": 7, + "type": 1, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "stacking": 3, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 1, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "stacking": 3, + "id": 340 + }, + { + "block": 20, + "color": 5, + "type": 1, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "stacking": 8, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 1, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "stacking": 8, + "id": 360 + }, + { + "block": 10, + "color": 3, + "type": 1, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "stacking": 2, + "id": 370 + }, + { + "block": 6, + "color": 5, + "type": 1, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "stacking": 6, + "id": 380 + }, + { + "block": 2, + "color": 2, + "type": 6, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "boomTime": 70, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 27, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 28, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 29, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 24, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 26, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 0, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 14, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 16, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 7, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 8, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 31, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 20, + "num": 32, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 33, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level230.json.meta b/assets/custom/Json/level230.json.meta new file mode 100644 index 0000000..0d5d2b0 --- /dev/null +++ b/assets/custom/Json/level230.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6de57a59-77bf-4b92-96d3-f0785c9bbfea", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level231.json b/assets/custom/Json/level231.json new file mode 100644 index 0000000..a2698ba --- /dev/null +++ b/assets/custom/Json/level231.json @@ -0,0 +1,401 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "231", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 3, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 3, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 3, + "type": 1, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "stacking": 10, + "id": 340 + }, + { + "block": 19, + "color": 6, + "type": 1, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "stacking": 10, + "id": 350 + }, + { + "block": 3, + "color": 3, + "type": 6, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "boomTime": 15, + "id": 360 + }, + { + "block": 18, + "color": 8, + "type": 8, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 14, + "color": 6, + "type": 4, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "freezeTime": 5, + "id": 400 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "freezeTime": 13, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 2, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 3, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 32, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 8, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 4, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 5, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 36, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 30, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 31, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level231.json.meta b/assets/custom/Json/level231.json.meta new file mode 100644 index 0000000..5e89da3 --- /dev/null +++ b/assets/custom/Json/level231.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5cf02ef4-bcf0-4651-bc7e-28db23aa0ee6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level232.json b/assets/custom/Json/level232.json new file mode 100644 index 0000000..20fb0f4 --- /dev/null +++ b/assets/custom/Json/level232.json @@ -0,0 +1,444 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "232", + "map": [ + 9, + 9 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 14, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 5, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 3, + "type": 5, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 5, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 4, + "color": 5, + "type": 5, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 233, + "num": 5, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 234, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 235, + "num": 16, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 236, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 237, + "num": 10, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 238, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 239, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 240, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 241, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 242, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 243, + "num": 14, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 244, + "num": 13, + "color": 3, + "special": 1, + "length": 1 + }, + { + "id": 245, + "num": 3, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 246, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 247, + "num": 26, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 248, + "num": 27, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 249, + "num": 24, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 250, + "num": 25, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 251, + "num": 0, + "color": 5, + "special": 3, + "length": 2, + "freeze": 14 + }, + { + "id": 252, + "num": 1, + "color": 5, + "special": 3, + "length": 0, + "freeze": 14 + }, + { + "id": 253, + "num": 21, + "color": 6, + "special": 3, + "length": 2, + "freeze": 19 + }, + { + "id": 254, + "num": 22, + "color": 6, + "special": 3, + "length": 0, + "freeze": 19 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level232.json.meta b/assets/custom/Json/level232.json.meta new file mode 100644 index 0000000..c39ecdf --- /dev/null +++ b/assets/custom/Json/level232.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b8cc8cde-cb26-4f27-a917-1148133af254", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level233.json b/assets/custom/Json/level233.json new file mode 100644 index 0000000..1536a48 --- /dev/null +++ b/assets/custom/Json/level233.json @@ -0,0 +1,442 @@ +{ + "LEVEL_INFO": [ + { + "id": "170", + "map": [ + 10, + 12 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 5, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 2, + "type": 5, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 5, + "color": 2, + "type": 4, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "freezeTime": 8, + "id": 440 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "freezeTime": 15, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 7, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 8, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 9, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 33, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 5, + "num": 20, + "color": 2, + "special": 1, + "length": 2 + }, + { + "id": 6, + "num": 22, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 7, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 28, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 30, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 16, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 12, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 14, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 21, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 2, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 19, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level233.json.meta b/assets/custom/Json/level233.json.meta new file mode 100644 index 0000000..e1d3261 --- /dev/null +++ b/assets/custom/Json/level233.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "953f8449-b284-43de-9f9c-729ff02a4cb9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level234.json b/assets/custom/Json/level234.json new file mode 100644 index 0000000..190ef5e --- /dev/null +++ b/assets/custom/Json/level234.json @@ -0,0 +1,279 @@ +{ + "LEVEL_INFO": [ + { + "id": "171", + "map": [ + 7, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 3, + "color": 7, + "type": 8, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 12, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 14, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 8, + "color": 1, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 5, + "num": 16, + "color": 5, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 6, + "num": 6, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 7, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 22, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 24, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 25, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level234.json.meta b/assets/custom/Json/level234.json.meta new file mode 100644 index 0000000..8285895 --- /dev/null +++ b/assets/custom/Json/level234.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f9074115-81a1-4b1a-9906-6ee46241aa7b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level235.json b/assets/custom/Json/level235.json new file mode 100644 index 0000000..47afaed --- /dev/null +++ b/assets/custom/Json/level235.json @@ -0,0 +1,369 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 2, + "color": "10" + }, + { + "x": 4, + "y": 2, + "color": "10" + }, + { + "x": 3, + "y": 6, + "color": "1" + }, + { + "x": 4, + "y": 6, + "color": "1" + } + ], + "id": "235", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 20, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 6, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "boomTime": 35, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 6, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 25, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 236, + "num": 11, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 237, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 238, + "num": 14, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 239, + "num": 16, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 240, + "num": 1, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 241, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 242, + "num": 10, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 243, + "num": 12, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 244, + "num": 21, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 245, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 246, + "num": 6, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 247, + "num": 7, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 248, + "num": 26, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 249, + "num": 27, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 250, + "num": 19, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 251, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 252, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 253, + "num": 9, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level235.json.meta b/assets/custom/Json/level235.json.meta new file mode 100644 index 0000000..98f26aa --- /dev/null +++ b/assets/custom/Json/level235.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3b15b350-bf0d-419b-bdc3-94e71b7409f7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level236.json b/assets/custom/Json/level236.json new file mode 100644 index 0000000..3c13c6d --- /dev/null +++ b/assets/custom/Json/level236.json @@ -0,0 +1,447 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "236", + "map": [ + 10, + 13 + ], + "time": 130, + "gap": [ + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 2, + "type": 7, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 2, + "type": 7, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 2, + "type": 7, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 2, + "type": 7, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 2, + "type": 7, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 6, + "type": 5, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 5, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 540, + "z": 0 + }, + "id": 410 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 2, + "type": 4, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "freezeTime": 5, + "id": 430 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "freezeTime": 10, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 7, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 8, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 34, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 35, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 18, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 2, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 3, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 38, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 39, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 40, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 26, + "color": 6, + "special": 1, + "length": 1 + }, + { + "id": 13, + "num": 19, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level236.json.meta b/assets/custom/Json/level236.json.meta new file mode 100644 index 0000000..da1d9a3 --- /dev/null +++ b/assets/custom/Json/level236.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "eef8f142-e6dc-45d9-85f1-a5746adb091e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level237.json b/assets/custom/Json/level237.json new file mode 100644 index 0000000..3027013 --- /dev/null +++ b/assets/custom/Json/level237.json @@ -0,0 +1,532 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 6, + "color": "5" + }, + { + "x": 5, + "y": 6, + "color": "5" + }, + { + "x": 6, + "y": 6, + "color": "5" + } + ], + "id": "237", + "map": [ + 11, + 11 + ], + "time": 95, + "gap": [ + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 3, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 3, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 3, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 4, + "type": 9, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 5, + "color": 6, + "type": 9, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 238, + "num": 5, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 239, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 240, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 241, + "num": 3, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 242, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 243, + "num": 0, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 244, + "num": 1, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 245, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 246, + "num": 39, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 247, + "num": 40, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 248, + "num": 41, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 249, + "num": 42, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 250, + "num": 43, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 251, + "num": 44, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 252, + "num": 45, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 253, + "num": 46, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 254, + "num": 34, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 255, + "num": 36, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 256, + "num": 11, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 257, + "num": 13, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 258, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 259, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 260, + "num": 33, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 261, + "num": 35, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level237.json.meta b/assets/custom/Json/level237.json.meta new file mode 100644 index 0000000..3a8a282 --- /dev/null +++ b/assets/custom/Json/level237.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8bebef5b-c60e-44a1-823c-b7739c4563f1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level238.json b/assets/custom/Json/level238.json new file mode 100644 index 0000000..014d8c2 --- /dev/null +++ b/assets/custom/Json/level238.json @@ -0,0 +1,552 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "238", + "map": [ + 10, + 13 + ], + "time": 180, + "gap": [ + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -660, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 7, + "type": 7, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 6, + "type": 5, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -540, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 7, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 540, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "id": 430 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 470 + }, + { + "block": 6, + "color": 8, + "type": 4, + "position": { + "x": -240, + "y": -540, + "z": 0 + }, + "freezeTime": 5, + "id": 480 + }, + { + "block": 10, + "color": 8, + "type": 4, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "freezeTime": 11, + "id": 490 + }, + { + "block": 5, + "color": 4, + "type": 4, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "freezeTime": 15, + "id": 500 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "freezeTime": 18, + "id": 510 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 20, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 7, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 4, + "num": 8, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 5, + "num": 29, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 30, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 6, + "special": 1, + "length": 2 + }, + { + "id": 8, + "num": 18, + "color": 6, + "special": 1, + "length": 0 + }, + { + "id": 9, + "num": 36, + "color": 4, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 10, + "num": 37, + "color": 4, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 11, + "num": 2, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 31, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 32, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 19, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level238.json.meta b/assets/custom/Json/level238.json.meta new file mode 100644 index 0000000..5e3452f --- /dev/null +++ b/assets/custom/Json/level238.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6c18d357-ff8b-4e47-a810-5e1fc6f95f22", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level239.json b/assets/custom/Json/level239.json new file mode 100644 index 0000000..3c747df --- /dev/null +++ b/assets/custom/Json/level239.json @@ -0,0 +1,397 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "239", + "map": [ + 8, + 10 + ], + "time": 115, + "gap": [ + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 10, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 6, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 5, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 5, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 7, + "type": 5, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 7, + "type": 5, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 4, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 240, + "num": 27, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 241, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 242, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 243, + "num": 3, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 244, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 245, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 246, + "num": 20, + "color": 7, + "special": 1, + "length": 2 + }, + { + "id": 247, + "num": 22, + "color": 7, + "special": 1, + "length": 0 + }, + { + "id": 248, + "num": 8, + "color": 2, + "special": 1, + "length": 2 + }, + { + "id": 249, + "num": 10, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 250, + "num": 1, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 251, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 252, + "num": 25, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 253, + "num": 26, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 254, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 255, + "num": 11, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 256, + "num": 6, + "color": 4, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 257, + "num": 7, + "color": 4, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 258, + "num": 30, + "color": 3, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 259, + "num": 31, + "color": 3, + "special": 3, + "length": 0, + "freeze": 15 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level239.json.meta b/assets/custom/Json/level239.json.meta new file mode 100644 index 0000000..dbd5a7d --- /dev/null +++ b/assets/custom/Json/level239.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4d7018fc-e452-4378-ab76-c18af79011f4", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level24.json b/assets/custom/Json/level24.json new file mode 100644 index 0000000..89a14c3 --- /dev/null +++ b/assets/custom/Json/level24.json @@ -0,0 +1,286 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "24", + "map": [ + 7, + 9 + ], + "time": 150, + "gap": [ + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 5, + "y": 5, + "z": 0 + }, + { + "x": 5, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 22, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 1, + "num": 10, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 17, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 24, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 5, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level24.json.meta b/assets/custom/Json/level24.json.meta new file mode 100644 index 0000000..81f3935 --- /dev/null +++ b/assets/custom/Json/level24.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ecd6848d-38d5-46d2-996f-30b47678d91e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level240.json b/assets/custom/Json/level240.json new file mode 100644 index 0000000..c6c51fe --- /dev/null +++ b/assets/custom/Json/level240.json @@ -0,0 +1,437 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 6, + "color": "9" + }, + { + "x": 4, + "y": 5, + "color": "9" + }, + { + "x": 4, + "y": 4, + "color": "9" + } + ], + "id": "240", + "map": [ + 9, + 9 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 3, + "color": 9, + "type": 3, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "lockTime": 6, + "id": 420 + }, + { + "block": 1, + "color": 1, + "type": 6, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "boomTime": 25, + "id": 430 + }, + { + "block": 0, + "color": 8, + "type": 6, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "boomTime": 30, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 241, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 242, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 243, + "num": 24, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 244, + "num": 25, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 245, + "num": 3, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 246, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 247, + "num": 26, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 248, + "num": 27, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 249, + "num": 22, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 250, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 251, + "num": 1, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 252, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 253, + "num": 12, + "color": 9, + "special": 3, + "length": 3, + "freeze": 7 + }, + { + "id": 254, + "num": 14, + "color": 9, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 255, + "num": 16, + "color": 9, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 256, + "num": 11, + "color": 3, + "special": 3, + "length": 3, + "freeze": 11 + }, + { + "id": 257, + "num": 13, + "color": 3, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 258, + "num": 15, + "color": 3, + "special": 3, + "length": 0, + "freeze": 11 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level240.json.meta b/assets/custom/Json/level240.json.meta new file mode 100644 index 0000000..aace5a2 --- /dev/null +++ b/assets/custom/Json/level240.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e8ba0ebf-0acc-423f-b790-0276464e292e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level241.json b/assets/custom/Json/level241.json new file mode 100644 index 0000000..989b1d2 --- /dev/null +++ b/assets/custom/Json/level241.json @@ -0,0 +1,366 @@ +{ + "LEVEL_INFO": [ + { + "id": "172", + "map": [ + 9, + 11 + ], + "time": 125, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 15, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 6, + "type": 2, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 6, + "type": 2, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 6, + "type": 2, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 6, + "type": 2, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 14, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 14, + "color": 1, + "type": 6, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "boomTime": 85, + "id": 340 + }, + { + "block": 15, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 15, + "color": 6, + "type": 3, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "lockTime": 6, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 23, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 14, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 22, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 8, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 28, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 29, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 5, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level241.json.meta b/assets/custom/Json/level241.json.meta new file mode 100644 index 0000000..0f65ead --- /dev/null +++ b/assets/custom/Json/level241.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "de63d893-267e-4252-9cf4-e3178eb9b293", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level242.json b/assets/custom/Json/level242.json new file mode 100644 index 0000000..35629cc --- /dev/null +++ b/assets/custom/Json/level242.json @@ -0,0 +1,373 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "242", + "map": [ + 9, + 12 + ], + "time": 130, + "gap": [ + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 9, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 11, + "color": 10, + "type": 2, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 3, + "color": 10, + "type": 2, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 3, + "color": 8, + "type": 3, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "lockTime": 8, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 6, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "boomTime": 30, + "id": 380 + }, + { + "block": 2, + "color": 10, + "type": 6, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "boomTime": 20, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 2, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 6, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 7, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 40, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 41, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 19, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 21, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 8, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 25, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 28, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 36, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 37, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 33, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level242.json.meta b/assets/custom/Json/level242.json.meta new file mode 100644 index 0000000..b6a08c3 --- /dev/null +++ b/assets/custom/Json/level242.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "35d4b546-9d07-4aea-b003-962ccef585e6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level243.json b/assets/custom/Json/level243.json new file mode 100644 index 0000000..55b1a71 --- /dev/null +++ b/assets/custom/Json/level243.json @@ -0,0 +1,532 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 8, + "color": "9" + }, + { + "x": 3, + "y": 8, + "color": "9" + }, + { + "x": 2, + "y": 7, + "color": "9" + }, + { + "x": 3, + "y": 7, + "color": "9" + }, + { + "x": 2, + "y": 6, + "color": "9" + }, + { + "x": 3, + "y": 6, + "color": "9" + }, + { + "x": 6, + "y": 8, + "color": "2" + }, + { + "x": 7, + "y": 8, + "color": "2" + }, + { + "x": 6, + "y": 7, + "color": "2" + }, + { + "x": 7, + "y": 7, + "color": "2" + }, + { + "x": 6, + "y": 6, + "color": "2" + }, + { + "x": 7, + "y": 6, + "color": "2" + } + ], + "id": "243", + "map": [ + 10, + 13 + ], + "time": 120, + "gap": [ + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 3, + "y": 11, + "z": 0 + }, + { + "x": 4, + "y": 11, + "z": 0 + }, + { + "x": 5, + "y": 11, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": -660, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "lockTime": 6, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 244, + "num": 6, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 245, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 246, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 247, + "num": 41, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 248, + "num": 42, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 249, + "num": 43, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 250, + "num": 29, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 251, + "num": 17, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 252, + "num": 2, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 253, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 254, + "num": 37, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 255, + "num": 38, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 256, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 257, + "num": 16, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 258, + "num": 28, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 259, + "num": 30, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level243.json.meta b/assets/custom/Json/level243.json.meta new file mode 100644 index 0000000..f29dfa9 --- /dev/null +++ b/assets/custom/Json/level243.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "81d9328b-766d-4294-9127-0fa0962124c0", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level244.json b/assets/custom/Json/level244.json new file mode 100644 index 0000000..aa7524e --- /dev/null +++ b/assets/custom/Json/level244.json @@ -0,0 +1,602 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "244", + "map": [ + 10, + 13 + ], + "time": 165, + "gap": [ + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -660, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 60, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 510 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 520 + }, + { + "block": 22, + "color": 2, + "type": 4, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "freezeTime": 11, + "id": 530 + }, + { + "block": 21, + "color": 10, + "type": 4, + "position": { + "x": -360, + "y": -300, + "z": 0 + }, + "freezeTime": 15, + "id": 540 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 550 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 0, + "y": 540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 440 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 450 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 460 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 470 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 480 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 490 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 500 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 510 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 520 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 530 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 540 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 550 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 245, + "num": 31, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 246, + "num": 32, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 247, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 248, + "num": 2, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 249, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 250, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 251, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 252, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 253, + "num": 34, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 254, + "num": 35, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 255, + "num": 5, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 256, + "num": 6, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 257, + "num": 29, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 258, + "num": 30, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 259, + "num": 22, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 260, + "num": 15, + "color": 1, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 261, + "num": 17, + "color": 1, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 262, + "num": 19, + "color": 10, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 263, + "num": 21, + "color": 10, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 264, + "num": 16, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level244.json.meta b/assets/custom/Json/level244.json.meta new file mode 100644 index 0000000..0bb3b96 --- /dev/null +++ b/assets/custom/Json/level244.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "95da7404-234a-4b7c-86e7-ceacbbe2149a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level245.json b/assets/custom/Json/level245.json new file mode 100644 index 0000000..ad17aeb --- /dev/null +++ b/assets/custom/Json/level245.json @@ -0,0 +1,314 @@ +{ + "LEVEL_INFO": [ + { + "id": "173", + "map": [ + 9, + 9 + ], + "time": 85, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 9, + "type": 6, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "boomTime": 25, + "id": 280 + }, + { + "block": 3, + "color": 2, + "type": 3, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "lockTime": 6, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 7, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 4, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "freezeTime": 4, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 5, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "freezeTime": 6, + "id": 400 + }, + { + "block": 1, + "color": 3, + "type": 6, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "boomTime": 30, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 7, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 27, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 0, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 19, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 20, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 21, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 6, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 8, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level245.json.meta b/assets/custom/Json/level245.json.meta new file mode 100644 index 0000000..5f964f1 --- /dev/null +++ b/assets/custom/Json/level245.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2db0d9aa-715e-404c-8df0-0a8500359a48", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level246.json b/assets/custom/Json/level246.json new file mode 100644 index 0000000..e6368cc --- /dev/null +++ b/assets/custom/Json/level246.json @@ -0,0 +1,353 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 2, + "color": "3" + }, + { + "x": 3, + "y": 2, + "color": "3" + }, + { + "x": 4, + "y": 2, + "color": "3" + } + ], + "id": "246", + "map": [ + 7, + 11 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 7, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 14, + "color": 1, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 15, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 247, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 248, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 249, + "num": 13, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 250, + "num": 9, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 251, + "num": 17, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 252, + "num": 3, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 253, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 254, + "num": 6, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 255, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 256, + "num": 10, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 257, + "num": 12, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 258, + "num": 22, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 259, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 260, + "num": 25, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 261, + "num": 26, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level246.json.meta b/assets/custom/Json/level246.json.meta new file mode 100644 index 0000000..237d059 --- /dev/null +++ b/assets/custom/Json/level246.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5164ad44-e88a-41c6-800b-b93239082842", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level247.json b/assets/custom/Json/level247.json new file mode 100644 index 0000000..3adce29 --- /dev/null +++ b/assets/custom/Json/level247.json @@ -0,0 +1,385 @@ +{ + "LEVEL_INFO": [ + { + "id": "174", + "map": [ + 8, + 10 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 8, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 7, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "freezeTime": 8, + "id": 410 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "freezeTime": 13, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 5, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 23, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 21, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 20, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 1, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 0, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 8, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 10, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level247.json.meta b/assets/custom/Json/level247.json.meta new file mode 100644 index 0000000..5c4ba2e --- /dev/null +++ b/assets/custom/Json/level247.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "58f95acc-1b46-4132-8bf1-ba864bfbe592", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level248.json b/assets/custom/Json/level248.json new file mode 100644 index 0000000..accc012 --- /dev/null +++ b/assets/custom/Json/level248.json @@ -0,0 +1,546 @@ +{ + "LEVEL_INFO": [ + { + "id": "175", + "map": [ + 10, + 12 + ], + "time": 180, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": 480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 480, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 20, + "color": 1, + "type": 9, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 19, + "color": 6, + "type": 9, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 21, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 22, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "adhesiveTime": 2, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 450 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 460 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 480 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 490 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 510 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 530 + }, + { + "block": 16, + "color": 2, + "type": 1, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "stacking": 8, + "id": 540 + }, + { + "block": 17, + "color": 8, + "type": 1, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "stacking": 1, + "id": 550 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 31, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 32, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 5, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 7, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 3, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 29, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 30, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 14, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 16, + "num": 16, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 17, + "num": 18, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 18, + "num": 20, + "color": 2, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level248.json.meta b/assets/custom/Json/level248.json.meta new file mode 100644 index 0000000..fff5be6 --- /dev/null +++ b/assets/custom/Json/level248.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "db6987dd-b999-48cf-ad8e-beac9ae9fafe", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level249.json b/assets/custom/Json/level249.json new file mode 100644 index 0000000..ba74bd6 --- /dev/null +++ b/assets/custom/Json/level249.json @@ -0,0 +1,454 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 5, + "color": "4" + }, + { + "x": 4, + "y": 5, + "color": "4" + }, + { + "x": 3, + "y": 4, + "color": "4" + }, + { + "x": 4, + "y": 4, + "color": "4" + }, + { + "x": 6, + "y": 5, + "color": "10" + }, + { + "x": 7, + "y": 5, + "color": "10" + }, + { + "x": 6, + "y": 4, + "color": "10" + }, + { + "x": 7, + "y": 4, + "color": "10" + } + ], + "id": "249", + "map": [ + 11, + 11 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 5, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 5, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 20, + "color": 3, + "type": 1, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "stacking": 9, + "id": 360 + }, + { + "block": 20, + "color": 6, + "type": 1, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "stacking": 3, + "id": 370 + }, + { + "block": 8, + "color": 7, + "type": 1, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "stacking": 2, + "id": 380 + }, + { + "block": 12, + "color": 10, + "type": 1, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "stacking": 7, + "id": 390 + }, + { + "block": 19, + "color": 10, + "type": 1, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "stacking": 1, + "id": 400 + }, + { + "block": 19, + "color": 1, + "type": 1, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "stacking": 4, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 250, + "num": 21, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 251, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 252, + "num": 11, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 253, + "num": 13, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 254, + "num": 1, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 255, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 256, + "num": 4, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 257, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 258, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 259, + "num": 7, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 260, + "num": 8, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 261, + "num": 12, + "color": 9, + "special": 1, + "length": 2 + }, + { + "id": 262, + "num": 14, + "color": 9, + "special": 1, + "length": 0 + }, + { + "id": 263, + "num": 22, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 264, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 265, + "num": 34, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 266, + "num": 35, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 267, + "num": 31, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 268, + "num": 32, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 269, + "num": 33, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 270, + "num": 28, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 271, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level249.json.meta b/assets/custom/Json/level249.json.meta new file mode 100644 index 0000000..88a317c --- /dev/null +++ b/assets/custom/Json/level249.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9a202463-9a1a-43ce-a901-f696d7c4fc2b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level25.json b/assets/custom/Json/level25.json new file mode 100644 index 0000000..a389100 --- /dev/null +++ b/assets/custom/Json/level25.json @@ -0,0 +1,149 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "25", + "map": [ + 7, + 8 + ], + "time": 85, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "freezeTime": 3, + "id": 240 + }, + { + "block": 1, + "color": 1, + "type": 4, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "freezeTime": 2, + "id": 250 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 7, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 9, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 11, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 10, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 6, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 8, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 13, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 15, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level25.json.meta b/assets/custom/Json/level25.json.meta new file mode 100644 index 0000000..cf73f54 --- /dev/null +++ b/assets/custom/Json/level25.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "297683d0-3b76-4fa0-befa-20deae2e66c4", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level250.json b/assets/custom/Json/level250.json new file mode 100644 index 0000000..26217e6 --- /dev/null +++ b/assets/custom/Json/level250.json @@ -0,0 +1,482 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "250", + "map": [ + 10, + 12 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 18, + "color": 1, + "type": 1, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 270 + }, + { + "block": 18, + "color": 5, + "type": 1, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "stacking": 1, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 1, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "stacking": 6, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 2, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "freezeTime": 16, + "id": 450 + }, + { + "block": 5, + "color": 5, + "type": 4, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "freezeTime": 18, + "id": 460 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "freezeTime": 20, + "id": 470 + }, + { + "block": 20, + "color": 1, + "type": 4, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "freezeTime": 6, + "id": 480 + }, + { + "block": 19, + "color": 9, + "type": 4, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "freezeTime": 10, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 9, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 35, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 1, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 27, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 28, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 16, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 18, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 5, + "color": 5, + "special": 2, + "length": 3, + "lock": true + }, + { + "id": 14, + "num": 6, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 15, + "num": 7, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 16, + "num": 31, + "color": 1, + "special": 2, + "length": 3, + "lock": true + }, + { + "id": 17, + "num": 32, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 18, + "num": 33, + "color": 1, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level250.json.meta b/assets/custom/Json/level250.json.meta new file mode 100644 index 0000000..1f31f22 --- /dev/null +++ b/assets/custom/Json/level250.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9091e64f-d21f-4037-8a05-702e6386390c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level251.json b/assets/custom/Json/level251.json new file mode 100644 index 0000000..614cc9a --- /dev/null +++ b/assets/custom/Json/level251.json @@ -0,0 +1,404 @@ +{ + "LEVEL_INFO": [ + { + "id": "178", + "map": [ + 8, + 10 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 5, + "color": 9, + "type": 1, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "stacking": 7, + "id": 450 + }, + { + "block": 5, + "color": 7, + "type": 3, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "lockTime": 4, + "id": 450 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 5, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 21, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 25, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 26, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 3, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 12, + "num": 4, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 13, + "num": 23, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 14, + "num": 24, + "color": 7, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level251.json.meta b/assets/custom/Json/level251.json.meta new file mode 100644 index 0000000..52cb3b0 --- /dev/null +++ b/assets/custom/Json/level251.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "cba472a6-d0a3-41bc-9128-ba1e69287e54", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level252.json b/assets/custom/Json/level252.json new file mode 100644 index 0000000..08c6816 --- /dev/null +++ b/assets/custom/Json/level252.json @@ -0,0 +1,371 @@ +{ + "LEVEL_INFO": [ + { + "id": "179", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 7, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 2, + "type": 8, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 8, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 5, + "color": 10, + "type": 6, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "boomTime": 40, + "id": 390 + }, + { + "block": 1, + "color": 6, + "type": 4, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "freezeTime": 15, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 9, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 2, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 22, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 20, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 21, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 8, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 10, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level252.json.meta b/assets/custom/Json/level252.json.meta new file mode 100644 index 0000000..0ac3c95 --- /dev/null +++ b/assets/custom/Json/level252.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4f292e0d-9f4b-4432-9168-daf1c8bc6ff3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level253.json b/assets/custom/Json/level253.json new file mode 100644 index 0000000..0a4ba8e --- /dev/null +++ b/assets/custom/Json/level253.json @@ -0,0 +1,281 @@ +{ + "LEVEL_INFO": [ + { + "id": "181", + "map": [ + 8, + 9 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 16, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 17, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 15, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 9, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 11, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 14, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 16, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 22, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 19, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 3, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level253.json.meta b/assets/custom/Json/level253.json.meta new file mode 100644 index 0000000..4c8ea6a --- /dev/null +++ b/assets/custom/Json/level253.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8497b04d-11d4-4ada-b9a2-d5f6ab8ccb6d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level254.json b/assets/custom/Json/level254.json new file mode 100644 index 0000000..d1c0973 --- /dev/null +++ b/assets/custom/Json/level254.json @@ -0,0 +1,378 @@ +{ + "LEVEL_INFO": [ + { + "id": "182", + "map": [ + 8, + 9 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 260 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 23, + "color": 5, + "type": 2, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 410 + }, + { + "block": 23, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 9, + "type": 3, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "lockTime": 4, + "id": 410 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 4, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 5, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 6, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 23, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 24, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 20, + "color": 7, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 8, + "num": 21, + "color": 7, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 9, + "num": 1, + "color": 9, + "special": 2, + "length": 3, + "lock": true + }, + { + "id": 10, + "num": 2, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 11, + "num": 3, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 12, + "num": 7, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 9, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level254.json.meta b/assets/custom/Json/level254.json.meta new file mode 100644 index 0000000..83babd2 --- /dev/null +++ b/assets/custom/Json/level254.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f5579a77-b49c-4144-98f8-8249bebd1ca4", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level255.json b/assets/custom/Json/level255.json new file mode 100644 index 0000000..bad5b66 --- /dev/null +++ b/assets/custom/Json/level255.json @@ -0,0 +1,395 @@ +{ + "LEVEL_INFO": [ + { + "id": "183", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "lockTime": 6, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 7, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 26, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 27, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 8, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 14, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 16, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 18, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 13, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 15, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 9, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 14, + "num": 11, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 15, + "num": 17, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 16, + "num": 19, + "color": 6, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level255.json.meta b/assets/custom/Json/level255.json.meta new file mode 100644 index 0000000..1bcc692 --- /dev/null +++ b/assets/custom/Json/level255.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d98fca7b-e7b0-42b5-8bf6-15c217dd0fbf", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level256.json b/assets/custom/Json/level256.json new file mode 100644 index 0000000..039ab06 --- /dev/null +++ b/assets/custom/Json/level256.json @@ -0,0 +1,647 @@ +{ + "LEVEL_INFO": [ + { + "id": "185", + "map": [ + 11, + 11 + ], + "time": 220, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 410 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 490 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 500 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 510 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 530 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 540 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 550 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 560 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 570 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 580 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 590 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 600 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 610 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 620 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 630 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 640 + }, + { + "block": 4, + "color": 8, + "type": 4, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "freezeTime": 9, + "id": 650 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 30, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 31, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 32, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 12, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 14, + "color": 4, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 6, + "num": 16, + "color": 4, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 7, + "num": 20, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 8, + "num": 22, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 9, + "num": 3, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 19, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 24, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 15, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 11, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 21, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level256.json.meta b/assets/custom/Json/level256.json.meta new file mode 100644 index 0000000..877fd7d --- /dev/null +++ b/assets/custom/Json/level256.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9eb4b7e1-ca8b-4e36-9a45-3ef2b7c43ce1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level257.json b/assets/custom/Json/level257.json new file mode 100644 index 0000000..c37e9b1 --- /dev/null +++ b/assets/custom/Json/level257.json @@ -0,0 +1,412 @@ +{ + "LEVEL_INFO": [ + { + "id": "175", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 3, + "type": 6, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "boomTime": 25, + "id": 230 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 3, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 15, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 19, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 23, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 24, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 25, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 9, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 11, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 13, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 8, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 10, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 12, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 14, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 17, + "num": 16, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 18, + "num": 18, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level257.json.meta b/assets/custom/Json/level257.json.meta new file mode 100644 index 0000000..774c3bd --- /dev/null +++ b/assets/custom/Json/level257.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8a1d4db3-4de4-4dde-afbf-25a215ef8735", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level258.json b/assets/custom/Json/level258.json new file mode 100644 index 0000000..b374f54 --- /dev/null +++ b/assets/custom/Json/level258.json @@ -0,0 +1,428 @@ +{ + "LEVEL_INFO": [ + { + "id": "188", + "map": [ + 9, + 12 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 10, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 14, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 7, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 9, + "type": 2, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 15, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 6, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 3, + "color": 1, + "type": 3, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "lockTime": 6, + "id": 370 + }, + { + "block": 3, + "color": 1, + "type": 9, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 3, + "color": 1, + "type": 9, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 19, + "color": 3, + "type": 4, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "freezeTime": 6, + "id": 400 + }, + { + "block": 20, + "color": 5, + "type": 4, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "freezeTime": 12, + "id": 410 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "freezeTime": 16, + "id": 420 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "freezeTime": 17, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 19, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 21, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 29, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 30, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 31, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 32, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 11, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 13, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 14, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 5, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 21, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level258.json.meta b/assets/custom/Json/level258.json.meta new file mode 100644 index 0000000..f19bf7f --- /dev/null +++ b/assets/custom/Json/level258.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f6fcca3a-82f1-44ac-be4b-08cf1d933c0a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level259.json b/assets/custom/Json/level259.json new file mode 100644 index 0000000..40d8a98 --- /dev/null +++ b/assets/custom/Json/level259.json @@ -0,0 +1,398 @@ +{ + "LEVEL_INFO": [ + { + "id": "190", + "map": [ + 8, + 10 + ], + "time": 170, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 19, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 1, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 5, + "id": 370 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 8, + "id": 380 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "freezeTime": 13, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 2, + "color": 3, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 8, + "num": 3, + "color": 3, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 9, + "num": 22, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 10, + "num": 23, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 11, + "num": 25, + "color": 4, + "special": 2, + "length": 3, + "lock": false + }, + { + "id": 12, + "num": 26, + "color": 4, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 13, + "num": 27, + "color": 4, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 14, + "num": 14, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 15, + "num": 16, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 16, + "num": 20, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 5, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 19, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 7, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 11, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 22, + "num": 13, + "color": 6, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level259.json.meta b/assets/custom/Json/level259.json.meta new file mode 100644 index 0000000..1b0fd86 --- /dev/null +++ b/assets/custom/Json/level259.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9ac9ff96-7a87-4d5b-b6c5-36ddd5f7cdc1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level26.json b/assets/custom/Json/level26.json new file mode 100644 index 0000000..3ef1c04 --- /dev/null +++ b/assets/custom/Json/level26.json @@ -0,0 +1,633 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "26", + "map": [ + 10, + 14 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 8, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 400 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 430 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 12, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 450 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 600, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 600, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 600, + "z": 0 + }, + "id": 490 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 500 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 510 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -720, + "z": 0 + }, + "id": 520 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -720, + "z": 0 + }, + "id": 530 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 540 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 550 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -720, + "z": 0 + }, + "id": 560 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -720, + "z": 0 + }, + "id": 570 + }, + { + "block": 9, + "color": 2, + "type": 4, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "freezeTime": 1, + "id": 580 + }, + { + "block": 11, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 2, + "id": 590 + }, + { + "block": 5, + "color": 4, + "type": 4, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "freezeTime": 15, + "id": 600 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 27, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 28, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 29, + "num": 1, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 30, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 31, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 32, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 33, + "num": 27, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 34, + "num": 8, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 35, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 36, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 37, + "num": 36, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 38, + "num": 37, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 39, + "num": 38, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 40, + "num": 33, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 41, + "num": 34, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 42, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 43, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 44, + "num": 29, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 45, + "num": 30, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 46, + "num": 31, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 47, + "num": 24, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 48, + "num": 26, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 49, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 50, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level26.json.meta b/assets/custom/Json/level26.json.meta new file mode 100644 index 0000000..961e4b1 --- /dev/null +++ b/assets/custom/Json/level26.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "529f3c90-8582-4ee9-ad0e-a03537b58dbe", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level260.json b/assets/custom/Json/level260.json new file mode 100644 index 0000000..4ed0cb8 --- /dev/null +++ b/assets/custom/Json/level260.json @@ -0,0 +1,246 @@ +{ + "LEVEL_INFO": [ + { + "id": "191", + "map": [ + 8, + 8 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 10, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 11, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 6, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 290 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 4, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 5, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 0, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 12, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 22, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 23, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 18, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 19, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level260.json.meta b/assets/custom/Json/level260.json.meta new file mode 100644 index 0000000..b205c21 --- /dev/null +++ b/assets/custom/Json/level260.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "33be2423-e03e-4fe6-859c-2edc0fd2a740", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level261.json b/assets/custom/Json/level261.json new file mode 100644 index 0000000..49555b6 --- /dev/null +++ b/assets/custom/Json/level261.json @@ -0,0 +1,564 @@ +{ + "LEVEL_INFO": [ + { + "id": "192", + "map": [ + 10, + 13 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 540, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 10, + "type": 9, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 5, + "color": 7, + "type": 9, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 17, + "color": 4, + "type": 0, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 16, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 17, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 450 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 480 + }, + { + "block": 16, + "color": 10, + "type": 0, + "position": { + "x": -360, + "y": -60, + "z": 0 + }, + "id": 490 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 510 + }, + { + "block": 1, + "color": 10, + "type": 4, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "freezeTime": 4, + "id": 530 + }, + { + "block": 4, + "color": 3, + "type": 4, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "freezeTime": 22, + "id": 540 + }, + { + "block": 4, + "color": 10, + "type": 4, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "freezeTime": 22, + "id": 550 + }, + { + "block": 5, + "color": 7, + "type": 3, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "lockTime": 6, + "id": 560 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "freezeTime": 4, + "id": 560 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 20, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 5, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 6, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 7, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 32, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 34, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 2, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 18, + "num": 0, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 19, + "num": 27, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 20, + "num": 29, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level261.json.meta b/assets/custom/Json/level261.json.meta new file mode 100644 index 0000000..3032948 --- /dev/null +++ b/assets/custom/Json/level261.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ccfa9000-3fde-4bb2-b4e1-3bcbdbbb7735", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level262.json b/assets/custom/Json/level262.json new file mode 100644 index 0000000..faef115 --- /dev/null +++ b/assets/custom/Json/level262.json @@ -0,0 +1,515 @@ +{ + "LEVEL_INFO": [ + { + "id": "193", + "map": [ + 10, + 13 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 540, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 540, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 540, + "z": 0 + }, + "id": 330 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "id": 350 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 12, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 8, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 1, + "type": 1, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "stacking": 10, + "id": 400 + }, + { + "block": 5, + "color": 10, + "type": 1, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "stacking": 9, + "id": 410 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": 540, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 430 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 9, + "type": 1, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "stacking": 7, + "id": 450 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 540, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "id": 510 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": -240, + "y": 420, + "z": 0 + }, + "freezeTime": 6, + "id": 520 + }, + { + "block": 1, + "color": 1, + "type": 4, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "freezeTime": 8, + "id": 530 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 31, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 32, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 33, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 4, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 6, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 12, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 23, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 11, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 13, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 18, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 17, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 18, + "num": 19, + "color": 3, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level262.json.meta b/assets/custom/Json/level262.json.meta new file mode 100644 index 0000000..11f6eb5 --- /dev/null +++ b/assets/custom/Json/level262.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f3598106-b286-485c-b95b-d8b37e0eccb3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level263.json b/assets/custom/Json/level263.json new file mode 100644 index 0000000..36160c7 --- /dev/null +++ b/assets/custom/Json/level263.json @@ -0,0 +1,500 @@ +{ + "LEVEL_INFO": [ + { + "id": "196", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 20, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 19, + "color": 4, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 430 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 450 + }, + { + "block": 10, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 460 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 480 + }, + { + "block": 19, + "color": 1, + "type": 9, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 490 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 510 + }, + { + "block": 4, + "color": 5, + "type": 8, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 520 + }, + { + "block": 4, + "color": 8, + "type": 8, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 530 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 31, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 32, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 23, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 24, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 33, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 34, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 7, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 8, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 4, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 10, + "color": 8, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level263.json.meta b/assets/custom/Json/level263.json.meta new file mode 100644 index 0000000..4bb2b47 --- /dev/null +++ b/assets/custom/Json/level263.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2aabd508-4d34-45f0-b81f-2f4977615d0a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level264.json b/assets/custom/Json/level264.json new file mode 100644 index 0000000..f7b784c --- /dev/null +++ b/assets/custom/Json/level264.json @@ -0,0 +1,459 @@ +{ + "LEVEL_INFO": [ + { + "id": "197", + "map": [ + 11, + 12 + ], + "time": 110, + "gap": [ + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 9, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 9, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 3, + "y": 3, + "z": 0 + }, + { + "x": 3, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "adhesiveTime": 2, + "id": 220 + }, + { + "block": 3, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 230 + }, + { + "block": 3, + "color": 10, + "type": 2, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 5, + "type": 2, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 5, + "type": 2, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 3, + "color": 6, + "type": 9, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 3, + "color": 6, + "type": 9, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 15, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 2, + "type": 3, + "position": { + "x": 540, + "y": -360, + "z": 0 + }, + "lockTime": 3, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 15, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 1, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "stacking": 2, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "freezeTime": 8, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 0, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 2, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 16, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 7, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 32, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 33, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 4, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 35, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 36, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 37, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level264.json.meta b/assets/custom/Json/level264.json.meta new file mode 100644 index 0000000..234274d --- /dev/null +++ b/assets/custom/Json/level264.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "17da4e62-ea32-4a82-9d0f-ce4a1ec30ba7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level265.json b/assets/custom/Json/level265.json new file mode 100644 index 0000000..4987987 --- /dev/null +++ b/assets/custom/Json/level265.json @@ -0,0 +1,546 @@ +{ + "LEVEL_INFO": [ + { + "id": "200", + "map": [ + 10, + 13 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 540, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 540, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 7, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 4, + "color": 1, + "type": 8, + "position": { + "x": -360, + "y": 60, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 3, + "type": 8, + "position": { + "x": 480, + "y": 60, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 470 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 480 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 490 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 500 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 520 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 530 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 540 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 550 + }, + { + "block": 3, + "color": 2, + "type": 4, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "freezeTime": 7, + "id": 560 + }, + { + "block": 11, + "color": 6, + "type": 4, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "freezeTime": 11, + "id": 570 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 7, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 8, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 29, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 30, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 2, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 11, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 25, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 17, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 33, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 34, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 35, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 18, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 20, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 19, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level265.json.meta b/assets/custom/Json/level265.json.meta new file mode 100644 index 0000000..b67691e --- /dev/null +++ b/assets/custom/Json/level265.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f9e2185c-95eb-4a2c-a5bf-80ed0b1015ea", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level266.json b/assets/custom/Json/level266.json new file mode 100644 index 0000000..57237d3 --- /dev/null +++ b/assets/custom/Json/level266.json @@ -0,0 +1,448 @@ +{ + "LEVEL_INFO": [ + { + "id": "202", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 10, + "type": 1, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "stacking": 3, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 4, + "type": 1, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "stacking": 10, + "id": 270 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 9, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 14, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 5, + "type": 1, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "stacking": 7, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "boomTime": 30, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 19, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 400 + }, + { + "block": 21, + "color": 2, + "type": 1, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "stacking": 8, + "id": 410 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 20, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 22, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 28, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 29, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 30, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 24, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 32, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 11, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 13, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 2, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 16, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 19, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level266.json.meta b/assets/custom/Json/level266.json.meta new file mode 100644 index 0000000..c377439 --- /dev/null +++ b/assets/custom/Json/level266.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5818d56e-14f9-4544-a852-e2b9fdd5ee46", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level267.json b/assets/custom/Json/level267.json new file mode 100644 index 0000000..761c406 --- /dev/null +++ b/assets/custom/Json/level267.json @@ -0,0 +1,453 @@ +{ + "LEVEL_INFO": [ + { + "id": "204", + "map": [ + 9, + 12 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 2, + "type": 1, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "stacking": 8, + "id": 300 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 4, + "type": 1, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "stacking": 7, + "id": 420 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 29, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 30, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 23, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 18, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 20, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 22, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 10, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 5, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 3, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 27, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 28, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 11, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level267.json.meta b/assets/custom/Json/level267.json.meta new file mode 100644 index 0000000..4fce199 --- /dev/null +++ b/assets/custom/Json/level267.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5bce6534-618a-4213-ab6f-11b379aaf395", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level268.json b/assets/custom/Json/level268.json new file mode 100644 index 0000000..831b7be --- /dev/null +++ b/assets/custom/Json/level268.json @@ -0,0 +1,496 @@ +{ + "LEVEL_INFO": [ + { + "id": "205", + "map": [ + 10, + 13 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 8, + "type": 5, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 5, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 8, + "color": 8, + "type": 5, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 8, + "type": 5, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 8, + "type": 5, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 8, + "type": 5, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 8, + "type": 5, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 8, + "type": 5, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 8, + "type": 5, + "position": { + "x": -360, + "y": -300, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 8, + "type": 8, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 380 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -360, + "y": 420, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 7, + "type": 5, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 5, + "type": 5, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 480 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 490 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 500 + }, + { + "block": 5, + "color": 7, + "type": 3, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "lockTime": 5, + "id": 510 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -120, + "y": 540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 530 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -240, + "y": 540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 540 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 8, + "special": 1, + "length": 2 + }, + { + "id": 2, + "num": 18, + "color": 8, + "special": 1, + "length": 0 + }, + { + "id": 3, + "num": 17, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 24, + "color": 5, + "special": 1, + "length": 2 + }, + { + "id": 6, + "num": 26, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 7, + "num": 4, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 5, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 31, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 32, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 22, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 20, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 12, + "color": 7, + "special": 1, + "length": 2 + }, + { + "id": 14, + "num": 14, + "color": 7, + "special": 1, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level268.json.meta b/assets/custom/Json/level268.json.meta new file mode 100644 index 0000000..eafcd38 --- /dev/null +++ b/assets/custom/Json/level268.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "85273380-9862-41e3-a37d-ad5dcdf19252", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level269.json b/assets/custom/Json/level269.json new file mode 100644 index 0000000..596cd6f --- /dev/null +++ b/assets/custom/Json/level269.json @@ -0,0 +1,478 @@ +{ + "LEVEL_INFO": [ + { + "id": "207", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 8, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 12, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 15, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "adhesiveTime": 8, + "id": 400 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 4, + "color": 6, + "type": 8, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 1, + "type": 6, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "boomTime": 25, + "id": 460 + }, + { + "block": 14, + "color": 7, + "type": 4, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "freezeTime": 10, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 2, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 8, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 9, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 4, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 28, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 29, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 30, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 16, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 17, + "num": 18, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 20, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 32, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level269.json.meta b/assets/custom/Json/level269.json.meta new file mode 100644 index 0000000..31d534d --- /dev/null +++ b/assets/custom/Json/level269.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6f622c03-810c-4f3d-a4a0-cc5d04cd24ff", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level27.json b/assets/custom/Json/level27.json new file mode 100644 index 0000000..4b80fea --- /dev/null +++ b/assets/custom/Json/level27.json @@ -0,0 +1,319 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "27", + "map": [ + 9, + 11 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 220 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 10, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 15, + "color": 5, + "type": 4, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "freezeTime": 4, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 10, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 14, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 3, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 20, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 22, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 9, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 13, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 15, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 17, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level27.json.meta b/assets/custom/Json/level27.json.meta new file mode 100644 index 0000000..3bcb5d6 --- /dev/null +++ b/assets/custom/Json/level27.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "051d3cb4-82a8-434d-8c54-db90891e921a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level270.json b/assets/custom/Json/level270.json new file mode 100644 index 0000000..cb56ab4 --- /dev/null +++ b/assets/custom/Json/level270.json @@ -0,0 +1,463 @@ +{ + "LEVEL_INFO": [ + { + "id": "208", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 16, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 7, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 17, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 11, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 18, + "color": 1, + "type": 3, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 430 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "freezeTime": 8, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 5, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 0, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 11, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 19, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 24, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 30, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 32, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 33, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 25, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 26, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 27, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 18, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level270.json.meta b/assets/custom/Json/level270.json.meta new file mode 100644 index 0000000..4c070be --- /dev/null +++ b/assets/custom/Json/level270.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d3e99db9-1c86-4ae7-ba2f-6f066b06f442", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level271.json b/assets/custom/Json/level271.json new file mode 100644 index 0000000..921b72a --- /dev/null +++ b/assets/custom/Json/level271.json @@ -0,0 +1,371 @@ +{ + "LEVEL_INFO": [ + { + "id": "209", + "map": [ + 9, + 12 + ], + "time": 110, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 5, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 10, + "type": 5, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 14, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 18, + "color": 7, + "type": 4, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "freezeTime": 3, + "id": 360 + }, + { + "block": 18, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "freezeTime": 4, + "id": 370 + }, + { + "block": 18, + "color": 2, + "type": 4, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "freezeTime": 6, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 0, + "color": 2, + "special": 2, + "length": 3, + "lock": true + }, + { + "id": 2, + "num": 1, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 3, + "num": 2, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 4, + "num": 31, + "color": 7, + "special": 2, + "length": 3, + "lock": true + }, + { + "id": 5, + "num": 32, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 6, + "num": 33, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 7, + "num": 16, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 6, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 15, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 19, + "color": 10, + "special": 1, + "length": 1 + }, + { + "id": 14, + "num": 21, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 37, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level271.json.meta b/assets/custom/Json/level271.json.meta new file mode 100644 index 0000000..4b6d1c6 --- /dev/null +++ b/assets/custom/Json/level271.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4f90fb34-bca9-4dcf-b59a-0485ac52bdb8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level272.json b/assets/custom/Json/level272.json new file mode 100644 index 0000000..667173a --- /dev/null +++ b/assets/custom/Json/level272.json @@ -0,0 +1,375 @@ +{ + "LEVEL_INFO": [ + { + "id": "211", + "map": [ + 8, + 10 + ], + "time": 140, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 4, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 1, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "stacking": 2, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 1, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "stacking": 3, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 3, + "type": 3, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "lockTime": 3, + "id": 370 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "freezeTime": 4, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 15, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 11, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 4, + "num": 13, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 5, + "num": 19, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 6, + "num": 26, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 7, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 18, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 20, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 16, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 14, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level272.json.meta b/assets/custom/Json/level272.json.meta new file mode 100644 index 0000000..04f93cd --- /dev/null +++ b/assets/custom/Json/level272.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ab14193e-c3ac-4f85-bfef-127a626ce568", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level273.json b/assets/custom/Json/level273.json new file mode 100644 index 0000000..e25d20d --- /dev/null +++ b/assets/custom/Json/level273.json @@ -0,0 +1,480 @@ +{ + "LEVEL_INFO": [ + { + "id": "212", + "map": [ + 10, + 14 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 6, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -720, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 3, + "type": 2, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -720, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 14, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 3, + "color": 1, + "type": 5, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 5, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 13, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -720, + "z": 0 + }, + "id": 410 + }, + { + "block": 14, + "color": 1, + "type": 3, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "lockTime": 5, + "id": 420 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": 360, + "y": 480, + "z": 0 + }, + "freezeTime": 3, + "id": 430 + }, + { + "block": 5, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 10, + "id": 440 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "freezeTime": 12, + "id": 450 + }, + { + "block": 1, + "color": 10, + "type": 4, + "position": { + "x": 0, + "y": -720, + "z": 0 + }, + "freezeTime": 6, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 11, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 8, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 9, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 15, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 21, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 22, + "color": 1, + "special": 1, + "length": 3 + }, + { + "id": 12, + "num": 24, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 13, + "num": 26, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 14, + "num": 34, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 36, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 37, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 38, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 39, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 18, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 21, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 12, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 23, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level273.json.meta b/assets/custom/Json/level273.json.meta new file mode 100644 index 0000000..e4e5053 --- /dev/null +++ b/assets/custom/Json/level273.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "842c9461-0ab5-4db4-a546-933aaf00e770", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level274.json b/assets/custom/Json/level274.json new file mode 100644 index 0000000..ffdf134 --- /dev/null +++ b/assets/custom/Json/level274.json @@ -0,0 +1,399 @@ +{ + "LEVEL_INFO": [ + { + "id": "213", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 21, + "color": 8, + "type": 3, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "lockTime": 5, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 450 + }, + { + "block": 23, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 24, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 20, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 21, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 1, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 13, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 22, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 9, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 11, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level274.json.meta b/assets/custom/Json/level274.json.meta new file mode 100644 index 0000000..7e4a5bd --- /dev/null +++ b/assets/custom/Json/level274.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ed59f6b2-6565-48d3-b376-11181d3fcd7d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level275.json b/assets/custom/Json/level275.json new file mode 100644 index 0000000..4a3c73c --- /dev/null +++ b/assets/custom/Json/level275.json @@ -0,0 +1,450 @@ +{ + "LEVEL_INFO": [ + { + "id": "215", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 7, + "type": 7, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 19, + "color": 3, + "type": 6, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "boomTime": 10, + "id": 420 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 450 + }, + { + "block": 19, + "color": 8, + "type": 1, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "stacking": 7, + "id": 460 + }, + { + "block": 20, + "color": 8, + "type": 1, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "stacking": 10, + "id": 470 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "freezeTime": 6, + "id": 480 + }, + { + "block": 3, + "color": 3, + "type": 4, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "freezeTime": 8, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 24, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 26, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 27, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 11, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 15, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 21, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 23, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level275.json.meta b/assets/custom/Json/level275.json.meta new file mode 100644 index 0000000..99611af --- /dev/null +++ b/assets/custom/Json/level275.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b7521e15-fda8-4078-8747-84160af6a116", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level276.json b/assets/custom/Json/level276.json new file mode 100644 index 0000000..c285f5c --- /dev/null +++ b/assets/custom/Json/level276.json @@ -0,0 +1,468 @@ +{ + "LEVEL_INFO": [ + { + "id": "216", + "map": [ + 10, + 13 + ], + "time": 130, + "gap": [ + { + "x": 3, + "y": 11, + "z": 0 + }, + { + "x": 4, + "y": 11, + "z": 0 + }, + { + "x": 5, + "y": 11, + "z": 0 + }, + { + "x": 6, + "y": 11, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 12, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 8, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 10, + "type": 5, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 10, + "type": 5, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 6, + "type": 5, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 470 + }, + { + "block": 3, + "color": 9, + "type": 7, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 480 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "freezeTime": 6, + "id": 490 + }, + { + "block": 5, + "color": 5, + "type": 4, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "freezeTime": 12, + "id": 500 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 27, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 29, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 21, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 11, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 13, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 35, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 30, + "color": 6, + "special": 1, + "length": 1 + }, + { + "id": 12, + "num": 12, + "color": 10, + "special": 1, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level276.json.meta b/assets/custom/Json/level276.json.meta new file mode 100644 index 0000000..251b91e --- /dev/null +++ b/assets/custom/Json/level276.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b4fa922c-9ca8-47cd-b285-142c0ed19cee", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level277.json b/assets/custom/Json/level277.json new file mode 100644 index 0000000..7e8ddc8 --- /dev/null +++ b/assets/custom/Json/level277.json @@ -0,0 +1,473 @@ +{ + "LEVEL_INFO": [ + { + "id": "217", + "map": [ + 10, + 13 + ], + "time": 180, + "gap": [ + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 350 + }, + { + "block": 15, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 15, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 7, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 7, + "type": 7, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 430 + }, + { + "block": 15, + "color": 6, + "type": 4, + "position": { + "x": 0, + "y": -540, + "z": 0 + }, + "freezeTime": 3, + "id": 440 + }, + { + "block": 15, + "color": 2, + "type": 4, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "freezeTime": 3, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 2, + "num": 18, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 3, + "num": 20, + "color": 5, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 4, + "num": 22, + "color": 5, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 5, + "num": 15, + "color": 1, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 6, + "num": 17, + "color": 1, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 7, + "num": 19, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 8, + "num": 21, + "color": 10, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 9, + "num": 6, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 7, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 8, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 35, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 36, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 37, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 3, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 32, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 33, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level277.json.meta b/assets/custom/Json/level277.json.meta new file mode 100644 index 0000000..bc62ebd --- /dev/null +++ b/assets/custom/Json/level277.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7091a267-5de6-4f16-8f24-eb44cb8abb14", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level278.json b/assets/custom/Json/level278.json new file mode 100644 index 0000000..f764204 --- /dev/null +++ b/assets/custom/Json/level278.json @@ -0,0 +1,436 @@ +{ + "LEVEL_INFO": [ + { + "id": "218", + "map": [ + 11, + 11 + ], + "time": 80, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 8, + "type": 9, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 240 + }, + { + "block": 5, + "color": 1, + "type": 9, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 540, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 7, + "type": 8, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 7, + "type": 8, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": -420, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 360 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 400 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 4, + "type": 4, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "freezeTime": 10, + "id": 450 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "freezeTime": 16, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 8, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 17, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 19, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 23, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 16, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 18, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 20, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level278.json.meta b/assets/custom/Json/level278.json.meta new file mode 100644 index 0000000..4415000 --- /dev/null +++ b/assets/custom/Json/level278.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e04a0d06-3839-44b7-b736-30058893b729", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level279.json b/assets/custom/Json/level279.json new file mode 100644 index 0000000..0b6c5d3 --- /dev/null +++ b/assets/custom/Json/level279.json @@ -0,0 +1,357 @@ +{ + "LEVEL_INFO": [ + { + "id": "219", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 7, + "type": 9, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 210 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 220 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 6, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "boomTime": 15, + "id": 380 + }, + { + "block": 1, + "color": 10, + "type": 6, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "boomTime": 15, + "id": 390 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 7, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 2, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 24, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 22, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 20, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level279.json.meta b/assets/custom/Json/level279.json.meta new file mode 100644 index 0000000..cb094d3 --- /dev/null +++ b/assets/custom/Json/level279.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5c437e16-0a74-46b1-bfd7-150de28989e7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level28.json b/assets/custom/Json/level28.json new file mode 100644 index 0000000..cfbd5e3 --- /dev/null +++ b/assets/custom/Json/level28.json @@ -0,0 +1,387 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "28", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 3, + "color": 8, + "type": 7, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 7, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 7, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 22, + "color": 4, + "type": 4, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "freezeTime": 2, + "id": 400 + }, + { + "block": 5, + "color": 4, + "type": 4, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "freezeTime": 3, + "id": 410 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "freezeTime": 4, + "id": 430 + }, + { + "block": 21, + "color": 6, + "type": 4, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "freezeTime": 5, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "freezeTime": 6, + "id": 440 + }, + { + "block": 2, + "color": 7, + "type": 4, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "freezeTime": 10, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 14, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 1, + "num": 18, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 4, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 5, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 28, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 19, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 15, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 0, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 1, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 24, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 25, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level28.json.meta b/assets/custom/Json/level28.json.meta new file mode 100644 index 0000000..c3289d5 --- /dev/null +++ b/assets/custom/Json/level28.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b70aeb1f-01ce-4fdd-be00-c62f1119cbcc", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level280.json b/assets/custom/Json/level280.json new file mode 100644 index 0000000..05b8441 --- /dev/null +++ b/assets/custom/Json/level280.json @@ -0,0 +1,388 @@ +{ + "LEVEL_INFO": [ + { + "id": "242", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 3, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 6, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "boomTime": 20, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 6, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "boomTime": 15, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 3, + "color": 8, + "type": 3, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "lockTime": 4, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 13, + "color": 3, + "type": 7, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 3, + "type": 9, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 13, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 6, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 34, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 35, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 29, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level280.json.meta b/assets/custom/Json/level280.json.meta new file mode 100644 index 0000000..caa0941 --- /dev/null +++ b/assets/custom/Json/level280.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "64eafecd-449e-48ae-9505-845b46511050", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level281.json b/assets/custom/Json/level281.json new file mode 100644 index 0000000..f653a46 --- /dev/null +++ b/assets/custom/Json/level281.json @@ -0,0 +1,384 @@ +{ + "LEVEL_INFO": [ + { + "id": "221", + "map": [ + 9, + 11 + ], + "time": 100, + "gap": [ + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 3, + "y": 3, + "z": 0 + }, + { + "x": 3, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 3, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 6, + "type": 1, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "stacking": 10, + "id": 330 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 3, + "color": 9, + "type": 7, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 3, + "color": 5, + "type": 3, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 9, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 34, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 35, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 22, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 24, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 23, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 25, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 36, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 37, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level281.json.meta b/assets/custom/Json/level281.json.meta new file mode 100644 index 0000000..1421dd9 --- /dev/null +++ b/assets/custom/Json/level281.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f05cdfe9-f363-4fdc-a973-7c9214b9b955", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level282.json b/assets/custom/Json/level282.json new file mode 100644 index 0000000..7a3618d --- /dev/null +++ b/assets/custom/Json/level282.json @@ -0,0 +1,499 @@ +{ + "LEVEL_INFO": [ + { + "id": "222", + "map": [ + 10, + 14 + ], + "time": 135, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 4, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 13, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 9, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 9, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -720, + "z": 0 + }, + "id": 300 + }, + { + "block": 13, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": -720, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 10, + "id": 420 + }, + { + "block": 6, + "color": 5, + "type": 4, + "position": { + "x": 0, + "y": -720, + "z": 0 + }, + "freezeTime": 12, + "id": 430 + }, + { + "block": 10, + "color": 8, + "type": 4, + "position": { + "x": 120, + "y": -720, + "z": 0 + }, + "freezeTime": 14, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 41, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 42, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 43, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 0, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 12, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 19, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 34, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 40, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 21, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 25, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 3, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 16, + "num": 4, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 17, + "num": 44, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 18, + "num": 45, + "color": 6, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level282.json.meta b/assets/custom/Json/level282.json.meta new file mode 100644 index 0000000..0fd12b2 --- /dev/null +++ b/assets/custom/Json/level282.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b0da44c9-d842-4164-9de3-58cc607e2869", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level283.json b/assets/custom/Json/level283.json new file mode 100644 index 0000000..c539dbb --- /dev/null +++ b/assets/custom/Json/level283.json @@ -0,0 +1,475 @@ +{ + "LEVEL_INFO": [ + { + "id": "223", + "map": [ + 10, + 12 + ], + "time": 140, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 3, + "type": 1, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "stacking": 7, + "id": 410 + }, + { + "block": 21, + "color": 7, + "type": 1, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "stacking": 3, + "id": 420 + }, + { + "block": 1, + "color": 7, + "type": 1, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "stacking": 6, + "id": 430 + }, + { + "block": 2, + "color": 3, + "type": 1, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "stacking": 8, + "id": 440 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "stacking": 9, + "id": 450 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 460 + }, + { + "block": 22, + "color": 6, + "type": 4, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "freezeTime": 6, + "id": 470 + }, + { + "block": 22, + "color": 3, + "type": 4, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "freezeTime": 10, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 3, + "special": 2, + "length": 3, + "lock": true + }, + { + "id": 2, + "num": 14, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 3, + "num": 16, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 4, + "num": 13, + "color": 7, + "special": 2, + "length": 3, + "lock": true + }, + { + "id": 5, + "num": 15, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 6, + "num": 17, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 7, + "num": 24, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 27, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 21, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 25, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 19, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 26, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 18, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level283.json.meta b/assets/custom/Json/level283.json.meta new file mode 100644 index 0000000..ed9b2cd --- /dev/null +++ b/assets/custom/Json/level283.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c5490add-2841-4ea9-8019-9e3deaae8ab7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level284.json b/assets/custom/Json/level284.json new file mode 100644 index 0000000..1eb88e4 --- /dev/null +++ b/assets/custom/Json/level284.json @@ -0,0 +1,407 @@ +{ + "LEVEL_INFO": [ + { + "id": "224", + "map": [ + 8, + 10 + ], + "time": 75, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 26, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 22, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 0, + "color": 10, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level284.json.meta b/assets/custom/Json/level284.json.meta new file mode 100644 index 0000000..f92e035 --- /dev/null +++ b/assets/custom/Json/level284.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bdd7ad9b-2ab5-4897-ad65-36e66a467f94", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level285.json b/assets/custom/Json/level285.json new file mode 100644 index 0000000..21d9ca4 --- /dev/null +++ b/assets/custom/Json/level285.json @@ -0,0 +1,385 @@ +{ + "LEVEL_INFO": [ + { + "id": "226", + "map": [ + 9, + 9 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 25, + "color": 8, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 3, + "num": 26, + "color": 8, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 4, + "num": 1, + "color": 3, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 5, + "num": 2, + "color": 3, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 6, + "num": 22, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 7, + "num": 23, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 8, + "num": 4, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 9, + "num": 5, + "color": 10, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 10, + "num": 24, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 3, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 10, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level285.json.meta b/assets/custom/Json/level285.json.meta new file mode 100644 index 0000000..1d8ca59 --- /dev/null +++ b/assets/custom/Json/level285.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5d8bd1cf-d1f0-4af7-8720-3688f6a1a899", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level286.json b/assets/custom/Json/level286.json new file mode 100644 index 0000000..b88b48e --- /dev/null +++ b/assets/custom/Json/level286.json @@ -0,0 +1,406 @@ +{ + "LEVEL_INFO": [ + { + "id": "227", + "map": [ + 11, + 11 + ], + "time": 125, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + }, + { + "x": 9, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 6, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 8, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 12, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 10, + "color": 6, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 14, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 21, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 22, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 24, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 2, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 11, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level286.json.meta b/assets/custom/Json/level286.json.meta new file mode 100644 index 0000000..7e5ee04 --- /dev/null +++ b/assets/custom/Json/level286.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "10a001dd-0e7b-4978-8b47-fdbb3f65e1b5", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level287.json b/assets/custom/Json/level287.json new file mode 100644 index 0000000..5de46eb --- /dev/null +++ b/assets/custom/Json/level287.json @@ -0,0 +1,499 @@ +{ + "LEVEL_INFO": [ + { + "id": "229", + "map": [ + 11, + 12 + ], + "time": 200, + "gap": [ + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 21, + "color": 6, + "type": 2, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 20, + "color": 6, + "type": 2, + "position": { + "x": 540, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 19, + "color": 10, + "type": 2, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -420, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 12, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": -600, + "z": 0 + }, + "id": 410 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 460 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": -360, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 490 + }, + { + "block": 5, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "lockTime": 8, + "id": 500 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 34, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 35, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 36, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 5, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 3, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 4, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 27, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 1, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 37, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 38, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 39, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 40, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level287.json.meta b/assets/custom/Json/level287.json.meta new file mode 100644 index 0000000..d42231c --- /dev/null +++ b/assets/custom/Json/level287.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bf6169fd-cba5-46b4-af5d-e1e8ed1ece85", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level288.json b/assets/custom/Json/level288.json new file mode 100644 index 0000000..03493fe --- /dev/null +++ b/assets/custom/Json/level288.json @@ -0,0 +1,476 @@ +{ + "LEVEL_INFO": [ + { + "id": "229", + "map": [ + 9, + 12 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 5, + "type": 6, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "boomTime": 20, + "id": 250 + }, + { + "block": 23, + "color": 5, + "type": 6, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "boomTime": 20, + "id": 260 + }, + { + "block": 23, + "color": 5, + "type": 6, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "boomTime": 20, + "id": 270 + }, + { + "block": 4, + "color": 7, + "type": 6, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "boomTime": 25, + "id": 280 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 18, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 32, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 34, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 36, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 37, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 2, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 19, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 18, + "num": 30, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 31, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level288.json.meta b/assets/custom/Json/level288.json.meta new file mode 100644 index 0000000..f01055c --- /dev/null +++ b/assets/custom/Json/level288.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5358db36-0fed-438e-9e93-3416ec24fea6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level289.json b/assets/custom/Json/level289.json new file mode 100644 index 0000000..461a224 --- /dev/null +++ b/assets/custom/Json/level289.json @@ -0,0 +1,577 @@ +{ + "LEVEL_INFO": [ + { + "id": "264", + "map": [ + 11, + 11 + ], + "time": 190, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 9, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 430 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 440 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 450 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 510 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 520 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 530 + }, + { + "block": 14, + "color": 6, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 10, + "id": 540 + }, + { + "block": 14, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "freezeTime": 20, + "id": 550 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 14, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 16, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 32, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 33, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 5, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 34, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 35, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 30, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 31, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 19, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 21, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 13, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 20, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 3, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 1, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 2, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level289.json.meta b/assets/custom/Json/level289.json.meta new file mode 100644 index 0000000..bff71f3 --- /dev/null +++ b/assets/custom/Json/level289.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "82ab5271-7ae9-4e1a-bdf5-8bc2556aeb05", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level29.json b/assets/custom/Json/level29.json new file mode 100644 index 0000000..23a5974 --- /dev/null +++ b/assets/custom/Json/level29.json @@ -0,0 +1,496 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "29", + "map": [ + 11, + 12 + ], + "time": 170, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 420 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": -120, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 3, + "type": 7, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 4, + "type": 8, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 520 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "freezeTime": 4, + "id": 530 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "freezeTime": 4, + "id": 540 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 11, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 13, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 32, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 37, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 25, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 4, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 0, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 24, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 26, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level29.json.meta b/assets/custom/Json/level29.json.meta new file mode 100644 index 0000000..7e8d89e --- /dev/null +++ b/assets/custom/Json/level29.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8a0fe43e-e606-48f4-bed9-5354abd6ca9e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level290.json b/assets/custom/Json/level290.json new file mode 100644 index 0000000..ca7c6d7 --- /dev/null +++ b/assets/custom/Json/level290.json @@ -0,0 +1,357 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "232", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 1, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "stacking": 8, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "stacking": 9, + "id": 310 + }, + { + "block": 4, + "color": 6, + "type": 1, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "stacking": 5, + "id": 320 + }, + { + "block": 4, + "color": 5, + "type": 1, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "stacking": 6, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "freezeTime": 8, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "freezeTime": 10, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 11, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 12, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 14, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 22, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 17, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 10, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level290.json.meta b/assets/custom/Json/level290.json.meta new file mode 100644 index 0000000..d6f2181 --- /dev/null +++ b/assets/custom/Json/level290.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "47bb5f18-fbba-46bc-b241-47a4dfb23d88", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level291.json b/assets/custom/Json/level291.json new file mode 100644 index 0000000..4257f96 --- /dev/null +++ b/assets/custom/Json/level291.json @@ -0,0 +1,451 @@ +{ + "LEVEL_INFO": [ + { + "id": "234", + "map": [ + 10, + 12 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 380 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 3, + "color": 2, + "type": 7, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 9, + "type": 7, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 450 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 2, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 32, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 33, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 17, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 11, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 13, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 23, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 25, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 28, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 29, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 22, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 24, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 10, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 12, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level291.json.meta b/assets/custom/Json/level291.json.meta new file mode 100644 index 0000000..cc9b350 --- /dev/null +++ b/assets/custom/Json/level291.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "12a27495-9c83-4c06-b2d3-fd4be40da139", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level292.json b/assets/custom/Json/level292.json new file mode 100644 index 0000000..75443e4 --- /dev/null +++ b/assets/custom/Json/level292.json @@ -0,0 +1,419 @@ +{ + "LEVEL_INFO": [ + { + "id": "235", + "map": [ + 9, + 12 + ], + "time": 125, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 6, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 10, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 410 + }, + { + "block": 4, + "color": 5, + "type": 8, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 8, + "type": 8, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 6, + "type": 6, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "boomTime": 20, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 7, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 31, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 32, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 25, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 26, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 0, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 14, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 18, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level292.json.meta b/assets/custom/Json/level292.json.meta new file mode 100644 index 0000000..09e6de4 --- /dev/null +++ b/assets/custom/Json/level292.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7a491da7-7478-4fa1-9644-845e733178d9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level293.json b/assets/custom/Json/level293.json new file mode 100644 index 0000000..b6a4b01 --- /dev/null +++ b/assets/custom/Json/level293.json @@ -0,0 +1,318 @@ +{ + "LEVEL_INFO": [ + { + "id": "237", + "map": [ + 8, + 9 + ], + "time": 180, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 21, + "color": 9, + "type": 1, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "stacking": 5, + "id": 270 + }, + { + "block": 20, + "color": 9, + "type": 1, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "stacking": 5, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 1, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "stacking": 9, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "stacking": 3, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 1, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "stacking": 10, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "freezeTime": 8, + "id": 340 + }, + { + "block": 2, + "color": 7, + "type": 4, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "freezeTime": 12, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "freezeTime": 17, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 4, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "freezeTime": 18, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "freezeTime": 19, + "id": 380 + }, + { + "block": 2, + "color": 2, + "type": 4, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "freezeTime": 20, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 1, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 8, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 12, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 16, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 23, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 20, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 17, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 13, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 9, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level293.json.meta b/assets/custom/Json/level293.json.meta new file mode 100644 index 0000000..cc06607 --- /dev/null +++ b/assets/custom/Json/level293.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d82da060-2fe0-4e0e-9ffd-0722cb16fcd6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level294.json b/assets/custom/Json/level294.json new file mode 100644 index 0000000..509ee45 --- /dev/null +++ b/assets/custom/Json/level294.json @@ -0,0 +1,332 @@ +{ + "LEVEL_INFO": [ + { + "id": "239", + "map": [ + 7, + 11 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 9, + "type": 1, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "stacking": 5, + "id": 220 + }, + { + "block": 0, + "color": 4, + "type": 1, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "stacking": 10, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 1, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "stacking": 1, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 1, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "stacking": 2, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 5, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 3, + "type": 5, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 1, + "type": 5, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 9, + "type": 5, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 10, + "color": 6, + "type": 1, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "stacking": 1, + "id": 300 + }, + { + "block": 6, + "color": 8, + "type": 1, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "stacking": 2, + "id": 310 + }, + { + "block": 3, + "color": 5, + "type": 1, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "stacking": 10, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 1, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "stacking": 3, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "freezeTime": 6, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "freezeTime": 12, + "id": 350 + }, + { + "block": 1, + "color": 4, + "type": 4, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "freezeTime": 10, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "freezeTime": 16, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 1, + "color": 2, + "special": 1, + "length": 3 + }, + { + "id": 2, + "num": 2, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 3, + "num": 3, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 4, + "num": 20, + "color": 1, + "special": 1, + "length": 3 + }, + { + "id": 5, + "num": 21, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 6, + "num": 22, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 7, + "num": 19, + "color": 6, + "special": 1, + "length": 1 + }, + { + "id": 8, + "num": 0, + "color": 4, + "special": 1, + "length": 1 + }, + { + "id": 9, + "num": 7, + "color": 10, + "special": 1, + "length": 1 + }, + { + "id": 10, + "num": 8, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 11, + "num": 27, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 12, + "num": 26, + "color": 3, + "special": 1, + "length": 1 + }, + { + "id": 13, + "num": 16, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 9, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level294.json.meta b/assets/custom/Json/level294.json.meta new file mode 100644 index 0000000..5a387cf --- /dev/null +++ b/assets/custom/Json/level294.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6f3439bc-b5a1-4c55-b27e-71e37970bfb7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level295.json b/assets/custom/Json/level295.json new file mode 100644 index 0000000..92f74ea --- /dev/null +++ b/assets/custom/Json/level295.json @@ -0,0 +1,407 @@ +{ + "LEVEL_INFO": [ + { + "id": "240", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "boomTime": 15, + "id": 400 + }, + { + "block": 19, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 7, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 5, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 2, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 34, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 35, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 33, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 30, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 31, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 28, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 29, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level295.json.meta b/assets/custom/Json/level295.json.meta new file mode 100644 index 0000000..ee0a9b3 --- /dev/null +++ b/assets/custom/Json/level295.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7a387c63-7205-41bf-bc83-ac0bf62ff736", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level296.json b/assets/custom/Json/level296.json new file mode 100644 index 0000000..7ce5206 --- /dev/null +++ b/assets/custom/Json/level296.json @@ -0,0 +1,408 @@ +{ + "LEVEL_INFO": [ + { + "id": "241", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 20, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 21, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 6, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 24, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 1, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 2, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 22, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 11, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 16, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level296.json.meta b/assets/custom/Json/level296.json.meta new file mode 100644 index 0000000..4b72ac6 --- /dev/null +++ b/assets/custom/Json/level296.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "cd9f3a91-a720-4f40-8b0b-a3361a0a96d4", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level297.json b/assets/custom/Json/level297.json new file mode 100644 index 0000000..1fbc532 --- /dev/null +++ b/assets/custom/Json/level297.json @@ -0,0 +1,464 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "243", + "map": [ + 9, + 12 + ], + "time": 220, + "gap": [ + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 10, + "type": 2, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 23, + "color": 10, + "type": 2, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 3, + "color": 8, + "type": 9, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 18, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "lockTime": 8, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 3, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 7, + "num": 4, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 8, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 14, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 18, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 28, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 29, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 30, + "color": 2, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 15, + "num": 31, + "color": 2, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 16, + "num": 32, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level297.json.meta b/assets/custom/Json/level297.json.meta new file mode 100644 index 0000000..765e8ba --- /dev/null +++ b/assets/custom/Json/level297.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "24b154be-b949-41f4-9eda-0049906acd02", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level298.json b/assets/custom/Json/level298.json new file mode 100644 index 0000000..a3d9d5e --- /dev/null +++ b/assets/custom/Json/level298.json @@ -0,0 +1,544 @@ +{ + "LEVEL_INFO": [ + { + "id": "244", + "map": [ + 11, + 11 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 19, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 450 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 460 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": 60, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 510 + }, + { + "block": 22, + "color": 5, + "type": 9, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 520 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 530 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 540 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 550 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 560 + }, + { + "block": 0, + "color": 8, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 19, + "id": 570 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 22, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 18, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 19, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 24, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 26, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 23, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level298.json.meta b/assets/custom/Json/level298.json.meta new file mode 100644 index 0000000..d6bd681 --- /dev/null +++ b/assets/custom/Json/level298.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7afa26aa-1e59-4dc8-ad8f-1032287fbe09", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level299.json b/assets/custom/Json/level299.json new file mode 100644 index 0000000..04e48e1 --- /dev/null +++ b/assets/custom/Json/level299.json @@ -0,0 +1,397 @@ +{ + "LEVEL_INFO": [ + { + "id": "245", + "map": [ + 10, + 12 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 19, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 12, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 8, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 10, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 6, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 3, + "type": 6, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "boomTime": 20, + "id": 390 + }, + { + "block": 1, + "color": 10, + "type": 6, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "boomTime": 25, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 3, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 2, + "num": 12, + "color": 3, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 3, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 22, + "color": 10, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 6, + "num": 24, + "color": 10, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 7, + "num": 17, + "color": 8, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 8, + "num": 19, + "color": 8, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 9, + "num": 13, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 1, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 27, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 28, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 29, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level299.json.meta b/assets/custom/Json/level299.json.meta new file mode 100644 index 0000000..ec5c277 --- /dev/null +++ b/assets/custom/Json/level299.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c7915734-f416-42f4-8d71-db49ba7af2e5", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level3.json b/assets/custom/Json/level3.json new file mode 100644 index 0000000..e725107 --- /dev/null +++ b/assets/custom/Json/level3.json @@ -0,0 +1,111 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "3", + "map": [ + 7, + 8 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 12, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 10, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 230 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 2, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 18, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 19, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 7, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 9, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 12, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level3.json.meta b/assets/custom/Json/level3.json.meta new file mode 100644 index 0000000..086da7c --- /dev/null +++ b/assets/custom/Json/level3.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2b67b348-a49b-45af-b4d2-690221b03a93", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level30.json b/assets/custom/Json/level30.json new file mode 100644 index 0000000..a048b92 --- /dev/null +++ b/assets/custom/Json/level30.json @@ -0,0 +1,451 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "30", + "map": [ + 11, + 11 + ], + "time": 200, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 14, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 6, + "color": 7, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 5, + "type": 1, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "stacking": 8, + "id": 410 + }, + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "stacking": 6, + "id": 420 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 4, + "type": 8, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 450 + }, + { + "block": 14, + "color": 2, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 4, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 16, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 10, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 12, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 24, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 26, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 23, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 15, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 30, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 31, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 32, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 3, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 18, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 5, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level30.json.meta b/assets/custom/Json/level30.json.meta new file mode 100644 index 0000000..2954763 --- /dev/null +++ b/assets/custom/Json/level30.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6ae06208-a2c9-4a04-8c00-afdf3893db50", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level300.json b/assets/custom/Json/level300.json new file mode 100644 index 0000000..f30ab01 --- /dev/null +++ b/assets/custom/Json/level300.json @@ -0,0 +1,469 @@ +{ + "LEVEL_INFO": [ + { + "id": "246", + "map": [ + 9, + 12 + ], + "time": 145, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 10, + "type": 1, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "stacking": 3, + "id": 350 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 5, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 5, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 6, + "type": 5, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 6, + "type": 5, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 3, + "color": 3, + "type": 1, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "stacking": 10, + "id": 420 + }, + { + "block": 18, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "lockTime": 4, + "id": 430 + }, + { + "block": 18, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "freezeTime": 7, + "id": 440 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 19, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 2, + "num": 21, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 3, + "num": 13, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 4, + "num": 15, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 5, + "num": 24, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 6, + "special": 1, + "length": 1 + }, + { + "id": 13, + "num": 32, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 26, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 14, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 18, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 32, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 21, + "num": 32, + "color": 5, + "special": 1, + "length": 2 + }, + { + "id": 22, + "num": 33, + "color": 5, + "special": 1, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level300.json.meta b/assets/custom/Json/level300.json.meta new file mode 100644 index 0000000..40e4693 --- /dev/null +++ b/assets/custom/Json/level300.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c4dec6db-f795-47af-8c9c-5364c298fc3d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level301.json b/assets/custom/Json/level301.json new file mode 100644 index 0000000..16c97d4 --- /dev/null +++ b/assets/custom/Json/level301.json @@ -0,0 +1,394 @@ +{ + "LEVEL_INFO": [ + { + "id": "247", + "map": [ + 9, + 9 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 9, + "type": 8, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 440 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 450 + }, + { + "block": 1, + "color": 10, + "type": 6, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "boomTime": 25, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 20, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 9, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 7, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 19, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 10, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 12, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level301.json.meta b/assets/custom/Json/level301.json.meta new file mode 100644 index 0000000..7ac02fd --- /dev/null +++ b/assets/custom/Json/level301.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d933b716-b54f-48e7-992c-3b87439ce27d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level302.json b/assets/custom/Json/level302.json new file mode 100644 index 0000000..d3a34ca --- /dev/null +++ b/assets/custom/Json/level302.json @@ -0,0 +1,432 @@ +{ + "LEVEL_INFO": [ + { + "id": "249", + "map": [ + 10, + 12 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 8, + "type": 7, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 430 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "freezeTime": 11, + "id": 450 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 18, + "id": 460 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 30, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 31, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 21, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 6, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 4, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 33, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 34, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 27, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 28, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 14, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 2, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level302.json.meta b/assets/custom/Json/level302.json.meta new file mode 100644 index 0000000..4ca440b --- /dev/null +++ b/assets/custom/Json/level302.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1171c439-d5e9-4738-92c0-1e9fc2baac52", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level303.json b/assets/custom/Json/level303.json new file mode 100644 index 0000000..cc0d6a8 --- /dev/null +++ b/assets/custom/Json/level303.json @@ -0,0 +1,447 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "387", + "map": [ + 9, + 9 + ], + "time": 175, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 1, + "type": 6, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "boomTime": 25, + "id": 440 + }, + { + "block": 4, + "color": 2, + "type": 4, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "freezeTime": 4, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 388, + "num": 0, + "color": 7, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 389, + "num": 1, + "color": 7, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 390, + "num": 2, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 391, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 392, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 393, + "num": 5, + "color": 4, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 394, + "num": 6, + "color": 4, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 395, + "num": 10, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 396, + "num": 18, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 397, + "num": 26, + "color": 9, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 398, + "num": 27, + "color": 9, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 399, + "num": 23, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 400, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 401, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 402, + "num": 21, + "color": 3, + "special": 3, + "length": 2, + "freeze": 18 + }, + { + "id": 403, + "num": 22, + "color": 3, + "special": 3, + "length": 0, + "freeze": 18 + }, + { + "id": 404, + "num": 17, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 405, + "num": 19, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 406, + "num": 7, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 407, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level303.json.meta b/assets/custom/Json/level303.json.meta new file mode 100644 index 0000000..1a293ab --- /dev/null +++ b/assets/custom/Json/level303.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4a45d87c-b398-4115-9f71-d2b4ede4f3d2", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level304.json b/assets/custom/Json/level304.json new file mode 100644 index 0000000..c871380 --- /dev/null +++ b/assets/custom/Json/level304.json @@ -0,0 +1,511 @@ +{ + "LEVEL_INFO": [ + { + "id": "252", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 12, + "color": 7, + "type": 7, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 8, + "color": 6, + "type": 7, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 6, + "type": 7, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 7, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 10, + "type": 6, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "boomTime": 70, + "id": 470 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 510 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "freezeTime": 14, + "id": 520 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "freezeTime": 14, + "id": 530 + }, + { + "block": 1, + "color": 10, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 8, + "id": 540 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 33, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 34, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 35, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 2, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 5, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 28, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 7, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 8, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 31, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 32, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 0, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 26, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 16, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level304.json.meta b/assets/custom/Json/level304.json.meta new file mode 100644 index 0000000..35c161d --- /dev/null +++ b/assets/custom/Json/level304.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f2caf95b-5d85-48a5-bc0d-8479a8a93eba", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level305.json b/assets/custom/Json/level305.json new file mode 100644 index 0000000..3562c84 --- /dev/null +++ b/assets/custom/Json/level305.json @@ -0,0 +1,536 @@ +{ + "LEVEL_INFO": [ + { + "id": "253", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 3, + "z": 0 + }, + { + "x": 8, + "y": 4, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 7, + "type": 6, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "boomTime": 20, + "id": 230 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 10, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 5, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 410 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 2, + "type": 6, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "boomTime": 40, + "id": 430 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 2, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 42, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 43, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 22, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 24, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 38, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 39, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 18, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 40, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 41, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 4, + "color": 10, + "special": 1, + "length": 2 + }, + { + "id": 14, + "num": 5, + "color": 10, + "special": 1, + "length": 0 + }, + { + "id": 15, + "num": 19, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 21, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 23, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 38, + "color": 9, + "special": 1, + "length": 2 + }, + { + "id": 22, + "num": 39, + "color": 9, + "special": 1, + "length": 0 + }, + { + "id": 23, + "num": 38, + "color": 5, + "special": 1, + "length": 2 + }, + { + "id": 24, + "num": 39, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 25, + "num": 38, + "color": 9, + "special": 1, + "length": 2 + }, + { + "id": 26, + "num": 39, + "color": 9, + "special": 1, + "length": 0 + }, + { + "id": 27, + "num": 38, + "color": 5, + "special": 1, + "length": 2 + }, + { + "id": 28, + "num": 39, + "color": 5, + "special": 1, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level305.json.meta b/assets/custom/Json/level305.json.meta new file mode 100644 index 0000000..b106278 --- /dev/null +++ b/assets/custom/Json/level305.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5df05327-bcc4-4231-9297-113f50e9aac1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level306.json b/assets/custom/Json/level306.json new file mode 100644 index 0000000..337189b --- /dev/null +++ b/assets/custom/Json/level306.json @@ -0,0 +1,348 @@ +{ + "LEVEL_INFO": [ + { + "id": "255", + "map": [ + 8, + 9 + ], + "time": 90, + "gap": [ + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 7, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 7, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "freezeTime": 9, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 20, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 23, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 24, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 5, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 6, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 3, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 19, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 21, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 26, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 8, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 10, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 0, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 16, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 27, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 19, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level306.json.meta b/assets/custom/Json/level306.json.meta new file mode 100644 index 0000000..a861b6b --- /dev/null +++ b/assets/custom/Json/level306.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "dec85ce7-3291-4a7e-96b7-31ed08db1c56", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level307.json b/assets/custom/Json/level307.json new file mode 100644 index 0000000..635e396 --- /dev/null +++ b/assets/custom/Json/level307.json @@ -0,0 +1,418 @@ +{ + "LEVEL_INFO": [ + { + "id": "257", + "map": [ + 9, + 9 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 7, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 4, + "color": 7, + "type": 8, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 8, + "type": 8, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 19, + "color": 1, + "type": 3, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "lockTime": 5, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 26, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 23, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 2, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 25, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 9, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level307.json.meta b/assets/custom/Json/level307.json.meta new file mode 100644 index 0000000..7c74861 --- /dev/null +++ b/assets/custom/Json/level307.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ddc64a73-41a5-4621-a248-5f8f35dde7ca", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level308.json b/assets/custom/Json/level308.json new file mode 100644 index 0000000..ba991c5 --- /dev/null +++ b/assets/custom/Json/level308.json @@ -0,0 +1,318 @@ +{ + "LEVEL_INFO": [ + { + "id": "259", + "map": [ + 9, + 9 + ], + "time": 95, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 26, + "color": 9, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 2, + "num": 27, + "color": 9, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 3, + "num": 5, + "color": 2, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 4, + "num": 6, + "color": 2, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 5, + "num": 0, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 6, + "num": 1, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 7, + "num": 21, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 8, + "num": 22, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 9, + "num": 2, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 23, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 25, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level308.json.meta b/assets/custom/Json/level308.json.meta new file mode 100644 index 0000000..2d977fb --- /dev/null +++ b/assets/custom/Json/level308.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ccd83aac-dfc6-401b-8730-19a4c31ffc70", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level309.json b/assets/custom/Json/level309.json new file mode 100644 index 0000000..751d1bd --- /dev/null +++ b/assets/custom/Json/level309.json @@ -0,0 +1,374 @@ +{ + "LEVEL_INFO": [ + { + "id": "260", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 10, + "color": 8, + "type": 8, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 6, + "color": 9, + "type": 8, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 20, + "color": 6, + "type": 7, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 2, + "type": 7, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 5, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "freezeTime": 4, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 8, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 4, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "freezeTime": 9, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "freezeTime": 11, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 9, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 11, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 18, + "color": 9, + "special": 1, + "length": 2 + }, + { + "id": 4, + "num": 20, + "color": 9, + "special": 1, + "length": 0 + }, + { + "id": 5, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 22, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 25, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 26, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 28, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 29, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level309.json.meta b/assets/custom/Json/level309.json.meta new file mode 100644 index 0000000..0941dcd --- /dev/null +++ b/assets/custom/Json/level309.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "70db70a6-2fa5-47aa-bc1f-305393931c3c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level31.json b/assets/custom/Json/level31.json new file mode 100644 index 0000000..d80ec96 --- /dev/null +++ b/assets/custom/Json/level31.json @@ -0,0 +1,240 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "31", + "map": [ + 6, + 8 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 17, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 1, + "num": 7, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 6, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 12, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 13, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 3, + "color": 8, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level31.json.meta b/assets/custom/Json/level31.json.meta new file mode 100644 index 0000000..73651af --- /dev/null +++ b/assets/custom/Json/level31.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "18986fd3-d6c9-4343-9052-bb3bb4361be1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level310.json b/assets/custom/Json/level310.json new file mode 100644 index 0000000..8558ace --- /dev/null +++ b/assets/custom/Json/level310.json @@ -0,0 +1,388 @@ +{ + "LEVEL_INFO": [ + { + "id": "261", + "map": [ + 9, + 12 + ], + "time": 70, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 6, + "type": 2, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 4, + "type": 2, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 7, + "type": 2, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 17, + "color": 4, + "type": 3, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "lockTime": 8, + "id": 290 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "id": 370 + }, + { + "block": 16, + "color": 8, + "type": 4, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "freezeTime": 10, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 37, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 38, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 1, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 3, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 23, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 25, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 35, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 5, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 40, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 41, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 39, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 36, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 0, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 16, + "num": 6, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 16, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level310.json.meta b/assets/custom/Json/level310.json.meta new file mode 100644 index 0000000..654abed --- /dev/null +++ b/assets/custom/Json/level310.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6e7be495-e93f-4c0c-a77f-02de799c30ce", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level311.json b/assets/custom/Json/level311.json new file mode 100644 index 0000000..3a19981 --- /dev/null +++ b/assets/custom/Json/level311.json @@ -0,0 +1,424 @@ +{ + "LEVEL_INFO": [ + { + "id": "263", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "id": 410 + }, + { + "block": 14, + "color": 2, + "type": 3, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "lockTime": 5, + "id": 420 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "freezeTime": 5, + "id": 430 + }, + { + "block": 1, + "color": 2, + "type": 6, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "boomTime": 20, + "id": 440 + }, + { + "block": 1, + "color": 1, + "type": 4, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "freezeTime": 12, + "id": 450 + }, + { + "block": 14, + "color": 3, + "type": 4, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "freezeTime": 18, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 14, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 4, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 31, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 32, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 25, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 26, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 29, + "color": 8, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level311.json.meta b/assets/custom/Json/level311.json.meta new file mode 100644 index 0000000..f3bf385 --- /dev/null +++ b/assets/custom/Json/level311.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1aeda603-d2b6-4a27-8dae-e016359e9357", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level312.json b/assets/custom/Json/level312.json new file mode 100644 index 0000000..f2f919d --- /dev/null +++ b/assets/custom/Json/level312.json @@ -0,0 +1,392 @@ +{ + "LEVEL_INFO": [ + { + "id": "265", + "map": [ + 9, + 8 + ], + "time": 105, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 270 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 7, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 7, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 15, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 23, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 21, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 8, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 10, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 14, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 16, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level312.json.meta b/assets/custom/Json/level312.json.meta new file mode 100644 index 0000000..7447735 --- /dev/null +++ b/assets/custom/Json/level312.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b50b60a6-5e29-4d85-b248-76ff38ecdfef", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level313.json b/assets/custom/Json/level313.json new file mode 100644 index 0000000..61b91a5 --- /dev/null +++ b/assets/custom/Json/level313.json @@ -0,0 +1,350 @@ +{ + "LEVEL_INFO": [ + { + "id": "266", + "map": [ + 7, + 11 + ], + "time": 125, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 270 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 8, + "type": 1, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "stacking": 1, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "stacking": 6, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 1, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "stacking": 8, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 1, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "stacking": 6, + "id": 340 + }, + { + "block": 2, + "color": 6, + "type": 1, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "stacking": 5, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 6, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "boomTime": 20, + "id": 360 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "freezeTime": 8, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "freezeTime": 16, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 4, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "freezeTime": 20, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 18, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 11, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 1, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 20, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 21, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 23, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 11, + "num": 24, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 12, + "num": 4, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 13, + "num": 5, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 14, + "num": 9, + "color": 10, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 15, + "num": 17, + "color": 8, + "special": 2, + "length": 1, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level313.json.meta b/assets/custom/Json/level313.json.meta new file mode 100644 index 0000000..0f193ae --- /dev/null +++ b/assets/custom/Json/level313.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "07b5abc2-7f19-4db5-b751-1876aee065db", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level314.json b/assets/custom/Json/level314.json new file mode 100644 index 0000000..e72de38 --- /dev/null +++ b/assets/custom/Json/level314.json @@ -0,0 +1,419 @@ +{ + "LEVEL_INFO": [ + { + "id": "268", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "stacking": 2, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 1, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "stacking": 6, + "id": 260 + }, + { + "block": 2, + "color": 4, + "type": 1, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "stacking": 6, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 1, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "stacking": 9, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 5, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 4, + "type": 3, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "lockTime": 5, + "id": 400 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 22, + "color": 5, + "type": 4, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "freezeTime": 11, + "id": 420 + }, + { + "block": 21, + "color": 7, + "type": 4, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "freezeTime": 16, + "id": 430 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 11, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 17, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 6, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 7, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 20, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level314.json.meta b/assets/custom/Json/level314.json.meta new file mode 100644 index 0000000..b69b29b --- /dev/null +++ b/assets/custom/Json/level314.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b6d8487e-938f-488c-8ebf-44c8a1adac60", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level315.json b/assets/custom/Json/level315.json new file mode 100644 index 0000000..83c153d --- /dev/null +++ b/assets/custom/Json/level315.json @@ -0,0 +1,331 @@ +{ + "LEVEL_INFO": [ + { + "id": "269", + "map": [ + 8, + 9 + ], + "time": 60, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 290 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "freezeTime": 3, + "id": 330 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "freezeTime": 3, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 6, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "boomTime": 25, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 6, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "boomTime": 35, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 19, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 2, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 8, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 10, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 15, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 17, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 11, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 13, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 21, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level315.json.meta b/assets/custom/Json/level315.json.meta new file mode 100644 index 0000000..b76d0e9 --- /dev/null +++ b/assets/custom/Json/level315.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "18466099-cf23-4223-ab4e-7a443ef8f33b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level316.json b/assets/custom/Json/level316.json new file mode 100644 index 0000000..873b019 --- /dev/null +++ b/assets/custom/Json/level316.json @@ -0,0 +1,340 @@ +{ + "LEVEL_INFO": [ + { + "id": "270", + "map": [ + 8, + 9 + ], + "time": 60, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 6, + "type": 1, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "stacking": 5, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 22, + "color": 8, + "type": 1, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "stacking": 3, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 6, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "boomTime": 25, + "id": 350 + }, + { + "block": 22, + "color": 8, + "type": 4, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "freezeTime": 15, + "id": 360 + }, + { + "block": 20, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "freezeTime": 16, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 3, + "type": 1, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "stacking": 8, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 7, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 9, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 15, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 19, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 5, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 1, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 0, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 17, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level316.json.meta b/assets/custom/Json/level316.json.meta new file mode 100644 index 0000000..d5831f5 --- /dev/null +++ b/assets/custom/Json/level316.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4efb364b-d3a8-41a1-aa62-86143c6e7c65", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level317.json b/assets/custom/Json/level317.json new file mode 100644 index 0000000..c59788d --- /dev/null +++ b/assets/custom/Json/level317.json @@ -0,0 +1,401 @@ +{ + "LEVEL_INFO": [ + { + "id": "271", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [ + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "freezeTime": 11, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 13, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 17, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 0, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 1, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level317.json.meta b/assets/custom/Json/level317.json.meta new file mode 100644 index 0000000..d6774d5 --- /dev/null +++ b/assets/custom/Json/level317.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "811081a7-c19b-45d0-b210-8478a31fc9c3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level318.json b/assets/custom/Json/level318.json new file mode 100644 index 0000000..13b2298 --- /dev/null +++ b/assets/custom/Json/level318.json @@ -0,0 +1,486 @@ +{ + "LEVEL_INFO": [ + { + "id": "272", + "map": [ + 10, + 12 + ], + "time": 90, + "gap": [ + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -120, + "y": 480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": 480, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 8, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 34, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 35, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 31, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 32, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 3, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 28, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 29, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 18, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 20, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level318.json.meta b/assets/custom/Json/level318.json.meta new file mode 100644 index 0000000..f3747a4 --- /dev/null +++ b/assets/custom/Json/level318.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1c787b7e-f517-42b9-98c0-5b8b7b83a6dd", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level319.json b/assets/custom/Json/level319.json new file mode 100644 index 0000000..da3eb48 --- /dev/null +++ b/assets/custom/Json/level319.json @@ -0,0 +1,465 @@ +{ + "LEVEL_INFO": [ + { + "id": "273", + "map": [ + 10, + 12 + ], + "time": 150, + "gap": [ + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 18, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "freezeTime": 5, + "id": 440 + }, + { + "block": 1, + "color": 6, + "type": 4, + "position": { + "x": 480, + "y": 480, + "z": 0 + }, + "freezeTime": 8, + "id": 450 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "freezeTime": 10, + "id": 460 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "lockTime": 6, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 13, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 33, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 34, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 23, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 28, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 10, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 12, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 3, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 27, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 29, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 36, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level319.json.meta b/assets/custom/Json/level319.json.meta new file mode 100644 index 0000000..11e6bfc --- /dev/null +++ b/assets/custom/Json/level319.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "47d5d60c-d885-4367-9f46-c140ff923778", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level32.json b/assets/custom/Json/level32.json new file mode 100644 index 0000000..1f1f70b --- /dev/null +++ b/assets/custom/Json/level32.json @@ -0,0 +1,360 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "32", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 5, + "type": 4, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "freezeTime": 4, + "id": 410 + }, + { + "block": 5, + "color": 3, + "type": 4, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "freezeTime": 4, + "id": 420 + }, + { + "block": 23, + "color": 3, + "type": 4, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "freezeTime": 4, + "id": 430 + }, + { + "block": 23, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 4, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 2, + "num": 23, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 25, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 9, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 11, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 2, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level32.json.meta b/assets/custom/Json/level32.json.meta new file mode 100644 index 0000000..190fc51 --- /dev/null +++ b/assets/custom/Json/level32.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e3319d66-f8c4-44d7-8e31-d0decdefcacc", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level320.json b/assets/custom/Json/level320.json new file mode 100644 index 0000000..afd40c0 --- /dev/null +++ b/assets/custom/Json/level320.json @@ -0,0 +1,432 @@ +{ + "LEVEL_INFO": [ + { + "id": "275", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 210 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "freezeTime": 20, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 16, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 10, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 24, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 25, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 2, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 14, + "num": 3, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 15, + "num": 22, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 16, + "num": 23, + "color": 3, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level320.json.meta b/assets/custom/Json/level320.json.meta new file mode 100644 index 0000000..8b94538 --- /dev/null +++ b/assets/custom/Json/level320.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "cc266ce7-7019-48b1-8c52-1ff50f1aa87f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level321.json b/assets/custom/Json/level321.json new file mode 100644 index 0000000..9bd46f9 --- /dev/null +++ b/assets/custom/Json/level321.json @@ -0,0 +1,413 @@ +{ + "LEVEL_INFO": [ + { + "id": "276", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 3, + "type": 8, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 9, + "type": 1, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "stacking": 5, + "id": 310 + }, + { + "block": 22, + "color": 7, + "type": 1, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "stacking": 3, + "id": 320 + }, + { + "block": 20, + "color": 10, + "type": 1, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "stacking": 1, + "id": 330 + }, + { + "block": 19, + "color": 5, + "type": 1, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "stacking": 3, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 4, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "freezeTime": 4, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "freezeTime": 6, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 4, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "freezeTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "freezeTime": 5, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "freezeTime": 10, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 12, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 2, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 2, + "num": 3, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 3, + "num": 26, + "color": 4, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 4, + "num": 27, + "color": 4, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 5, + "num": 8, + "color": 1, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 6, + "num": 10, + "color": 1, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 7, + "num": 16, + "color": 9, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 8, + "num": 18, + "color": 9, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 9, + "num": 12, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 14, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 22, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 24, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 5, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 7, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 9, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 11, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 13, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 17, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 19, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level321.json.meta b/assets/custom/Json/level321.json.meta new file mode 100644 index 0000000..7883677 --- /dev/null +++ b/assets/custom/Json/level321.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "044898c9-214a-403d-9160-b2ab0bb42463", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level322.json b/assets/custom/Json/level322.json new file mode 100644 index 0000000..318de40 --- /dev/null +++ b/assets/custom/Json/level322.json @@ -0,0 +1,370 @@ +{ + "LEVEL_INFO": [ + { + "id": "277", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 5, + "type": 1, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "stacking": 9, + "id": 320 + }, + { + "block": 21, + "color": 8, + "type": 1, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "stacking": 5, + "id": 330 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 5, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 5, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 10, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 0, + "color": 5, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 2, + "num": 1, + "color": 5, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 3, + "num": 26, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 4, + "num": 27, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 5, + "num": 11, + "color": 2, + "special": 1, + "length": 2 + }, + { + "id": 6, + "num": 13, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 7, + "num": 2, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 19, + "color": 3, + "special": 1, + "length": 2 + }, + { + "id": 9, + "num": 25, + "color": 3, + "special": 1, + "length": 0 + }, + { + "id": 10, + "num": 28, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 3, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 29, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 6, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 12, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 18, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 20, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level322.json.meta b/assets/custom/Json/level322.json.meta new file mode 100644 index 0000000..1ca7ea3 --- /dev/null +++ b/assets/custom/Json/level322.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3142d70d-a8a4-4d0d-831b-99ef5432d1b8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level323.json b/assets/custom/Json/level323.json new file mode 100644 index 0000000..85e39d9 --- /dev/null +++ b/assets/custom/Json/level323.json @@ -0,0 +1,366 @@ +{ + "LEVEL_INFO": [ + { + "id": "279", + "map": [ + 8, + 10 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 20, + "color": 8, + "type": 5, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 19, + "color": 3, + "type": 5, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 5, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "freezeTime": 17, + "id": 400 + }, + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "freezeTime": 18, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 14, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 12, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 3, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 11, + "color": 8, + "special": 1, + "length": 2 + }, + { + "id": 9, + "num": 13, + "color": 8, + "special": 1, + "length": 0 + }, + { + "id": 10, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 9, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 23, + "color": 3, + "special": 1, + "length": 2 + }, + { + "id": 16, + "num": 24, + "color": 3, + "special": 1, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level323.json.meta b/assets/custom/Json/level323.json.meta new file mode 100644 index 0000000..d090c93 --- /dev/null +++ b/assets/custom/Json/level323.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "62db95f0-6206-489d-85c9-31ad2a62857d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level324.json b/assets/custom/Json/level324.json new file mode 100644 index 0000000..59a5b23 --- /dev/null +++ b/assets/custom/Json/level324.json @@ -0,0 +1,366 @@ +{ + "LEVEL_INFO": [ + { + "id": "280", + "map": [ + 9, + 12 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "freezeTime": 10, + "id": 350 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "freezeTime": 12, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 40, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 39, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 33, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 34, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 8, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 3, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 23, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 29, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level324.json.meta b/assets/custom/Json/level324.json.meta new file mode 100644 index 0000000..2742f84 --- /dev/null +++ b/assets/custom/Json/level324.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bdd9f08b-6b4d-455d-8696-7ad8bd1bdc9a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level325.json b/assets/custom/Json/level325.json new file mode 100644 index 0000000..723865a --- /dev/null +++ b/assets/custom/Json/level325.json @@ -0,0 +1,478 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "325", + "map": [ + 8, + 14 + ], + "time": 150, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 12, + "z": 0 + }, + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 0, + "y": -720, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 20, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 9, + "type": 2, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 21, + "color": 2, + "type": 2, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 22, + "color": 3, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 360, + "y": 600, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 7, + "type": 6, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "boomTime": 35, + "id": 410 + }, + { + "block": 2, + "color": 2, + "type": 6, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "boomTime": 55, + "id": 420 + }, + { + "block": 5, + "color": 1, + "type": 3, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "lockTime": 12, + "id": 430 + }, + { + "block": 5, + "color": 3, + "type": 3, + "position": { + "x": 240, + "y": -720, + "z": 0 + }, + "lockTime": 12, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 326, + "num": 5, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 327, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 328, + "num": 3, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 329, + "num": 4, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 330, + "num": 0, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 331, + "num": 1, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 332, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 333, + "num": 27, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 334, + "num": 28, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 335, + "num": 29, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 336, + "num": 30, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 337, + "num": 31, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 338, + "num": 32, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 339, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 340, + "num": 19, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 341, + "num": 21, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 342, + "num": 16, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 343, + "num": 18, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 344, + "num": 15, + "color": 10, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 345, + "num": 17, + "color": 10, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 346, + "num": 20, + "color": 6, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 347, + "num": 22, + "color": 6, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level325.json.meta b/assets/custom/Json/level325.json.meta new file mode 100644 index 0000000..a4de231 --- /dev/null +++ b/assets/custom/Json/level325.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6d7f00e0-7163-4596-a37a-e1ccada6fd84", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level326.json b/assets/custom/Json/level326.json new file mode 100644 index 0000000..90b01f5 --- /dev/null +++ b/assets/custom/Json/level326.json @@ -0,0 +1,332 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "136", + "map": [ + 10, + 10 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 20, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 19, + "color": 8, + "type": 2, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 10, + "color": 1, + "type": 4, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "freezeTime": 3, + "id": 380 + }, + { + "block": 17, + "color": 10, + "type": 4, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "freezeTime": 3, + "id": 390 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 5, + "id": 400 + }, + { + "block": 12, + "color": 6, + "type": 3, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 327, + "num": 26, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 328, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 329, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 330, + "num": 2, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 331, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 332, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 333, + "num": 14, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 334, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 335, + "num": 11, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 336, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 337, + "num": 19, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 338, + "num": 21, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level326.json.meta b/assets/custom/Json/level326.json.meta new file mode 100644 index 0000000..8531b26 --- /dev/null +++ b/assets/custom/Json/level326.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "642e235b-83ae-4025-853d-9aa88d14f6ee", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level327.json b/assets/custom/Json/level327.json new file mode 100644 index 0000000..d2fe407 --- /dev/null +++ b/assets/custom/Json/level327.json @@ -0,0 +1,407 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "506", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 2, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 5, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 20, + "color": 7, + "type": 4, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "freezeTime": 13, + "id": 400 + }, + { + "block": 19, + "color": 10, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 14, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 507, + "num": 6, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 7, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 5, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 510, + "num": 1, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 511, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 20, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 513, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 514, + "num": 22, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 515, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 516, + "num": 3, + "color": 5, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 517, + "num": 4, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 518, + "num": 26, + "color": 10, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 519, + "num": 27, + "color": 10, + "special": 3, + "length": 0, + "freeze": 15 + }, + { + "id": 520, + "num": 10, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 521, + "num": 12, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 14, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 523, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 524, + "num": 11, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 525, + "num": 13, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 526, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 527, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level327.json.meta b/assets/custom/Json/level327.json.meta new file mode 100644 index 0000000..1f7ce6c --- /dev/null +++ b/assets/custom/Json/level327.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "19685dbd-3f7a-4164-bb0a-1737f6159249", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level328.json b/assets/custom/Json/level328.json new file mode 100644 index 0000000..fb7c50b --- /dev/null +++ b/assets/custom/Json/level328.json @@ -0,0 +1,415 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 3, + "color": "7" + }, + { + "x": 2, + "y": 4, + "color": "7" + }, + { + "x": 6, + "y": 3, + "color": "9" + }, + { + "x": 6, + "y": 4, + "color": "9" + } + ], + "id": "502", + "map": [ + 9, + 10 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 14, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 19, + "color": 7, + "type": 2, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 20, + "color": 3, + "type": 2, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 14, + "color": 1, + "type": 1, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "stacking": 3, + "id": 390 + }, + { + "block": 15, + "color": 3, + "type": 1, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "stacking": 1, + "id": 400 + }, + { + "block": 3, + "color": 5, + "type": 3, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 503, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 504, + "num": 23, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 8, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 506, + "num": 10, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 507, + "num": 16, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 510, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 512, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 26, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 28, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 516, + "num": 29, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 517, + "num": 6, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 518, + "num": 7, + "color": 1, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level328.json.meta b/assets/custom/Json/level328.json.meta new file mode 100644 index 0000000..a06ebe2 --- /dev/null +++ b/assets/custom/Json/level328.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "81377c6f-31f4-4c09-8106-7461cc6d7ee5", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level329.json b/assets/custom/Json/level329.json new file mode 100644 index 0000000..7533a23 --- /dev/null +++ b/assets/custom/Json/level329.json @@ -0,0 +1,350 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "503", + "map": [ + 9, + 10 + ], + "time": 65, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 15, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 6, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 10, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 5, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 5, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 504, + "num": 5, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 505, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 506, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 507, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 508, + "num": 1, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 509, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 510, + "num": 23, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 511, + "num": 24, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 25, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 513, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 514, + "num": 27, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 515, + "num": 28, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 516, + "num": 12, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 517, + "num": 16, + "color": 4, + "special": 1, + "length": 1 + }, + { + "id": 518, + "num": 11, + "color": 4, + "special": 3, + "length": 2, + "freeze": 11 + }, + { + "id": 519, + "num": 13, + "color": 4, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 520, + "num": 17, + "color": 7, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 521, + "num": 19, + "color": 7, + "special": 3, + "length": 0, + "freeze": 8 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level329.json.meta b/assets/custom/Json/level329.json.meta new file mode 100644 index 0000000..93ee333 --- /dev/null +++ b/assets/custom/Json/level329.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d74898e5-643f-420e-81ec-e4844f68a919", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level33.json b/assets/custom/Json/level33.json new file mode 100644 index 0000000..3012111 --- /dev/null +++ b/assets/custom/Json/level33.json @@ -0,0 +1,329 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "33", + "map": [ + 9, + 9 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 19, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 7, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 21, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 18, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 26, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level33.json.meta b/assets/custom/Json/level33.json.meta new file mode 100644 index 0000000..dcc6c1f --- /dev/null +++ b/assets/custom/Json/level33.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9a2c5cbb-404d-4802-8d16-b7dc44bc9b63", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level330.json b/assets/custom/Json/level330.json new file mode 100644 index 0000000..2c0d08e --- /dev/null +++ b/assets/custom/Json/level330.json @@ -0,0 +1,435 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "504", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 19, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 5, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 5, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 1, + "type": 5, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 7, + "type": 3, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "lockTime": 8, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 5, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 5, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 4, + "color": 9, + "type": 5, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 505, + "num": 14, + "color": 1, + "special": 1, + "length": 1 + }, + { + "id": 506, + "num": 12, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 507, + "num": 5, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 25, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 510, + "num": 26, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 3, + "color": 8, + "special": 3, + "length": 2, + "freeze": 2 + }, + { + "id": 512, + "num": 4, + "color": 8, + "special": 3, + "length": 0, + "freeze": 2 + }, + { + "id": 513, + "num": 1, + "color": 3, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 514, + "num": 2, + "color": 3, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 515, + "num": 23, + "color": 5, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 516, + "num": 24, + "color": 5, + "special": 3, + "length": 0, + "freeze": 4 + }, + { + "id": 517, + "num": 21, + "color": 6, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 518, + "num": 22, + "color": 6, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 519, + "num": 8, + "color": 10, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 520, + "num": 10, + "color": 10, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 521, + "num": 16, + "color": 2, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 522, + "num": 18, + "color": 2, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 523, + "num": 11, + "color": 4, + "special": 3, + "length": 2, + "freeze": 14 + }, + { + "id": 524, + "num": 13, + "color": 4, + "special": 3, + "length": 0, + "freeze": 14 + }, + { + "id": 525, + "num": 15, + "color": 7, + "special": 3, + "length": 2, + "freeze": 16 + }, + { + "id": 526, + "num": 17, + "color": 7, + "special": 3, + "length": 0, + "freeze": 16 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level330.json.meta b/assets/custom/Json/level330.json.meta new file mode 100644 index 0000000..352ee9f --- /dev/null +++ b/assets/custom/Json/level330.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f6bbf4be-d684-4b66-8307-fc76c35d6438", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level331.json b/assets/custom/Json/level331.json new file mode 100644 index 0000000..71576de --- /dev/null +++ b/assets/custom/Json/level331.json @@ -0,0 +1,652 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "505", + "map": [ + 11, + 11 + ], + "time": 220, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 410 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 430 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 440 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 520 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 530 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 540 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 550 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 560 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 570 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 580 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 590 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 600 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 610 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 620 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 630 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 640 + }, + { + "block": 4, + "color": 8, + "type": 4, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "freezeTime": 9, + "id": 650 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 506, + "num": 12, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 507, + "num": 24, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 508, + "num": 3, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 509, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 510, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 30, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 512, + "num": 31, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 32, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 514, + "num": 15, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 515, + "num": 19, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 516, + "num": 11, + "color": 9, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 517, + "num": 13, + "color": 9, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 518, + "num": 21, + "color": 10, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 519, + "num": 23, + "color": 10, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 520, + "num": 14, + "color": 4, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 521, + "num": 16, + "color": 4, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 522, + "num": 20, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 523, + "num": 22, + "color": 6, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level331.json.meta b/assets/custom/Json/level331.json.meta new file mode 100644 index 0000000..9006de8 --- /dev/null +++ b/assets/custom/Json/level331.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "30c7f320-510d-4884-98ac-5ddc4eb67b08", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level332.json b/assets/custom/Json/level332.json new file mode 100644 index 0000000..e1567dc --- /dev/null +++ b/assets/custom/Json/level332.json @@ -0,0 +1,679 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 11, + "color": "3" + }, + { + "x": 2, + "y": 10, + "color": "3" + }, + { + "x": 7, + "y": 11, + "color": "4" + }, + { + "x": 7, + "y": 10, + "color": "4" + } + ], + "id": "501", + "map": [ + 10, + 15 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -780, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -780, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": -660, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -780, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": -780, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 660, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 660, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 540, + "z": 0 + }, + "id": 420 + }, + { + "block": 10, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -780, + "z": 0 + }, + "id": 430 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 450 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 460 + }, + { + "block": 6, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -780, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 540, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": -360, + "y": 420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 500 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -360, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 510 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 520 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 530 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 540 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 550 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 560 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 570 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 580 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 590 + }, + { + "block": 1, + "color": 9, + "type": 7, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 600 + }, + { + "block": 5, + "color": 4, + "type": 4, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "freezeTime": 3, + "id": 610 + }, + { + "block": 5, + "color": 3, + "type": 4, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "freezeTime": 4, + "id": 620 + }, + { + "block": 21, + "color": 8, + "type": 4, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "freezeTime": 9, + "id": 630 + }, + { + "block": 22, + "color": 1, + "type": 4, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "freezeTime": 14, + "id": 640 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 502, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 503, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 504, + "num": 26, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 505, + "num": 28, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 506, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 507, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 508, + "num": 11, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 509, + "num": 40, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 510, + "num": 31, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 511, + "num": 32, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 33, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 513, + "num": 34, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 514, + "num": 4, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 515, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 516, + "num": 2, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 517, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 518, + "num": 35, + "color": 9, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 519, + "num": 6, + "color": 8, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 520, + "num": 17, + "color": 1, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 521, + "num": 23, + "color": 2, + "special": 2, + "length": 1, + "lock": false + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level332.json.meta b/assets/custom/Json/level332.json.meta new file mode 100644 index 0000000..5110678 --- /dev/null +++ b/assets/custom/Json/level332.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0cd65b82-372b-463d-880d-e78de17f190e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level333.json b/assets/custom/Json/level333.json new file mode 100644 index 0000000..39f0595 --- /dev/null +++ b/assets/custom/Json/level333.json @@ -0,0 +1,463 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 6, + "color": "2" + }, + { + "x": 4, + "y": 6, + "color": "2" + }, + { + "x": 4, + "y": 3, + "color": "5" + }, + { + "x": 3, + "y": 3, + "color": "4" + }, + { + "x": 3, + "y": 7, + "color": "6" + }, + { + "x": 4, + "y": 7, + "color": "6" + } + ], + "id": "107", + "map": [ + 8, + 10 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 2, + "type": 6, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 20, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 108, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 109, + "num": 1, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 110, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 111, + "num": 21, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 112, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 113, + "num": 3, + "color": 4, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 114, + "num": 4, + "color": 4, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 115, + "num": 23, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 116, + "num": 24, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 117, + "num": 10, + "color": 7, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 118, + "num": 9, + "color": 5, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 119, + "num": 11, + "color": 5, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 120, + "num": 13, + "color": 8, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 121, + "num": 15, + "color": 8, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 122, + "num": 17, + "color": 10, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 123, + "num": 19, + "color": 10, + "special": 3, + "length": 0, + "freeze": 8 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level333.json.meta b/assets/custom/Json/level333.json.meta new file mode 100644 index 0000000..65fb3b6 --- /dev/null +++ b/assets/custom/Json/level333.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "05b1155c-61f5-4c79-9957-2dd0507570b1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level334.json b/assets/custom/Json/level334.json new file mode 100644 index 0000000..0556ada --- /dev/null +++ b/assets/custom/Json/level334.json @@ -0,0 +1,427 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "108", + "map": [ + 8, + 10 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 19, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 4, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "freezeTime": 20, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "freezeTime": 9, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 22, + "color": 9, + "type": 9, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 0, + "color": 2, + "type": 6, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "boomTime": 22, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 109, + "num": 9, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 110, + "num": 11, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 111, + "num": 17, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 112, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 113, + "num": 12, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 114, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 115, + "num": 2, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 116, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 117, + "num": 5, + "color": 6, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 118, + "num": 6, + "color": 6, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 119, + "num": 25, + "color": 7, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 120, + "num": 26, + "color": 7, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 121, + "num": 0, + "color": 10, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 122, + "num": 1, + "color": 10, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 123, + "num": 20, + "color": 4, + "special": 3, + "length": 2, + "freeze": 14 + }, + { + "id": 124, + "num": 21, + "color": 4, + "special": 3, + "length": 0, + "freeze": 14 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level334.json.meta b/assets/custom/Json/level334.json.meta new file mode 100644 index 0000000..3710dbe --- /dev/null +++ b/assets/custom/Json/level334.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1f94e756-0412-403b-ae6a-b32dab347575", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level335.json b/assets/custom/Json/level335.json new file mode 100644 index 0000000..19a8961 --- /dev/null +++ b/assets/custom/Json/level335.json @@ -0,0 +1,380 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 5, + "color": "6" + }, + { + "x": 2, + "y": 6, + "color": "6" + }, + { + "x": 3, + "y": 5, + "color": "2" + }, + { + "x": 3, + "y": 6, + "color": "2" + }, + { + "x": 4, + "y": 5, + "color": "9" + }, + { + "x": 4, + "y": 6, + "color": "9" + }, + { + "x": 5, + "y": 5, + "color": "4" + }, + { + "x": 5, + "y": 6, + "color": "4" + } + ], + "id": "109", + "map": [ + 8, + 10 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 8, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 12, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 6, + "type": 1, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "stacking": 9, + "id": 310 + }, + { + "block": 5, + "color": 6, + "type": 1, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "stacking": 4, + "id": 320 + }, + { + "block": 5, + "color": 7, + "type": 1, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "stacking": 3, + "id": 330 + }, + { + "block": 4, + "color": 4, + "type": 1, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "stacking": 6, + "id": 340 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 110, + "num": 9, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 111, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 112, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 113, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 114, + "num": 2, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 115, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 116, + "num": 22, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 117, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 118, + "num": 24, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 119, + "num": 4, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 120, + "num": 12, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 121, + "num": 14, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 122, + "num": 13, + "color": 7, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 123, + "num": 15, + "color": 7, + "special": 3, + "length": 0, + "freeze": 4 + }, + { + "id": 124, + "num": 5, + "color": 6, + "special": 3, + "length": 3, + "freeze": 6 + }, + { + "id": 125, + "num": 6, + "color": 6, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 126, + "num": 7, + "color": 6, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 127, + "num": 25, + "color": 4, + "special": 3, + "length": 3, + "freeze": 8 + }, + { + "id": 128, + "num": 26, + "color": 4, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 129, + "num": 27, + "color": 4, + "special": 3, + "length": 0, + "freeze": 8 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level335.json.meta b/assets/custom/Json/level335.json.meta new file mode 100644 index 0000000..0e31457 --- /dev/null +++ b/assets/custom/Json/level335.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bf24b09c-03ab-4094-8668-2c5005a6c13c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level336.json b/assets/custom/Json/level336.json new file mode 100644 index 0000000..547ea80 --- /dev/null +++ b/assets/custom/Json/level336.json @@ -0,0 +1,385 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 1, + "y": 7, + "color": "3" + }, + { + "x": 2, + "y": 7, + "color": "3" + }, + { + "x": 5, + "y": 7, + "color": "8" + }, + { + "x": 6, + "y": 7, + "color": "8" + } + ], + "id": "510", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 5, + "color": 1, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 4, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 511, + "num": 8, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 512, + "num": 10, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 513, + "num": 12, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 514, + "num": 14, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 515, + "num": 16, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 516, + "num": 18, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 517, + "num": 9, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 518, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 519, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 520, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 521, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 19, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 523, + "num": 3, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 524, + "num": 23, + "color": 10, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level336.json.meta b/assets/custom/Json/level336.json.meta new file mode 100644 index 0000000..eb9842d --- /dev/null +++ b/assets/custom/Json/level336.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "93a9dd0c-5405-40a4-9107-12bf921005aa", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level337.json b/assets/custom/Json/level337.json new file mode 100644 index 0000000..61b6606 --- /dev/null +++ b/assets/custom/Json/level337.json @@ -0,0 +1,375 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "511", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 390 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 11, + "id": 400 + }, + { + "block": 1, + "color": 4, + "type": 4, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "freezeTime": 15, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 512, + "num": 7, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 513, + "num": 27, + "color": 5, + "special": 3, + "length": 1, + "freeze": 4 + }, + { + "id": 514, + "num": 5, + "color": 8, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 515, + "num": 6, + "color": 8, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 516, + "num": 4, + "color": 1, + "special": 3, + "length": 1, + "freeze": 1 + }, + { + "id": 517, + "num": 2, + "color": 7, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 518, + "num": 3, + "color": 7, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 519, + "num": 0, + "color": 3, + "special": 3, + "length": 2, + "freeze": 2 + }, + { + "id": 520, + "num": 1, + "color": 3, + "special": 3, + "length": 0, + "freeze": 2 + }, + { + "id": 521, + "num": 20, + "color": 9, + "special": 3, + "length": 2, + "freeze": 3 + }, + { + "id": 522, + "num": 21, + "color": 9, + "special": 3, + "length": 0, + "freeze": 3 + }, + { + "id": 523, + "num": 22, + "color": 10, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 524, + "num": 23, + "color": 10, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 525, + "num": 25, + "color": 4, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 526, + "num": 26, + "color": 4, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level337.json.meta b/assets/custom/Json/level337.json.meta new file mode 100644 index 0000000..37c5af9 --- /dev/null +++ b/assets/custom/Json/level337.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "35b7c4d7-4d0e-4193-9640-e983e5c02fa7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level338.json b/assets/custom/Json/level338.json new file mode 100644 index 0000000..502e90a --- /dev/null +++ b/assets/custom/Json/level338.json @@ -0,0 +1,388 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "512", + "map": [ + 8, + 10 + ], + "time": 210, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "stacking": 3, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "stacking": 3, + "id": 340 + }, + { + "block": 2, + "color": 1, + "type": 1, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "stacking": 10, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 1, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "stacking": 2, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 4, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "freezeTime": 5, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "freezeTime": 8, + "id": 380 + }, + { + "block": 2, + "color": 4, + "type": 4, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "freezeTime": 15, + "id": 390 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "freezeTime": 19, + "id": 400 + }, + { + "block": 5, + "color": 4, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 513, + "num": 9, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 24, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 516, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 517, + "num": 22, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 518, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 519, + "num": 16, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 520, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 521, + "num": 17, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 522, + "num": 19, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 523, + "num": 4, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 524, + "num": 5, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 525, + "num": 2, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 526, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 527, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 528, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 529, + "num": 13, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 530, + "num": 15, + "color": 8, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level338.json.meta b/assets/custom/Json/level338.json.meta new file mode 100644 index 0000000..d65ccde --- /dev/null +++ b/assets/custom/Json/level338.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "658a9a4f-5c38-4ce2-b91c-d8bc42086595", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level339.json b/assets/custom/Json/level339.json new file mode 100644 index 0000000..112b880 --- /dev/null +++ b/assets/custom/Json/level339.json @@ -0,0 +1,458 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 8, + "color": "1" + }, + { + "x": 2, + "y": 7, + "color": "1" + }, + { + "x": 3, + "y": 8, + "color": "5" + }, + { + "x": 5, + "y": 8, + "color": "10" + }, + { + "x": 6, + "y": 8, + "color": "2" + }, + { + "x": 6, + "y": 7, + "color": "2" + } + ], + "id": "513", + "map": [ + 9, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 420 + }, + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 430 + }, + { + "block": 3, + "color": 9, + "type": 6, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "boomTime": 20, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 514, + "num": 13, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 515, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 516, + "num": 19, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 517, + "num": 21, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 518, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 519, + "num": 9, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 520, + "num": 32, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 521, + "num": 33, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 523, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 524, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 525, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 526, + "num": 12, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 527, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 528, + "num": 18, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 529, + "num": 20, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 530, + "num": 24, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 531, + "num": 25, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 532, + "num": 28, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 533, + "num": 29, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level339.json.meta b/assets/custom/Json/level339.json.meta new file mode 100644 index 0000000..e738f74 --- /dev/null +++ b/assets/custom/Json/level339.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "47068d26-ae8a-4dd5-abdd-c3b956fb0c3a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level34.json b/assets/custom/Json/level34.json new file mode 100644 index 0000000..231530a --- /dev/null +++ b/assets/custom/Json/level34.json @@ -0,0 +1,429 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "34", + "map": [ + 8, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 3, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": -120, + "y": 480, + "z": 0 + }, + "stacking": 2, + "id": 210 + }, + { + "block": 3, + "color": 5, + "type": 1, + "position": { + "x": 360, + "y": 480, + "z": 0 + }, + "stacking": 3, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "stacking": 8, + "id": 250 + }, + { + "block": 10, + "color": 7, + "type": 1, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "stacking": 5, + "id": 260 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 14, + "color": 8, + "type": 1, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "stacking": 2, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 1, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 310 + }, + { + "block": 3, + "color": 6, + "type": 1, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "stacking": 8, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 1, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "stacking": 8, + "id": 330 + }, + { + "block": 9, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 18, + "color": 2, + "type": 1, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "stacking": 1, + "id": 350 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 6, + "color": 2, + "type": 1, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "stacking": 1, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 35, + "num": 33, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 36, + "num": 34, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 37, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 38, + "num": 13, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 39, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 40, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 41, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 42, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 43, + "num": 6, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 44, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 45, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 46, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 47, + "num": 29, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 48, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 49, + "num": 31, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 50, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 51, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 52, + "num": 3, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 53, + "num": 28, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 54, + "num": 2, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 55, + "num": 16, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 56, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 57, + "num": 20, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 58, + "num": 32, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 59, + "num": 19, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 60, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 61, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level34.json.meta b/assets/custom/Json/level34.json.meta new file mode 100644 index 0000000..500ef73 --- /dev/null +++ b/assets/custom/Json/level34.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "41760d65-2f00-4cc3-9b87-00d2592e91dd", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level340.json b/assets/custom/Json/level340.json new file mode 100644 index 0000000..9d0af81 --- /dev/null +++ b/assets/custom/Json/level340.json @@ -0,0 +1,384 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "114", + "map": [ + 7, + 11 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 8, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 1, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "stacking": 8, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "stacking": 8, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "stacking": 8, + "id": 390 + }, + { + "block": 1, + "color": 8, + "type": 1, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "stacking": 1, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 6, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "boomTime": 35, + "id": 410 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "stacking": 7, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 115, + "num": 3, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 116, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 117, + "num": 22, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 118, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 119, + "num": 9, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 120, + "num": 17, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 121, + "num": 8, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 122, + "num": 27, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 123, + "num": 10, + "color": 7, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 124, + "num": 12, + "color": 7, + "special": 3, + "length": 0, + "freeze": 4 + }, + { + "id": 125, + "num": 16, + "color": 4, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 126, + "num": 18, + "color": 4, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 127, + "num": 11, + "color": 5, + "special": 3, + "length": 3, + "freeze": 10 + }, + { + "id": 128, + "num": 13, + "color": 5, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 129, + "num": 15, + "color": 5, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level340.json.meta b/assets/custom/Json/level340.json.meta new file mode 100644 index 0000000..c43dad6 --- /dev/null +++ b/assets/custom/Json/level340.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "76ec4f5a-3f76-4ae3-aad3-9dc20d4d8375", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level341.json b/assets/custom/Json/level341.json new file mode 100644 index 0000000..f6efbdf --- /dev/null +++ b/assets/custom/Json/level341.json @@ -0,0 +1,493 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 7, + "color": "9" + }, + { + "x": 4, + "y": 7, + "color": "9" + }, + { + "x": 5, + "y": 7, + "color": "9" + } + ], + "id": "516", + "map": [ + 9, + 12 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 5, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 5, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 3, + "color": 9, + "type": 3, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "lockTime": 4, + "id": 450 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "freezeTime": 4, + "id": 460 + }, + { + "block": 2, + "color": 7, + "type": 4, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "freezeTime": 6, + "id": 470 + }, + { + "block": 4, + "color": 6, + "type": 4, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "freezeTime": 8, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 517, + "num": 27, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 518, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 519, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 520, + "num": 3, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 521, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 523, + "num": 16, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 524, + "num": 11, + "color": 8, + "special": 1, + "length": 2 + }, + { + "id": 525, + "num": 13, + "color": 8, + "special": 1, + "length": 0 + }, + { + "id": 526, + "num": 21, + "color": 3, + "special": 1, + "length": 2 + }, + { + "id": 527, + "num": 23, + "color": 3, + "special": 1, + "length": 0 + }, + { + "id": 528, + "num": 6, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 529, + "num": 7, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 530, + "num": 30, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 531, + "num": 31, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 532, + "num": 14, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 533, + "num": 18, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 534, + "num": 15, + "color": 9, + "special": 3, + "length": 3, + "freeze": 10 + }, + { + "id": 535, + "num": 17, + "color": 9, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 536, + "num": 19, + "color": 9, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level341.json.meta b/assets/custom/Json/level341.json.meta new file mode 100644 index 0000000..3a5f949 --- /dev/null +++ b/assets/custom/Json/level341.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f393d66b-ec9c-4caa-bd1e-db33079ed7a8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level342.json b/assets/custom/Json/level342.json new file mode 100644 index 0000000..2b1357a --- /dev/null +++ b/assets/custom/Json/level342.json @@ -0,0 +1,423 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "516", + "map": [ + 9, + 12 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 4, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "freezeTime": 6, + "id": 460 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "freezeTime": 6, + "id": 470 + }, + { + "block": 5, + "color": 4, + "type": 4, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "freezeTime": 6, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 517, + "num": 17, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 518, + "num": 7, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 519, + "num": 8, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 520, + "num": 25, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 521, + "num": 26, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 1, + "color": 7, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 523, + "num": 2, + "color": 7, + "special": 3, + "length": 0, + "freeze": 4 + }, + { + "id": 524, + "num": 31, + "color": 9, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 525, + "num": 32, + "color": 9, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 526, + "num": 19, + "color": 8, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 527, + "num": 21, + "color": 8, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 528, + "num": 13, + "color": 1, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 529, + "num": 15, + "color": 1, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level342.json.meta b/assets/custom/Json/level342.json.meta new file mode 100644 index 0000000..342a63a --- /dev/null +++ b/assets/custom/Json/level342.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0e68dd52-1aee-4d38-b55d-ffce06a4ab47", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level343.json b/assets/custom/Json/level343.json new file mode 100644 index 0000000..ee878a2 --- /dev/null +++ b/assets/custom/Json/level343.json @@ -0,0 +1,407 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 1, + "color": "2" + }, + { + "x": 4, + "y": 1, + "color": "2" + }, + { + "x": 4, + "y": 3, + "color": "4" + }, + { + "x": 3, + "y": 3, + "color": "4" + }, + { + "x": 4, + "y": 8, + "color": "1" + }, + { + "x": 3, + "y": 8, + "color": "1" + }, + { + "x": 3, + "y": 6, + "color": "8" + }, + { + "x": 4, + "y": 6, + "color": "8" + } + ], + "id": "517", + "map": [ + 8, + 10 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 19, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 4, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 518, + "num": 12, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 519, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 520, + "num": 9, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 521, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 523, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 524, + "num": 16, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 525, + "num": 18, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 526, + "num": 17, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 527, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 528, + "num": 13, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 529, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 530, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 531, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 532, + "num": 5, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 533, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level343.json.meta b/assets/custom/Json/level343.json.meta new file mode 100644 index 0000000..b9efb7a --- /dev/null +++ b/assets/custom/Json/level343.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9ecb0cbb-5cb2-459b-8447-0ab84bf1656a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level344.json b/assets/custom/Json/level344.json new file mode 100644 index 0000000..dfb1778 --- /dev/null +++ b/assets/custom/Json/level344.json @@ -0,0 +1,378 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "518", + "map": [ + 9, + 9 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 15, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 5, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 519, + "num": 16, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 520, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 521, + "num": 10, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 522, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 523, + "num": 4, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 524, + "num": 9, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 525, + "num": 11, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 526, + "num": 15, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 527, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 528, + "num": 27, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 529, + "num": 0, + "color": 2, + "special": 3, + "length": 3, + "freeze": 7 + }, + { + "id": 530, + "num": 1, + "color": 2, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 531, + "num": 2, + "color": 2, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 532, + "num": 23, + "color": 3, + "special": 3, + "length": 3, + "freeze": 11 + }, + { + "id": 533, + "num": 24, + "color": 3, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 534, + "num": 25, + "color": 3, + "special": 3, + "length": 0, + "freeze": 11 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level344.json.meta b/assets/custom/Json/level344.json.meta new file mode 100644 index 0000000..237aa46 --- /dev/null +++ b/assets/custom/Json/level344.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5302eaa8-e653-42dd-826e-3a41b144d174", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level345.json b/assets/custom/Json/level345.json new file mode 100644 index 0000000..07da405 --- /dev/null +++ b/assets/custom/Json/level345.json @@ -0,0 +1,367 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 8, + "color": "5" + }, + { + "x": 3, + "y": 2, + "color": "9" + }, + { + "x": 3, + "y": 3, + "color": "9" + } + ], + "id": "519", + "map": [ + 7, + 11 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 17, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 16, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 520, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 521, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 25, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 523, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 524, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 525, + "num": 1, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 526, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 527, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 528, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 529, + "num": 19, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 530, + "num": 0, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 531, + "num": 9, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 532, + "num": 17, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 533, + "num": 23, + "color": 1, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 534, + "num": 24, + "color": 1, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 535, + "num": 6, + "color": 5, + "special": 3, + "length": 3, + "freeze": 11 + }, + { + "id": 536, + "num": 7, + "color": 5, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 537, + "num": 8, + "color": 5, + "special": 3, + "length": 0, + "freeze": 11 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level345.json.meta b/assets/custom/Json/level345.json.meta new file mode 100644 index 0000000..d1817fc --- /dev/null +++ b/assets/custom/Json/level345.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bbe1d2d6-f491-4f3b-9e0a-a06787bc9fba", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level346.json b/assets/custom/Json/level346.json new file mode 100644 index 0000000..dac749e --- /dev/null +++ b/assets/custom/Json/level346.json @@ -0,0 +1,450 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "550", + "map": [ + 9, + 10 + ], + "time": 130, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 3, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "freezeTime": 10, + "id": 440 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "freezeTime": 12, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 551, + "num": 12, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 552, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 553, + "num": 16, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 554, + "num": 13, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 555, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 556, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 557, + "num": 2, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 558, + "num": 27, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 559, + "num": 3, + "color": 8, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 560, + "num": 4, + "color": 8, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 561, + "num": 0, + "color": 9, + "special": 3, + "length": 2, + "freeze": 11 + }, + { + "id": 562, + "num": 1, + "color": 9, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 563, + "num": 28, + "color": 5, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 564, + "num": 29, + "color": 5, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 565, + "num": 25, + "color": 3, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 566, + "num": 26, + "color": 3, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level346.json.meta b/assets/custom/Json/level346.json.meta new file mode 100644 index 0000000..4e705fd --- /dev/null +++ b/assets/custom/Json/level346.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "14b58450-8131-4621-9538-ba554e0906e9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level347.json b/assets/custom/Json/level347.json new file mode 100644 index 0000000..de21030 --- /dev/null +++ b/assets/custom/Json/level347.json @@ -0,0 +1,445 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "549", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "lockTime": 7, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "freezeTime": 7, + "id": 430 + }, + { + "block": 0, + "color": 4, + "type": 4, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "freezeTime": 10, + "id": 440 + }, + { + "block": 1, + "color": 6, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 10, + "id": 450 + }, + { + "block": 1, + "color": 7, + "type": 4, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "freezeTime": 15, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 550, + "num": 10, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 551, + "num": 12, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 552, + "num": 14, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 553, + "num": 16, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 554, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 555, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 556, + "num": 3, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 557, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 558, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 559, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 560, + "num": 23, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 561, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 562, + "num": 9, + "color": 8, + "special": 3, + "length": 2, + "freeze": 18 + }, + { + "id": 563, + "num": 11, + "color": 8, + "special": 3, + "length": 0, + "freeze": 18 + }, + { + "id": 564, + "num": 13, + "color": 6, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 565, + "num": 15, + "color": 6, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 566, + "num": 17, + "color": 4, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 567, + "num": 19, + "color": 4, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level347.json.meta b/assets/custom/Json/level347.json.meta new file mode 100644 index 0000000..11cc2b8 --- /dev/null +++ b/assets/custom/Json/level347.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3787f47f-00d9-4a7e-a5ca-0b2b3ca55235", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level348.json b/assets/custom/Json/level348.json new file mode 100644 index 0000000..bd014d8 --- /dev/null +++ b/assets/custom/Json/level348.json @@ -0,0 +1,315 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "522", + "map": [ + 8, + 9 + ], + "time": 85, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "freezeTime": 8, + "id": 290 + }, + { + "block": 5, + "color": 3, + "type": 3, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "lockTime": 4, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 523, + "num": 10, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 524, + "num": 12, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 525, + "num": 14, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 526, + "num": 16, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 527, + "num": 2, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 528, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 529, + "num": 22, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 530, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 531, + "num": 25, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 532, + "num": 0, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 533, + "num": 5, + "color": 2, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 534, + "num": 6, + "color": 2, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 535, + "num": 19, + "color": 3, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 536, + "num": 20, + "color": 3, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level348.json.meta b/assets/custom/Json/level348.json.meta new file mode 100644 index 0000000..a26247a --- /dev/null +++ b/assets/custom/Json/level348.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3a25dcbf-a02b-4e83-b80e-7192ffab6cf6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level349.json b/assets/custom/Json/level349.json new file mode 100644 index 0000000..e36eaac --- /dev/null +++ b/assets/custom/Json/level349.json @@ -0,0 +1,469 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 7, + "color": "4" + }, + { + "x": 4, + "y": 6, + "color": "4" + }, + { + "x": 5, + "y": 7, + "color": "4" + } + ], + "id": "523", + "map": [ + 9, + 12 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -600, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 440 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 450 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 460 + }, + { + "block": 5, + "color": 4, + "type": 9, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 470 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 480 + }, + { + "block": 5, + "color": 9, + "type": 9, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 490 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 510 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 524, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 525, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 526, + "num": 10, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 527, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 528, + "num": 20, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 529, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 530, + "num": 19, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 531, + "num": 21, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 532, + "num": 23, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 533, + "num": 11, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 534, + "num": 14, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 535, + "num": 18, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level349.json.meta b/assets/custom/Json/level349.json.meta new file mode 100644 index 0000000..c632e0c --- /dev/null +++ b/assets/custom/Json/level349.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "121474eb-d3e1-4ae5-b0fa-6f40b7f8ae30", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level35.json b/assets/custom/Json/level35.json new file mode 100644 index 0000000..dbc68ff --- /dev/null +++ b/assets/custom/Json/level35.json @@ -0,0 +1,207 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "35", + "map": [ + 7, + 10 + ], + "time": 60, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 11, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 9, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 15, + "color": 6, + "type": 5, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 14, + "color": 4, + "type": 5, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 260 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 11, + "color": 4, + "special": 1, + "length": 3 + }, + { + "id": 1, + "num": 13, + "color": 4, + "special": 1, + "length": 0 + }, + { + "id": 2, + "num": 15, + "color": 4, + "special": 1, + "length": 0 + }, + { + "id": 3, + "num": 10, + "color": 6, + "special": 1, + "length": 3 + }, + { + "id": 4, + "num": 12, + "color": 6, + "special": 1, + "length": 0 + }, + { + "id": 5, + "num": 14, + "color": 6, + "special": 1, + "length": 0 + }, + { + "id": 6, + "num": 3, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 1, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 23, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 24, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 21, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level35.json.meta b/assets/custom/Json/level35.json.meta new file mode 100644 index 0000000..e501318 --- /dev/null +++ b/assets/custom/Json/level35.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e382f149-9fe7-435f-b800-434f8203afe3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level350.json b/assets/custom/Json/level350.json new file mode 100644 index 0000000..1931ce7 --- /dev/null +++ b/assets/custom/Json/level350.json @@ -0,0 +1,371 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "524", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 17, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 16, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 6, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "boomTime": 25, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 525, + "num": 9, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 526, + "num": 25, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 527, + "num": 23, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 528, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 529, + "num": 11, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 530, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 531, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 532, + "num": 1, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 533, + "num": 16, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 534, + "num": 18, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 535, + "num": 4, + "color": 4, + "special": 3, + "length": 3, + "freeze": 5 + }, + { + "id": 536, + "num": 5, + "color": 4, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 537, + "num": 6, + "color": 4, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 538, + "num": 20, + "color": 5, + "special": 3, + "length": 3, + "freeze": 8 + }, + { + "id": 539, + "num": 21, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 540, + "num": 22, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level350.json.meta b/assets/custom/Json/level350.json.meta new file mode 100644 index 0000000..a834252 --- /dev/null +++ b/assets/custom/Json/level350.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "652f28cb-6a41-47e9-a16e-94fb632c10d8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level351.json b/assets/custom/Json/level351.json new file mode 100644 index 0000000..d56c13e --- /dev/null +++ b/assets/custom/Json/level351.json @@ -0,0 +1,387 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "525", + "map": [ + 7, + 11 + ], + "time": 135, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 5, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 5, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 3, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "lockTime": 7, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "freezeTime": 12, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 526, + "num": 13, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 527, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 528, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 529, + "num": 14, + "color": 1, + "special": 1, + "length": 1 + }, + { + "id": 530, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 531, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 532, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 533, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 534, + "num": 23, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 535, + "num": 22, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 536, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 537, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 538, + "num": 2, + "color": 8, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 539, + "num": 3, + "color": 8, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 540, + "num": 4, + "color": 5, + "special": 3, + "length": 2, + "freeze": 8 + }, + { + "id": 541, + "num": 5, + "color": 5, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 542, + "num": 26, + "color": 3, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 543, + "num": 27, + "color": 3, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level351.json.meta b/assets/custom/Json/level351.json.meta new file mode 100644 index 0000000..1847a69 --- /dev/null +++ b/assets/custom/Json/level351.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d1773444-77db-42a2-bae7-8c2871901bfb", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level352.json b/assets/custom/Json/level352.json new file mode 100644 index 0000000..a591c28 --- /dev/null +++ b/assets/custom/Json/level352.json @@ -0,0 +1,461 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 5, + "color": "2" + }, + { + "x": 4, + "y": 5, + "color": "2" + }, + { + "x": 5, + "y": 5, + "color": "2" + }, + { + "x": 6, + "y": 5, + "color": "2" + }, + { + "x": 3, + "y": 4, + "color": "2" + }, + { + "x": 4, + "y": 4, + "color": "2" + }, + { + "x": 5, + "y": 4, + "color": "2" + }, + { + "x": 6, + "y": 4, + "color": "2" + } + ], + "id": "526", + "map": [ + 10, + 12 + ], + "time": 115, + "gap": [ + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 10, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 12, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 17, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 16, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 480, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 2, + "color": 1, + "type": 6, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "boomTime": 15, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 527, + "num": 3, + "color": 10, + "special": 3, + "length": 3, + "freeze": 9 + }, + { + "id": 528, + "num": 4, + "color": 10, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 529, + "num": 5, + "color": 10, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 530, + "num": 21, + "color": 3, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 531, + "num": 24, + "color": 3, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 532, + "num": 33, + "color": 9, + "special": 3, + "length": 3, + "freeze": 10 + }, + { + "id": 533, + "num": 34, + "color": 9, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 534, + "num": 35, + "color": 9, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 535, + "num": 13, + "color": 5, + "special": 3, + "length": 2, + "freeze": 3 + }, + { + "id": 536, + "num": 15, + "color": 5, + "special": 3, + "length": 0, + "freeze": 3 + }, + { + "id": 537, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 538, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 539, + "num": 31, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 540, + "num": 32, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 541, + "num": 1, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 542, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level352.json.meta b/assets/custom/Json/level352.json.meta new file mode 100644 index 0000000..6ab151b --- /dev/null +++ b/assets/custom/Json/level352.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ac8bf176-93b0-4d34-95a2-f91296ec9f37", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level353.json b/assets/custom/Json/level353.json new file mode 100644 index 0000000..fe388cf --- /dev/null +++ b/assets/custom/Json/level353.json @@ -0,0 +1,494 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 4, + "color": "9" + }, + { + "x": 5, + "y": 4, + "color": "9" + }, + { + "x": 6, + "y": 4, + "color": "9" + }, + { + "x": 6, + "y": 5, + "color": "9" + }, + { + "x": 5, + "y": 5, + "color": "9" + }, + { + "x": 4, + "y": 5, + "color": "9" + }, + { + "x": 4, + "y": 6, + "color": "9" + }, + { + "x": 5, + "y": 6, + "color": "9" + }, + { + "x": 6, + "y": 6, + "color": "9" + } + ], + "id": "527", + "map": [ + 11, + 11 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 8, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 6, + "color": 6, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "boomTime": 20, + "id": 400 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "freezeTime": 3, + "id": 430 + }, + { + "block": 2, + "color": 10, + "type": 4, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "freezeTime": 4, + "id": 440 + }, + { + "block": 2, + "color": 2, + "type": 4, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "freezeTime": 7, + "id": 450 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "freezeTime": 8, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 528, + "num": 24, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 529, + "num": 12, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 530, + "num": 6, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 531, + "num": 11, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 532, + "num": 23, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 533, + "num": 29, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 534, + "num": 16, + "color": 9, + "special": 3, + "length": 3, + "freeze": 8 + }, + { + "id": 535, + "num": 18, + "color": 9, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 536, + "num": 20, + "color": 9, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 537, + "num": 2, + "color": 6, + "special": 3, + "length": 3, + "freeze": 9 + }, + { + "id": 538, + "num": 3, + "color": 6, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 539, + "num": 4, + "color": 6, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 540, + "num": 31, + "color": 10, + "special": 3, + "length": 3, + "freeze": 10 + }, + { + "id": 541, + "num": 32, + "color": 10, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 542, + "num": 33, + "color": 10, + "special": 3, + "length": 0, + "freeze": 10 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level353.json.meta b/assets/custom/Json/level353.json.meta new file mode 100644 index 0000000..267510e --- /dev/null +++ b/assets/custom/Json/level353.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0f40ddab-52cf-404c-b4e5-2bbf06334e2a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level354.json b/assets/custom/Json/level354.json new file mode 100644 index 0000000..9603b0a --- /dev/null +++ b/assets/custom/Json/level354.json @@ -0,0 +1,319 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 5, + "color": "9" + }, + { + "x": 4, + "y": 4, + "color": "9" + }, + { + "x": 3, + "y": 4, + "color": "9" + }, + { + "x": 3, + "y": 5, + "color": "9" + }, + { + "x": 2, + "y": 6, + "color": "3" + }, + { + "x": 5, + "y": 3, + "color": "10" + } + ], + "id": "528", + "map": [ + 8, + 10 + ], + "time": 140, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 8, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 6, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 21, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 9, + "type": 3, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "lockTime": 4, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 529, + "num": 12, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 530, + "num": 14, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 531, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 532, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 533, + "num": 2, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 534, + "num": 4, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 535, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 536, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 537, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 538, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 539, + "num": 25, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 540, + "num": 21, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 541, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 542, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level354.json.meta b/assets/custom/Json/level354.json.meta new file mode 100644 index 0000000..3527fc4 --- /dev/null +++ b/assets/custom/Json/level354.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c40fbf08-fbb3-4efb-b901-c06ceccdea14", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level355.json b/assets/custom/Json/level355.json new file mode 100644 index 0000000..b9edddf --- /dev/null +++ b/assets/custom/Json/level355.json @@ -0,0 +1,428 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "129", + "map": [ + 9, + 9 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 1, + "type": 5, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 3, + "type": 5, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 5, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 5, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 10, + "type": 9, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 7, + "type": 8, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 130, + "num": 7, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 131, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 132, + "num": 23, + "color": 3, + "special": 1, + "length": 3 + }, + { + "id": 133, + "num": 24, + "color": 3, + "special": 1, + "length": 0 + }, + { + "id": 134, + "num": 25, + "color": 3, + "special": 1, + "length": 0 + }, + { + "id": 135, + "num": 21, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 136, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 137, + "num": 17, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 138, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 139, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 140, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 141, + "num": 2, + "color": 1, + "special": 1, + "length": 3 + }, + { + "id": 142, + "num": 3, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 143, + "num": 4, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 144, + "num": 11, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 145, + "num": 15, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 146, + "num": 13, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 147, + "num": 5, + "color": 2, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 148, + "num": 6, + "color": 2, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 149, + "num": 26, + "color": 10, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 150, + "num": 27, + "color": 10, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level355.json.meta b/assets/custom/Json/level355.json.meta new file mode 100644 index 0000000..04d4f1a --- /dev/null +++ b/assets/custom/Json/level355.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f894edcb-20fd-4ea6-8dd4-6ebde9414460", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level356.json b/assets/custom/Json/level356.json new file mode 100644 index 0000000..f481557 --- /dev/null +++ b/assets/custom/Json/level356.json @@ -0,0 +1,438 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "530", + "map": [ + 9, + 11 + ], + "time": 105, + "gap": [ + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 9, + "z": 0 + }, + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 5, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 5, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 3, + "color": 7, + "type": 3, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "lockTime": 6, + "id": 360 + }, + { + "block": 20, + "color": 7, + "type": 9, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 19, + "color": 9, + "type": 9, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 531, + "num": 34, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 532, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 533, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 534, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 535, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 536, + "num": 37, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 537, + "num": 38, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 538, + "num": 31, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 539, + "num": 32, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 540, + "num": 33, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 541, + "num": 35, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 542, + "num": 36, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 543, + "num": 39, + "color": 1, + "special": 1, + "length": 1 + }, + { + "id": 544, + "num": 8, + "color": 10, + "special": 1, + "length": 1 + }, + { + "id": 545, + "num": 2, + "color": 6, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 546, + "num": 3, + "color": 6, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 547, + "num": 6, + "color": 7, + "special": 3, + "length": 2, + "freeze": 4 + }, + { + "id": 548, + "num": 7, + "color": 7, + "special": 3, + "length": 0, + "freeze": 4 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level356.json.meta b/assets/custom/Json/level356.json.meta new file mode 100644 index 0000000..e678902 --- /dev/null +++ b/assets/custom/Json/level356.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9152b2c5-404f-4b3f-9cde-efde713791f3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level357.json b/assets/custom/Json/level357.json new file mode 100644 index 0000000..d1ec11a --- /dev/null +++ b/assets/custom/Json/level357.json @@ -0,0 +1,379 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 6, + "color": "5" + }, + { + "x": 4, + "y": 6, + "color": "5" + }, + { + "x": 4, + "y": 2, + "color": "7" + }, + { + "x": 3, + "y": 2, + "color": "7" + } + ], + "id": "531", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 10, + "type": 6, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "boomTime": 15, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 6, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "boomTime": 15, + "id": 380 + }, + { + "block": 20, + "color": 7, + "type": 9, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 532, + "num": 6, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 533, + "num": 7, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 534, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 535, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 536, + "num": 2, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 537, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 538, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 539, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 540, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 541, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 542, + "num": 24, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 543, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 544, + "num": 22, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 545, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 546, + "num": 20, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 547, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level357.json.meta b/assets/custom/Json/level357.json.meta new file mode 100644 index 0000000..f27b4f2 --- /dev/null +++ b/assets/custom/Json/level357.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3e4dd319-b39a-4c84-97d5-0e8a0699ab8c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level358.json b/assets/custom/Json/level358.json new file mode 100644 index 0000000..9759285 --- /dev/null +++ b/assets/custom/Json/level358.json @@ -0,0 +1,327 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "532", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 12, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 10, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 8, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 533, + "num": 4, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 534, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 535, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 536, + "num": 25, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 537, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 538, + "num": 27, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 539, + "num": 21, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 540, + "num": 11, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 541, + "num": 20, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 542, + "num": 10, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 543, + "num": 28, + "color": 8, + "special": 3, + "length": 3, + "freeze": 8 + }, + { + "id": 544, + "num": 29, + "color": 8, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 545, + "num": 30, + "color": 8, + "special": 3, + "length": 0, + "freeze": 8 + }, + { + "id": 546, + "num": 1, + "color": 1, + "special": 3, + "length": 3, + "freeze": 9 + }, + { + "id": 547, + "num": 2, + "color": 1, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 548, + "num": 3, + "color": 1, + "special": 3, + "length": 0, + "freeze": 9 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level358.json.meta b/assets/custom/Json/level358.json.meta new file mode 100644 index 0000000..92237f1 --- /dev/null +++ b/assets/custom/Json/level358.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "28995428-ca8a-4b52-b422-6004d550fd7b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level359.json b/assets/custom/Json/level359.json new file mode 100644 index 0000000..55b74b2 --- /dev/null +++ b/assets/custom/Json/level359.json @@ -0,0 +1,351 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 3, + "color": "3" + }, + { + "x": 4, + "y": 3, + "color": "3" + }, + { + "x": 5, + "y": 3, + "color": "3" + } + ], + "id": "533", + "map": [ + 9, + 9 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 20, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 6, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "boomTime": 20, + "id": 310 + }, + { + "block": 21, + "color": 3, + "type": 9, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 22, + "color": 3, + "type": 9, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 6, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "boomTime": 30, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 534, + "num": 12, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 535, + "num": 14, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 536, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 537, + "num": 11, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 538, + "num": 13, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 539, + "num": 1, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 540, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 541, + "num": 4, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 542, + "num": 5, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 543, + "num": 25, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 544, + "num": 26, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 545, + "num": 22, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 546, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 547, + "num": 15, + "color": 9, + "special": 3, + "length": 3, + "freeze": 7 + }, + { + "id": 548, + "num": 17, + "color": 9, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 549, + "num": 19, + "color": 9, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 550, + "num": 7, + "color": 10, + "special": 3, + "length": 2, + "freeze": 13 + }, + { + "id": 551, + "num": 9, + "color": 10, + "special": 3, + "length": 0, + "freeze": 13 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level359.json.meta b/assets/custom/Json/level359.json.meta new file mode 100644 index 0000000..a734d3e --- /dev/null +++ b/assets/custom/Json/level359.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b89ec25f-865b-4dda-91c5-94b4906a1534", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level36.json b/assets/custom/Json/level36.json new file mode 100644 index 0000000..e1bd270 --- /dev/null +++ b/assets/custom/Json/level36.json @@ -0,0 +1,180 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "36", + "map": [ + 7, + 8 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 7, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 3, + "type": 5, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 5, + "type": 5, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 280 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 7, + "color": 5, + "special": 1, + "length": 2 + }, + { + "id": 1, + "num": 9, + "color": 5, + "special": 1, + "length": 0 + }, + { + "id": 2, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 13, + "color": 3, + "special": 1, + "length": 2 + }, + { + "id": 5, + "num": 15, + "color": 3, + "special": 1, + "length": 0 + }, + { + "id": 6, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level36.json.meta b/assets/custom/Json/level36.json.meta new file mode 100644 index 0000000..18b2d05 --- /dev/null +++ b/assets/custom/Json/level36.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "33709cdd-1903-43f6-9791-ffcdeaefcf92", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level360.json b/assets/custom/Json/level360.json new file mode 100644 index 0000000..04e9bab --- /dev/null +++ b/assets/custom/Json/level360.json @@ -0,0 +1,479 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 6, + "color": "10" + }, + { + "x": 3, + "y": 6, + "color": "10" + }, + { + "x": 6, + "y": 6, + "color": "1" + }, + { + "x": 7, + "y": 6, + "color": "1" + } + ], + "id": "534", + "map": [ + 10, + 13 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 10, + "type": 2, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -360, + "y": -660, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": -240, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -360, + "y": 420, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 7, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 420 + }, + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 5, + "type": 3, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "lockTime": 14, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 535, + "num": 7, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 536, + "num": 8, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 537, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 538, + "num": 1, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 539, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 540, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 541, + "num": 28, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 542, + "num": 29, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 543, + "num": 30, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 544, + "num": 34, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 545, + "num": 35, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 546, + "num": 36, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 547, + "num": 17, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 548, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 549, + "num": 18, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 550, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 551, + "num": 4, + "color": 9, + "special": 3, + "length": 3, + "freeze": 2 + }, + { + "id": 552, + "num": 5, + "color": 9, + "special": 3, + "length": 0, + "freeze": 2 + }, + { + "id": 553, + "num": 6, + "color": 9, + "special": 3, + "length": 0, + "freeze": 2 + }, + { + "id": 554, + "num": 31, + "color": 8, + "special": 3, + "length": 3, + "freeze": 3 + }, + { + "id": 555, + "num": 32, + "color": 8, + "special": 3, + "length": 0, + "freeze": 3 + }, + { + "id": 556, + "num": 33, + "color": 8, + "special": 3, + "length": 0, + "freeze": 3 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level360.json.meta b/assets/custom/Json/level360.json.meta new file mode 100644 index 0000000..794598c --- /dev/null +++ b/assets/custom/Json/level360.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3fb61409-d719-4f8a-a5dd-2f921e261606", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level361.json b/assets/custom/Json/level361.json new file mode 100644 index 0000000..21e1a6e --- /dev/null +++ b/assets/custom/Json/level361.json @@ -0,0 +1,544 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "535", + "map": [ + 10, + 13 + ], + "time": 165, + "gap": [ + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 10, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 540, + "z": 0 + }, + "id": 420 + }, + { + "block": 6, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 540, + "z": 0 + }, + "id": 450 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -660, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 490 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 520 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 530 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 540 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 550 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 536, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 537, + "num": 8, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 538, + "num": 36, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 539, + "num": 37, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 540, + "num": 18, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 541, + "num": 20, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 542, + "num": 13, + "color": 2, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 543, + "num": 15, + "color": 2, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 544, + "num": 21, + "color": 6, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 545, + "num": 23, + "color": 6, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 546, + "num": 4, + "color": 1, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 547, + "num": 5, + "color": 1, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 548, + "num": 33, + "color": 10, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 549, + "num": 34, + "color": 10, + "special": 3, + "length": 0, + "freeze": 15 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level361.json.meta b/assets/custom/Json/level361.json.meta new file mode 100644 index 0000000..e7af348 --- /dev/null +++ b/assets/custom/Json/level361.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "732c8292-b3da-45e4-8cff-d91c4be2aca8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level362.json b/assets/custom/Json/level362.json new file mode 100644 index 0000000..1aa7960 --- /dev/null +++ b/assets/custom/Json/level362.json @@ -0,0 +1,358 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 4, + "color": "5" + }, + { + "x": 3, + "y": 5, + "color": "5" + }, + { + "x": 3, + "y": 6, + "color": "5" + } + ], + "id": "536", + "map": [ + 7, + 11 + ], + "time": 90, + "gap": [ + { + "x": 3, + "y": 9, + "z": 0 + }, + { + "x": 2, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 7, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 22, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "freezeTime": 8, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 537, + "num": 10, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 538, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 539, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 540, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 541, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 542, + "num": 8, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 543, + "num": 6, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 544, + "num": 7, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 545, + "num": 5, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 546, + "num": 17, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 547, + "num": 19, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 548, + "num": 20, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 549, + "num": 21, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 550, + "num": 26, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 551, + "num": 27, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level362.json.meta b/assets/custom/Json/level362.json.meta new file mode 100644 index 0000000..4fd0512 --- /dev/null +++ b/assets/custom/Json/level362.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "246903a9-6cf4-4b88-a5b0-4685f8275453", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level363.json b/assets/custom/Json/level363.json new file mode 100644 index 0000000..3977e80 --- /dev/null +++ b/assets/custom/Json/level363.json @@ -0,0 +1,418 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 6, + "y": 5, + "color": "5" + }, + { + "x": 6, + "y": 4, + "color": "5" + }, + { + "x": 7, + "y": 4, + "color": "5" + }, + { + "x": 4, + "y": 5, + "color": "3" + }, + { + "x": 4, + "y": 4, + "color": "3" + }, + { + "x": 3, + "y": 4, + "color": "3" + } + ], + "id": "537", + "map": [ + 11, + 11 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 5, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 5, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 5, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 8, + "color": 3, + "type": 1, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "stacking": 7, + "id": 340 + }, + { + "block": 20, + "color": 3, + "type": 1, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "stacking": 8, + "id": 350 + }, + { + "block": 19, + "color": 5, + "type": 1, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "stacking": 8, + "id": 360 + }, + { + "block": 19, + "color": 5, + "type": 1, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "stacking": 4, + "id": 370 + }, + { + "block": 20, + "color": 8, + "type": 1, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "stacking": 3, + "id": 380 + }, + { + "block": 12, + "color": 7, + "type": 1, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "stacking": 9, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 538, + "num": 16, + "color": 9, + "special": 1, + "length": 3 + }, + { + "id": 539, + "num": 18, + "color": 9, + "special": 1, + "length": 0 + }, + { + "id": 540, + "num": 20, + "color": 9, + "special": 1, + "length": 0 + }, + { + "id": 541, + "num": 14, + "color": 6, + "special": 1, + "length": 1 + }, + { + "id": 542, + "num": 22, + "color": 1, + "special": 1, + "length": 1 + }, + { + "id": 543, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 544, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 545, + "num": 7, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 546, + "num": 10, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 547, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 548, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 549, + "num": 23, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 550, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 551, + "num": 32, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 552, + "num": 33, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 553, + "num": 3, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 554, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level363.json.meta b/assets/custom/Json/level363.json.meta new file mode 100644 index 0000000..0f6685a --- /dev/null +++ b/assets/custom/Json/level363.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2f2a4a25-b565-4475-a136-7a98289b3f4d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level364.json b/assets/custom/Json/level364.json new file mode 100644 index 0000000..69cdb96 --- /dev/null +++ b/assets/custom/Json/level364.json @@ -0,0 +1,414 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "538", + "map": [ + 9, + 9 + ], + "time": 175, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 6, + "color": 7, + "type": 4, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "freezeTime": 5, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "boomTime": 20, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 539, + "num": 2, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 540, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 541, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 542, + "num": 23, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 543, + "num": 24, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 544, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 545, + "num": 13, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 546, + "num": 15, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 547, + "num": 12, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 548, + "num": 14, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 549, + "num": 10, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 550, + "num": 17, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 551, + "num": 21, + "color": 8, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 552, + "num": 22, + "color": 8, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 553, + "num": 5, + "color": 4, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 554, + "num": 6, + "color": 4, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 555, + "num": 26, + "color": 6, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 556, + "num": 27, + "color": 6, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 557, + "num": 0, + "color": 10, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 558, + "num": 1, + "color": 10, + "special": 3, + "length": 0, + "freeze": 15 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level364.json.meta b/assets/custom/Json/level364.json.meta new file mode 100644 index 0000000..350713d --- /dev/null +++ b/assets/custom/Json/level364.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "79e129a2-bf67-437a-b93c-34ca524c8b60", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level365.json b/assets/custom/Json/level365.json new file mode 100644 index 0000000..bee242d --- /dev/null +++ b/assets/custom/Json/level365.json @@ -0,0 +1,486 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 2, + "y": 3, + "color": "1" + }, + { + "x": 6, + "y": 3, + "color": "1" + } + ], + "id": "539", + "map": [ + 9, + 12 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 18, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 410 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 420 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 450 + }, + { + "block": 4, + "color": 5, + "type": 6, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "boomTime": 20, + "id": 460 + }, + { + "block": 4, + "color": 7, + "type": 6, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "boomTime": 25, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 540, + "num": 32, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 541, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 542, + "num": 34, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 543, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 544, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 545, + "num": 15, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 546, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 547, + "num": 30, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 548, + "num": 31, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 549, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 550, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 551, + "num": 36, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 552, + "num": 37, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 553, + "num": 19, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 554, + "num": 2, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 555, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 556, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 557, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 558, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level365.json.meta b/assets/custom/Json/level365.json.meta new file mode 100644 index 0000000..72c9114 --- /dev/null +++ b/assets/custom/Json/level365.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "590b2080-4f9b-490a-b901-82816d98512b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level366.json b/assets/custom/Json/level366.json new file mode 100644 index 0000000..fa98001 --- /dev/null +++ b/assets/custom/Json/level366.json @@ -0,0 +1,381 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "540", + "map": [ + 8, + 10 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 6, + "type": 3, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "lockTime": 6, + "id": 430 + }, + { + "block": 0, + "color": 10, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 10, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 541, + "num": 14, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 542, + "num": 16, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 543, + "num": 18, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 544, + "num": 9, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 545, + "num": 11, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 546, + "num": 17, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 547, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 548, + "num": 13, + "color": 9, + "special": 3, + "length": 1, + "freeze": 2 + }, + { + "id": 549, + "num": 15, + "color": 10, + "special": 3, + "length": 1, + "freeze": 6 + }, + { + "id": 550, + "num": 8, + "color": 1, + "special": 3, + "length": 1, + "freeze": 4 + }, + { + "id": 551, + "num": 10, + "color": 3, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 552, + "num": 12, + "color": 3, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level366.json.meta b/assets/custom/Json/level366.json.meta new file mode 100644 index 0000000..dad6286 --- /dev/null +++ b/assets/custom/Json/level366.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2a94c558-b974-4da8-9203-e4e30e4dc3f3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level367.json b/assets/custom/Json/level367.json new file mode 100644 index 0000000..7edb970 --- /dev/null +++ b/assets/custom/Json/level367.json @@ -0,0 +1,556 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 3, + "color": "5" + }, + { + "x": 3, + "y": 2, + "color": "5" + }, + { + "x": 3, + "y": 1, + "color": "5" + }, + { + "x": 4, + "y": 3, + "color": "5" + }, + { + "x": 4, + "y": 2, + "color": "5" + }, + { + "x": 4, + "y": 1, + "color": "5" + }, + { + "x": 5, + "y": 3, + "color": "5" + }, + { + "x": 5, + "y": 2, + "color": "5" + }, + { + "x": 5, + "y": 1, + "color": "5" + } + ], + "id": "541", + "map": [ + 9, + 12 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -300, + "y": 480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 300, + "y": 480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 21, + "color": 1, + "type": 4, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "freezeTime": 2, + "id": 460 + }, + { + "block": 0, + "color": 1, + "type": 4, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "freezeTime": 2, + "id": 470 + }, + { + "block": 22, + "color": 3, + "type": 4, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "freezeTime": 10, + "id": 480 + }, + { + "block": 0, + "color": 3, + "type": 4, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "freezeTime": 10, + "id": 490 + }, + { + "block": 2, + "color": 2, + "type": 4, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "freezeTime": 6, + "id": 500 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 542, + "num": 6, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 543, + "num": 7, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 544, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 545, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 546, + "num": 2, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 547, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 548, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 549, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 550, + "num": 26, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 551, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 552, + "num": 28, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 553, + "num": 29, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 554, + "num": 30, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 555, + "num": 31, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 556, + "num": 32, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 557, + "num": 33, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level367.json.meta b/assets/custom/Json/level367.json.meta new file mode 100644 index 0000000..494b653 --- /dev/null +++ b/assets/custom/Json/level367.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "10138a75-ec4e-4e35-a6a4-d8fff43688b2", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level368.json b/assets/custom/Json/level368.json new file mode 100644 index 0000000..0da8b6c --- /dev/null +++ b/assets/custom/Json/level368.json @@ -0,0 +1,434 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 1, + "y": 3, + "color": "10" + }, + { + "x": 2, + "y": 3, + "color": "10" + }, + { + "x": 5, + "y": 3, + "color": "9" + }, + { + "x": 6, + "y": 3, + "color": "9" + } + ], + "id": "541", + "map": [ + 8, + 10 + ], + "time": 65, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 5, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 5, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 7, + "type": 3, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "lockTime": 4, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 542, + "num": 10, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 543, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 544, + "num": 14, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 545, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 546, + "num": 21, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 547, + "num": 22, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 548, + "num": 15, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 549, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 550, + "num": 11, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 551, + "num": 13, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 552, + "num": 3, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 553, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 554, + "num": 24, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 555, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 556, + "num": 5, + "color": 3, + "special": 1, + "length": 1 + }, + { + "id": 557, + "num": 26, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 558, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 559, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level368.json.meta b/assets/custom/Json/level368.json.meta new file mode 100644 index 0000000..24b7e9c --- /dev/null +++ b/assets/custom/Json/level368.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "632e2cad-8cbc-4d12-a2fe-f7bd9656e559", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level369.json b/assets/custom/Json/level369.json new file mode 100644 index 0000000..fb86c12 --- /dev/null +++ b/assets/custom/Json/level369.json @@ -0,0 +1,350 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "543", + "map": [ + 7, + 11 + ], + "time": 180, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "stacking": 7, + "id": 250 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 6, + "type": 1, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "stacking": 1, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 1, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "stacking": 8, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "stacking": 3, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 1, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "stacking": 5, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 1, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "stacking": 4, + "id": 330 + }, + { + "block": 16, + "color": 6, + "type": 4, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "freezeTime": 6, + "id": 340 + }, + { + "block": 1, + "color": 1, + "type": 4, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "freezeTime": 8, + "id": 350 + }, + { + "block": 19, + "color": 2, + "type": 4, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "freezeTime": 9, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 544, + "num": 4, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 545, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 546, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 547, + "num": 10, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 548, + "num": 2, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 549, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 550, + "num": 17, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 551, + "num": 21, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 552, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 553, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 554, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 555, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 556, + "num": 13, + "color": 2, + "special": 3, + "length": 2, + "freeze": 17 + }, + { + "id": 557, + "num": 15, + "color": 2, + "special": 3, + "length": 0, + "freeze": 17 + }, + { + "id": 558, + "num": 12, + "color": 9, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 559, + "num": 14, + "color": 9, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 560, + "num": 16, + "color": 5, + "special": 3, + "length": 1, + "freeze": 5 + }, + { + "id": 561, + "num": 11, + "color": 4, + "special": 3, + "length": 1, + "freeze": 3 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level369.json.meta b/assets/custom/Json/level369.json.meta new file mode 100644 index 0000000..af39a7f --- /dev/null +++ b/assets/custom/Json/level369.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d8bb4469-4ad7-4735-b99f-a498613e17b8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level37.json b/assets/custom/Json/level37.json new file mode 100644 index 0000000..5a67497 --- /dev/null +++ b/assets/custom/Json/level37.json @@ -0,0 +1,317 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "37", + "map": [ + 9, + 11 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 5, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 1, + "type": 5, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 1, + "type": 5, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 4, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "freezeTime": 4, + "id": 300 + }, + { + "block": 18, + "color": 5, + "type": 4, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "freezeTime": 5, + "id": 310 + }, + { + "block": 18, + "color": 1, + "type": 4, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "freezeTime": 6, + "id": 320 + }, + { + "block": 18, + "color": 8, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 7, + "id": 330 + }, + { + "block": 18, + "color": 5, + "type": 4, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "freezeTime": 8, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 16, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 20, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 23, + "color": 1, + "special": 1, + "length": 1 + }, + { + "id": 4, + "num": 30, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 31, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 32, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 12, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 14, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 22, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 6, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level37.json.meta b/assets/custom/Json/level37.json.meta new file mode 100644 index 0000000..d714815 --- /dev/null +++ b/assets/custom/Json/level37.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7271b947-0876-411a-816b-d6bb158d1490", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level370.json b/assets/custom/Json/level370.json new file mode 100644 index 0000000..395a707 --- /dev/null +++ b/assets/custom/Json/level370.json @@ -0,0 +1,417 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 1, + "y": 1, + "color": "10" + }, + { + "x": 6, + "y": 1, + "color": "5" + }, + { + "x": 4, + "y": 6, + "color": "7" + }, + { + "x": 3, + "y": 6, + "color": "2" + } + ], + "id": "544", + "map": [ + 8, + 10 + ], + "time": 165, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 545, + "num": 5, + "color": 10, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 546, + "num": 6, + "color": 10, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 547, + "num": 3, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 548, + "num": 4, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 549, + "num": 1, + "color": 9, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 550, + "num": 2, + "color": 9, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 551, + "num": 22, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 552, + "num": 23, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 553, + "num": 24, + "color": 5, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 554, + "num": 25, + "color": 5, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 555, + "num": 26, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 556, + "num": 27, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 557, + "num": 14, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 558, + "num": 12, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level370.json.meta b/assets/custom/Json/level370.json.meta new file mode 100644 index 0000000..3db2970 --- /dev/null +++ b/assets/custom/Json/level370.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "583612ff-d5d8-4c13-89a9-be66a03b30bb", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level371.json b/assets/custom/Json/level371.json new file mode 100644 index 0000000..1a2caf0 --- /dev/null +++ b/assets/custom/Json/level371.json @@ -0,0 +1,379 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "545", + "map": [ + 9, + 9 + ], + "time": 90, + "gap": [ + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 16, + "color": 5, + "type": 4, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "freezeTime": 14, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "boomTime": 20, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 546, + "num": 2, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 547, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 548, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 549, + "num": 10, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 550, + "num": 26, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 551, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 552, + "num": 21, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 553, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 554, + "num": 22, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 555, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 556, + "num": 29, + "color": 8, + "special": 3, + "length": 2, + "freeze": 3 + }, + { + "id": 557, + "num": 30, + "color": 8, + "special": 3, + "length": 0, + "freeze": 3 + }, + { + "id": 558, + "num": 5, + "color": 10, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 559, + "num": 6, + "color": 10, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 560, + "num": 0, + "color": 9, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 561, + "num": 1, + "color": 9, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 562, + "num": 9, + "color": 7, + "special": 3, + "length": 1, + "freeze": 11 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level371.json.meta b/assets/custom/Json/level371.json.meta new file mode 100644 index 0000000..6b7ed4d --- /dev/null +++ b/assets/custom/Json/level371.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "925b4e29-c8af-495d-86ea-53bb81e42618", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level372.json b/assets/custom/Json/level372.json new file mode 100644 index 0000000..5077ecf --- /dev/null +++ b/assets/custom/Json/level372.json @@ -0,0 +1,404 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 5, + "color": "10" + }, + { + "x": 4, + "y": 4, + "color": "10" + }, + { + "x": 5, + "y": 4, + "color": "10" + }, + { + "x": 3, + "y": 4, + "color": "10" + } + ], + "id": "546", + "map": [ + 9, + 9 + ], + "time": 95, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "boomTime": 18, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 6, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "boomTime": 15, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 547, + "num": 11, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 548, + "num": 15, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 549, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 550, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 551, + "num": 10, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 552, + "num": 12, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 553, + "num": 4, + "color": 2, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 554, + "num": 5, + "color": 2, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 555, + "num": 16, + "color": 10, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 556, + "num": 18, + "color": 10, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 557, + "num": 25, + "color": 1, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 558, + "num": 26, + "color": 1, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 559, + "num": 21, + "color": 4, + "special": 3, + "length": 2, + "freeze": 14 + }, + { + "id": 560, + "num": 22, + "color": 4, + "special": 3, + "length": 0, + "freeze": 14 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level372.json.meta b/assets/custom/Json/level372.json.meta new file mode 100644 index 0000000..38623b6 --- /dev/null +++ b/assets/custom/Json/level372.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "534025e3-3b5b-4f95-aca2-daa075d6a8ed", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level373.json b/assets/custom/Json/level373.json new file mode 100644 index 0000000..8262a59 --- /dev/null +++ b/assets/custom/Json/level373.json @@ -0,0 +1,509 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "547", + "map": [ + 9, + 9 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 510 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 520 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 530 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 540 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "freezeTime": 10, + "id": 550 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "freezeTime": 19, + "id": 570 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 15, + "id": 470 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 490 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 490 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 500 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 510 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 520 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 530 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 540 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 550 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 560 + }, + { + "block": 0, + "color": 9, + "type": 6, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "boomTime": 28, + "id": 570 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 548, + "num": 8, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 549, + "num": 4, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 550, + "num": 12, + "color": 9, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 551, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 552, + "num": 20, + "color": 10, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 553, + "num": 3, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 554, + "num": 19, + "color": 6, + "special": 3, + "length": 1, + "freeze": 7 + }, + { + "id": 555, + "num": 15, + "color": 4, + "special": 3, + "length": 1, + "freeze": 11 + }, + { + "id": 556, + "num": 11, + "color": 5, + "special": 3, + "length": 1, + "freeze": 16 + }, + { + "id": 557, + "num": 7, + "color": 1, + "special": 3, + "length": 1, + "freeze": 18 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level373.json.meta b/assets/custom/Json/level373.json.meta new file mode 100644 index 0000000..ef71c80 --- /dev/null +++ b/assets/custom/Json/level373.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a024294a-ccda-442b-b2c8-0a496b3580c5", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level374.json b/assets/custom/Json/level374.json new file mode 100644 index 0000000..fe948c4 --- /dev/null +++ b/assets/custom/Json/level374.json @@ -0,0 +1,453 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "548", + "map": [ + 10, + 8 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 450 + }, + { + "block": 5, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "lockTime": 6, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 549, + "num": 17, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 550, + "num": 19, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 551, + "num": 9, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 552, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 553, + "num": 25, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 554, + "num": 26, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 555, + "num": 3, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 556, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 557, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 558, + "num": 23, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 559, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 560, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 561, + "num": 12, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 562, + "num": 14, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 563, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 564, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 565, + "num": 8, + "color": 8, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 566, + "num": 10, + "color": 8, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 567, + "num": 16, + "color": 2, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 568, + "num": 18, + "color": 2, + "special": 3, + "length": 0, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level374.json.meta b/assets/custom/Json/level374.json.meta new file mode 100644 index 0000000..dcc917b --- /dev/null +++ b/assets/custom/Json/level374.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "761024cd-69a8-407c-8824-efbc00c94954", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level375.json b/assets/custom/Json/level375.json new file mode 100644 index 0000000..6d9f194 --- /dev/null +++ b/assets/custom/Json/level375.json @@ -0,0 +1,352 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "375", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 8, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 6, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 3, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "lockTime": 5, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 376, + "num": 2, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 377, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 378, + "num": 4, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 379, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 380, + "num": 9, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 381, + "num": 13, + "color": 1, + "special": 5, + "length": 2 + }, + { + "id": 382, + "num": 15, + "color": 1, + "special": 5, + "length": 0 + }, + { + "id": 383, + "num": 23, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 384, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 385, + "num": 16, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 386, + "num": 12, + "color": 3, + "special": 5, + "length": 2 + }, + { + "id": 387, + "num": 14, + "color": 3, + "special": 5, + "length": 0 + }, + { + "id": 388, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 389, + "num": 10, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level375.json.meta b/assets/custom/Json/level375.json.meta new file mode 100644 index 0000000..44cac9c --- /dev/null +++ b/assets/custom/Json/level375.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3d0e9319-b63e-4aca-a77a-5513528265a0", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level376.json b/assets/custom/Json/level376.json new file mode 100644 index 0000000..a601fa0 --- /dev/null +++ b/assets/custom/Json/level376.json @@ -0,0 +1,449 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "376", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "boomTime": 20, + "id": 460 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 16, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 377, + "num": 1, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 378, + "num": 3, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 379, + "num": 4, + "color": 9, + "special": 4, + "length": 2 + }, + { + "id": 380, + "num": 5, + "color": 9, + "special": 4, + "length": 0 + }, + { + "id": 381, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 382, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 383, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 384, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 385, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 386, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 387, + "num": 23, + "color": 2, + "special": 4, + "length": 1 + }, + { + "id": 388, + "num": 21, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 389, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 390, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 391, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 392, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 393, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 394, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level376.json.meta b/assets/custom/Json/level376.json.meta new file mode 100644 index 0000000..af19ae6 --- /dev/null +++ b/assets/custom/Json/level376.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "af347d48-9bdb-4d1e-8a8f-f94ba504146e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level377.json b/assets/custom/Json/level377.json new file mode 100644 index 0000000..081d635 --- /dev/null +++ b/assets/custom/Json/level377.json @@ -0,0 +1,413 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "377", + "map": [ + 8, + 10 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 0, + "color": 9, + "type": 6, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "boomTime": 28, + "id": 440 + }, + { + "block": 0, + "color": 5, + "type": 6, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "boomTime": 20, + "id": 450 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "freezeTime": 8, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 378, + "num": 1, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 379, + "num": 4, + "color": 4, + "special": 4, + "length": 2 + }, + { + "id": 380, + "num": 5, + "color": 4, + "special": 4, + "length": 0 + }, + { + "id": 381, + "num": 11, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 382, + "num": 13, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 383, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 384, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 385, + "num": 24, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 386, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 387, + "num": 21, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 388, + "num": 14, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 389, + "num": 16, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 390, + "num": 10, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 391, + "num": 12, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level377.json.meta b/assets/custom/Json/level377.json.meta new file mode 100644 index 0000000..4e33a80 --- /dev/null +++ b/assets/custom/Json/level377.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d0d3352a-4a5b-4bc2-89ae-abf199c45df3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level378.json b/assets/custom/Json/level378.json new file mode 100644 index 0000000..7134691 --- /dev/null +++ b/assets/custom/Json/level378.json @@ -0,0 +1,527 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "378", + "map": [ + 10, + 12 + ], + "time": 150, + "gap": [ + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": 480, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 4, + "type": 9, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 450 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 460 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 470 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 480 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 490 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 500 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 379, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 380, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 381, + "num": 5, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 382, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 383, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 384, + "num": 13, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 385, + "num": 19, + "color": 3, + "special": 4, + "length": 2 + }, + { + "id": 386, + "num": 21, + "color": 3, + "special": 4, + "length": 0 + }, + { + "id": 387, + "num": 27, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 388, + "num": 35, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 389, + "num": 36, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 390, + "num": 37, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 391, + "num": 32, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 392, + "num": 33, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 393, + "num": 26, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 394, + "num": 18, + "color": 5, + "special": 4, + "length": 2 + }, + { + "id": 395, + "num": 20, + "color": 5, + "special": 4, + "length": 0 + }, + { + "id": 396, + "num": 12, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level378.json.meta b/assets/custom/Json/level378.json.meta new file mode 100644 index 0000000..c98184e --- /dev/null +++ b/assets/custom/Json/level378.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c74d28b5-f4ea-47b8-adab-28663da2f3be", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level379.json b/assets/custom/Json/level379.json new file mode 100644 index 0000000..7561bfb --- /dev/null +++ b/assets/custom/Json/level379.json @@ -0,0 +1,587 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "379", + "map": [ + 11, + 11 + ], + "time": 125, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 410 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 440 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": 60, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -420, + "y": -300, + "z": 0 + }, + "id": 530 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 540 + }, + { + "block": 3, + "color": 3, + "type": 7, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 550 + }, + { + "block": 1, + "color": 9, + "type": 7, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 560 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 570 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 580 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 590 + }, + { + "block": 1, + "color": 10, + "type": 4, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "freezeTime": 8, + "id": 600 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "freezeTime": 15, + "id": 610 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 380, + "num": 1, + "color": 1, + "special": 4, + "length": 2 + }, + { + "id": 381, + "num": 2, + "color": 1, + "special": 4, + "length": 0 + }, + { + "id": 382, + "num": 6, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 383, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 384, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 385, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 386, + "num": 22, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 387, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 388, + "num": 33, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 389, + "num": 34, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 390, + "num": 28, + "color": 9, + "special": 4, + "length": 2 + }, + { + "id": 391, + "num": 29, + "color": 9, + "special": 4, + "length": 0 + }, + { + "id": 392, + "num": 21, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 393, + "num": 23, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 394, + "num": 11, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 395, + "num": 13, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level379.json.meta b/assets/custom/Json/level379.json.meta new file mode 100644 index 0000000..96b0c2c --- /dev/null +++ b/assets/custom/Json/level379.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2299600f-530d-479f-8e92-1a13ae866532", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level38.json b/assets/custom/Json/level38.json new file mode 100644 index 0000000..e161f46 --- /dev/null +++ b/assets/custom/Json/level38.json @@ -0,0 +1,260 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "38", + "map": [ + 8, + 8 + ], + "time": 230, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 2, + "type": 5, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 2, + "type": 5, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 14, + "color": 2, + "special": 1, + "length": 2 + }, + { + "id": 1, + "num": 16, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 2, + "num": 10, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 6, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 8, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 2, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 20, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 21, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level38.json.meta b/assets/custom/Json/level38.json.meta new file mode 100644 index 0000000..2468346 --- /dev/null +++ b/assets/custom/Json/level38.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c6199a6f-b313-437d-8b9c-165e1466b659", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level380.json b/assets/custom/Json/level380.json new file mode 100644 index 0000000..8a68cb5 --- /dev/null +++ b/assets/custom/Json/level380.json @@ -0,0 +1,389 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 4, + "color": "10" + }, + { + "x": 5, + "y": 4, + "color": "10" + } + ], + "id": "380", + "map": [ + 8, + 10 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 17, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 16, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 6, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "boomTime": 21, + "id": 410 + }, + { + "block": 0, + "color": 7, + "type": 6, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "boomTime": 5, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 381, + "num": 1, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 382, + "num": 4, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 383, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 384, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 385, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 386, + "num": 15, + "color": 3, + "special": 5, + "length": 2 + }, + { + "id": 387, + "num": 17, + "color": 3, + "special": 5, + "length": 0 + }, + { + "id": 388, + "num": 19, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 389, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 390, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 391, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 392, + "num": 16, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 393, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 394, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 395, + "num": 8, + "color": 9, + "special": 5, + "length": 2 + }, + { + "id": 396, + "num": 10, + "color": 9, + "special": 5, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level380.json.meta b/assets/custom/Json/level380.json.meta new file mode 100644 index 0000000..09876b8 --- /dev/null +++ b/assets/custom/Json/level380.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7574de35-212b-4366-a729-be700c85ce8f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level381.json b/assets/custom/Json/level381.json new file mode 100644 index 0000000..57001ae --- /dev/null +++ b/assets/custom/Json/level381.json @@ -0,0 +1,427 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "381", + "map": [ + 11, + 11 + ], + "time": 150, + "gap": [ + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 16, + "color": 10, + "type": 1, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "stacking": 4, + "id": 360 + }, + { + "block": 17, + "color": 2, + "type": 1, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "stacking": 6, + "id": 370 + }, + { + "block": 20, + "color": 8, + "type": 1, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "stacking": 10, + "id": 380 + }, + { + "block": 22, + "color": 1, + "type": 1, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "stacking": 3, + "id": 390 + }, + { + "block": 22, + "color": 5, + "type": 3, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "lockTime": 6, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 382, + "num": 1, + "color": 3, + "special": 4, + "length": 2 + }, + { + "id": 383, + "num": 2, + "color": 3, + "special": 4, + "length": 0 + }, + { + "id": 384, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 385, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 386, + "num": 8, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 387, + "num": 10, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 388, + "num": 18, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 389, + "num": 20, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 390, + "num": 33, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 391, + "num": 34, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 392, + "num": 30, + "color": 5, + "special": 4, + "length": 2 + }, + { + "id": 393, + "num": 31, + "color": 5, + "special": 4, + "length": 0 + }, + { + "id": 394, + "num": 21, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 395, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 396, + "num": 15, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 397, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 398, + "num": 9, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level381.json.meta b/assets/custom/Json/level381.json.meta new file mode 100644 index 0000000..3ec1f43 --- /dev/null +++ b/assets/custom/Json/level381.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "df2e5e91-4431-45c0-90ac-af3358c29ff1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level382.json b/assets/custom/Json/level382.json new file mode 100644 index 0000000..496946e --- /dev/null +++ b/assets/custom/Json/level382.json @@ -0,0 +1,538 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "382", + "map": [ + 10, + 12 + ], + "time": 230, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 440 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 520 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 12, + "id": 530 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 17, + "id": 540 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 383, + "num": 1, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 384, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 385, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 386, + "num": 6, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 387, + "num": 7, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 388, + "num": 9, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 389, + "num": 15, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 390, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 391, + "num": 19, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 392, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 393, + "num": 35, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 394, + "num": 32, + "color": 7, + "special": 4, + "length": 2 + }, + { + "id": 395, + "num": 33, + "color": 7, + "special": 4, + "length": 0 + }, + { + "id": 396, + "num": 27, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 397, + "num": 28, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 398, + "num": 29, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 399, + "num": 18, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 400, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 401, + "num": 14, + "color": 1, + "special": 4, + "length": 2 + }, + { + "id": 402, + "num": 16, + "color": 1, + "special": 4, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level382.json.meta b/assets/custom/Json/level382.json.meta new file mode 100644 index 0000000..607b48e --- /dev/null +++ b/assets/custom/Json/level382.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3618413b-cd03-49c1-b5ce-c0d1e44bd3c3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level383.json b/assets/custom/Json/level383.json new file mode 100644 index 0000000..070fd2c --- /dev/null +++ b/assets/custom/Json/level383.json @@ -0,0 +1,538 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 6, + "color": "10" + }, + { + "x": 4, + "y": 6, + "color": "10" + }, + { + "x": 3, + "y": 5, + "color": "10" + }, + { + "x": 4, + "y": 5, + "color": "10" + }, + { + "x": 3, + "y": 4, + "color": "10" + }, + { + "x": 4, + "y": 4, + "color": "10" + }, + { + "x": 6, + "y": 6, + "color": "3" + }, + { + "x": 7, + "y": 6, + "color": "3" + }, + { + "x": 6, + "y": 5, + "color": "3" + }, + { + "x": 7, + "y": 5, + "color": "3" + }, + { + "x": 6, + "y": 4, + "color": "3" + }, + { + "x": 7, + "y": 4, + "color": "3" + } + ], + "id": "383", + "map": [ + 11, + 11 + ], + "time": 135, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 490 + }, + { + "block": 8, + "color": 10, + "type": 1, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "stacking": 9, + "id": 500 + }, + { + "block": 12, + "color": 3, + "type": 1, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "stacking": 7, + "id": 510 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 384, + "num": 1, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 385, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 386, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 387, + "num": 5, + "color": 6, + "special": 4, + "length": 2 + }, + { + "id": 388, + "num": 6, + "color": 6, + "special": 4, + "length": 0 + }, + { + "id": 389, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 390, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 391, + "num": 22, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 392, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 393, + "num": 32, + "color": 8, + "special": 4, + "length": 2 + }, + { + "id": 394, + "num": 33, + "color": 8, + "special": 4, + "length": 0 + }, + { + "id": 395, + "num": 28, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 396, + "num": 29, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 397, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 398, + "num": 21, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 399, + "num": 13, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level383.json.meta b/assets/custom/Json/level383.json.meta new file mode 100644 index 0000000..4c76736 --- /dev/null +++ b/assets/custom/Json/level383.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ea2820e8-9ecd-46e6-8436-85b7f7b43d68", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level384.json b/assets/custom/Json/level384.json new file mode 100644 index 0000000..1b077ad --- /dev/null +++ b/assets/custom/Json/level384.json @@ -0,0 +1,575 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 6, + "color": "8" + }, + { + "x": 4, + "y": 5, + "color": "8" + }, + { + "x": 5, + "y": 6, + "color": "8" + }, + { + "x": 5, + "y": 5, + "color": "8" + }, + { + "x": 6, + "y": 6, + "color": "8" + }, + { + "x": 6, + "y": 5, + "color": "8" + } + ], + "id": "384", + "map": [ + 11, + 11 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 18, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 430 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 470 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 480 + }, + { + "block": 1, + "color": 4, + "type": 9, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 490 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 500 + }, + { + "block": 1, + "color": 4, + "type": 9, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 510 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 520 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 530 + }, + { + "block": 1, + "color": 7, + "type": 9, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 540 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 550 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 560 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 570 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 384, + "num": 3, + "color": 7, + "special": 4, + "length": 3 + }, + { + "id": 385, + "num": 4, + "color": 7, + "special": 4, + "length": 0 + }, + { + "id": 386, + "num": 5, + "color": 7, + "special": 4, + "length": 0 + }, + { + "id": 387, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 388, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 389, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 390, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 391, + "num": 30, + "color": 8, + "special": 4, + "length": 3 + }, + { + "id": 392, + "num": 31, + "color": 8, + "special": 4, + "length": 0 + }, + { + "id": 393, + "num": 32, + "color": 8, + "special": 4, + "length": 0 + }, + { + "id": 394, + "num": 21, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 395, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 396, + "num": 17, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 397, + "num": 11, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 398, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level384.json.meta b/assets/custom/Json/level384.json.meta new file mode 100644 index 0000000..cf2d01a --- /dev/null +++ b/assets/custom/Json/level384.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "253c0c6b-918e-4a3e-910d-5478a5d26dc8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level385.json b/assets/custom/Json/level385.json new file mode 100644 index 0000000..cf8fa49 --- /dev/null +++ b/assets/custom/Json/level385.json @@ -0,0 +1,455 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "385", + "map": [ + 9, + 11 + ], + "time": 150, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 14, + "color": 5, + "type": 3, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "lockTime": 8, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 7, + "type": 7, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 460 + }, + { + "block": 22, + "color": 5, + "type": 4, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "freezeTime": 6, + "id": 470 + }, + { + "block": 21, + "color": 4, + "type": 4, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "freezeTime": 6, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 386, + "num": 1, + "color": 7, + "special": 5, + "length": 2 + }, + { + "id": 387, + "num": 2, + "color": 7, + "special": 5, + "length": 0 + }, + { + "id": 388, + "num": 4, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 389, + "num": 16, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 390, + "num": 18, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 391, + "num": 20, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 392, + "num": 34, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 393, + "num": 31, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 394, + "num": 32, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 395, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 396, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 397, + "num": 13, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 398, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level385.json.meta b/assets/custom/Json/level385.json.meta new file mode 100644 index 0000000..18b925a --- /dev/null +++ b/assets/custom/Json/level385.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c2c294e5-93ac-4cc6-a5e5-8e698c3c60c5", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level386.json b/assets/custom/Json/level386.json new file mode 100644 index 0000000..7fed74e --- /dev/null +++ b/assets/custom/Json/level386.json @@ -0,0 +1,402 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "386", + "map": [ + 9, + 9 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 21, + "color": 7, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 410 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 6, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "boomTime": 20, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 387, + "num": 1, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 388, + "num": 2, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 389, + "num": 4, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 390, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 391, + "num": 12, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 392, + "num": 14, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 393, + "num": 16, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 394, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 395, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 396, + "num": 22, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 397, + "num": 23, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 398, + "num": 17, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 399, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 400, + "num": 11, + "color": 5, + "special": 5, + "length": 3 + }, + { + "id": 401, + "num": 13, + "color": 5, + "special": 5, + "length": 0 + }, + { + "id": 402, + "num": 15, + "color": 5, + "special": 5, + "length": 0 + }, + { + "id": 403, + "num": 7, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 404, + "num": 9, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level386.json.meta b/assets/custom/Json/level386.json.meta new file mode 100644 index 0000000..d53fdc5 --- /dev/null +++ b/assets/custom/Json/level386.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f86e1d46-ec8f-4912-9578-6b251b2ddafb", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level387.json b/assets/custom/Json/level387.json new file mode 100644 index 0000000..8a54ef1 --- /dev/null +++ b/assets/custom/Json/level387.json @@ -0,0 +1,354 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 4, + "color": "3" + }, + { + "x": 3, + "y": 5, + "color": "3" + }, + { + "x": 3, + "y": 6, + "color": "3" + } + ], + "id": "391", + "map": [ + 7, + 11 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 6, + "type": 5, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 392, + "num": 2, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 393, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 394, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 395, + "num": 5, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 396, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 397, + "num": 10, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 398, + "num": 12, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 399, + "num": 14, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 400, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 401, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 402, + "num": 24, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 403, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 404, + "num": 21, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 405, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 406, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 407, + "num": 15, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 408, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 409, + "num": 13, + "color": 6, + "special": 1, + "length": 1 + }, + { + "id": 410, + "num": 9, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 411, + "num": 11, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level387.json.meta b/assets/custom/Json/level387.json.meta new file mode 100644 index 0000000..e445855 --- /dev/null +++ b/assets/custom/Json/level387.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d5526276-3777-4722-ac6f-989cebef03c4", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level388.json b/assets/custom/Json/level388.json new file mode 100644 index 0000000..13007a0 --- /dev/null +++ b/assets/custom/Json/level388.json @@ -0,0 +1,382 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "388", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "stacking": 8, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 1, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "stacking": 10, + "id": 380 + }, + { + "block": 4, + "color": 9, + "type": 1, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "stacking": 1, + "id": 390 + }, + { + "block": 5, + "color": 5, + "type": 4, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "freezeTime": 10, + "id": 410 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "freezeTime": 4, + "id": 420 + }, + { + "block": 4, + "color": 1, + "type": 1, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "stacking": 9, + "id": 430 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 89, + "num": 1, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 90, + "num": 5, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 91, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 92, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 93, + "num": 13, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 94, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 95, + "num": 26, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 96, + "num": 20, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 97, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 98, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 99, + "num": 16, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 100, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 101, + "num": 12, + "color": 3, + "special": 5, + "length": 2 + }, + { + "id": 102, + "num": 14, + "color": 3, + "special": 5, + "length": 0 + }, + { + "id": 103, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 104, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level388.json.meta b/assets/custom/Json/level388.json.meta new file mode 100644 index 0000000..f558762 --- /dev/null +++ b/assets/custom/Json/level388.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "79913bf2-42f7-41a5-9709-c81506f6536e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level389.json b/assets/custom/Json/level389.json new file mode 100644 index 0000000..dca5102 --- /dev/null +++ b/assets/custom/Json/level389.json @@ -0,0 +1,424 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "389", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "lockTime": 4, + "id": 380 + }, + { + "block": 2, + "color": 10, + "type": 3, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "lockTime": 8, + "id": 380 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 390 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 410 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 430 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 450 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 390, + "num": 1, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 391, + "num": 3, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 392, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 393, + "num": 6, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 394, + "num": 11, + "color": 8, + "special": 5, + "length": 2 + }, + { + "id": 395, + "num": 13, + "color": 8, + "special": 5, + "length": 0 + }, + { + "id": 396, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 397, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 398, + "num": 26, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 399, + "num": 23, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 400, + "num": 24, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 401, + "num": 21, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 402, + "num": 14, + "color": 7, + "special": 5, + "length": 2 + }, + { + "id": 403, + "num": 16, + "color": 7, + "special": 5, + "length": 0 + }, + { + "id": 404, + "num": 10, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 405, + "num": 12, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level389.json.meta b/assets/custom/Json/level389.json.meta new file mode 100644 index 0000000..8d178e7 --- /dev/null +++ b/assets/custom/Json/level389.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0f9afb7d-bcda-4f00-b6d7-64fc46126457", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level39.json b/assets/custom/Json/level39.json new file mode 100644 index 0000000..6560544 --- /dev/null +++ b/assets/custom/Json/level39.json @@ -0,0 +1,408 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "39", + "map": [ + 9, + 12 + ], + "time": 210, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 3, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 9, + "type": 1, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "stacking": 5, + "id": 370 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 3, + "type": 1, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "stacking": 8, + "id": 430 + }, + { + "block": 18, + "color": 7, + "type": 4, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "freezeTime": 5, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 14, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 16, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 28, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 29, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 3, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 10, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 13, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 15, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 19, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 22, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level39.json.meta b/assets/custom/Json/level39.json.meta new file mode 100644 index 0000000..fa34a15 --- /dev/null +++ b/assets/custom/Json/level39.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5a13c40d-c6ea-4902-a528-aa45a249bbd0", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level390.json b/assets/custom/Json/level390.json new file mode 100644 index 0000000..a4d8a8c --- /dev/null +++ b/assets/custom/Json/level390.json @@ -0,0 +1,386 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 5, + "color": "6" + }, + { + "x": 4, + "y": 5, + "color": "6" + }, + { + "x": 5, + "y": 5, + "color": "6" + } + ], + "id": "390", + "map": [ + 9, + 9 + ], + "time": 100, + "gap": [ + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 6, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "lockTime": 6, + "id": 360 + }, + { + "block": 23, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "lockTime": 6, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "freezeTime": 15, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 391, + "num": 1, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 392, + "num": 2, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 393, + "num": 4, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 394, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 395, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 396, + "num": 10, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 397, + "num": 12, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 398, + "num": 17, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 399, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 400, + "num": 26, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 401, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 402, + "num": 23, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 403, + "num": 24, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 404, + "num": 25, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 405, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 406, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 407, + "num": 9, + "color": 7, + "special": 5, + "length": 2 + }, + { + "id": 408, + "num": 11, + "color": 7, + "special": 5, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level390.json.meta b/assets/custom/Json/level390.json.meta new file mode 100644 index 0000000..0b7054e --- /dev/null +++ b/assets/custom/Json/level390.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "98680d45-c19d-431d-95bb-08843622aed7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level391.json b/assets/custom/Json/level391.json new file mode 100644 index 0000000..9d8235d --- /dev/null +++ b/assets/custom/Json/level391.json @@ -0,0 +1,513 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "399", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 1, + "type": 5, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 7, + "type": 5, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 3, + "type": 3, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "lockTime": 5, + "id": 470 + }, + { + "block": 5, + "color": 10, + "type": 6, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "boomTime": 22, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 400, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 401, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 402, + "num": 3, + "color": 7, + "special": 1, + "length": 2 + }, + { + "id": 403, + "num": 4, + "color": 7, + "special": 1, + "length": 0 + }, + { + "id": 404, + "num": 6, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 405, + "num": 7, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 406, + "num": 15, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 407, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 408, + "num": 19, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 409, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 410, + "num": 34, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 411, + "num": 35, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 412, + "num": 31, + "color": 1, + "special": 1, + "length": 2 + }, + { + "id": 413, + "num": 32, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 414, + "num": 28, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 415, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 416, + "num": 18, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 417, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 418, + "num": 14, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 419, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level391.json.meta b/assets/custom/Json/level391.json.meta new file mode 100644 index 0000000..83ed133 --- /dev/null +++ b/assets/custom/Json/level391.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "97733c33-535e-45f7-8846-2c57203c9c58", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level392.json b/assets/custom/Json/level392.json new file mode 100644 index 0000000..0313d06 --- /dev/null +++ b/assets/custom/Json/level392.json @@ -0,0 +1,333 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "392", + "map": [ + 8, + 10 + ], + "time": 115, + "gap": [ + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 1, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "stacking": 5, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 1, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "stacking": 9, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 1, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "stacking": 1, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 1, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "stacking": 6, + "id": 360 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "freezeTime": 15, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 393, + "num": 1, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 394, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 395, + "num": 3, + "color": 8, + "special": 5, + "length": 3 + }, + { + "id": 396, + "num": 4, + "color": 8, + "special": 5, + "length": 0 + }, + { + "id": 397, + "num": 5, + "color": 8, + "special": 5, + "length": 0 + }, + { + "id": 398, + "num": 11, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 399, + "num": 21, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 400, + "num": 27, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 401, + "num": 28, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 402, + "num": 29, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 403, + "num": 25, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 404, + "num": 26, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 405, + "num": 22, + "color": 6, + "special": 5, + "length": 1 + }, + { + "id": 406, + "num": 8, + "color": 3, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level392.json.meta b/assets/custom/Json/level392.json.meta new file mode 100644 index 0000000..15d2794 --- /dev/null +++ b/assets/custom/Json/level392.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8229b793-a522-44b5-96d5-67cc1bead4b2", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level393.json b/assets/custom/Json/level393.json new file mode 100644 index 0000000..1f5ce9b --- /dev/null +++ b/assets/custom/Json/level393.json @@ -0,0 +1,464 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 6, + "y": 6, + "color": "6" + }, + { + "x": 6, + "y": 5, + "color": "6" + }, + { + "x": 5, + "y": 6, + "color": "6" + }, + { + "x": 5, + "y": 5, + "color": "6" + }, + { + "x": 4, + "y": 6, + "color": "6" + }, + { + "x": 4, + "y": 5, + "color": "6" + } + ], + "id": "393", + "map": [ + 9, + 12 + ], + "time": 135, + "gap": [ + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 4, + "type": 3, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 390 + }, + { + "block": 23, + "color": 4, + "type": 3, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 400 + }, + { + "block": 23, + "color": 4, + "type": 3, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "lockTime": 6, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 394, + "num": 3, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 395, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 396, + "num": 5, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 397, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 398, + "num": 10, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 399, + "num": 12, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 400, + "num": 15, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 401, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 402, + "num": 24, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 403, + "num": 32, + "color": 4, + "special": 5, + "length": 2 + }, + { + "id": 404, + "num": 33, + "color": 4, + "special": 5, + "length": 0 + }, + { + "id": 405, + "num": 28, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 406, + "num": 29, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 407, + "num": 21, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 408, + "num": 25, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 409, + "num": 16, + "color": 8, + "special": 5, + "length": 2 + }, + { + "id": 410, + "num": 18, + "color": 8, + "special": 5, + "length": 0 + }, + { + "id": 411, + "num": 11, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level393.json.meta b/assets/custom/Json/level393.json.meta new file mode 100644 index 0000000..0b14490 --- /dev/null +++ b/assets/custom/Json/level393.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0a207a20-f0e4-4f3e-86cb-efc0f627c058", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level394.json b/assets/custom/Json/level394.json new file mode 100644 index 0000000..e557e18 --- /dev/null +++ b/assets/custom/Json/level394.json @@ -0,0 +1,360 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "394", + "map": [ + 8, + 9 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 8, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 395, + "num": 2, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 396, + "num": 5, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 397, + "num": 10, + "color": 9, + "special": 4, + "length": 2 + }, + { + "id": 398, + "num": 12, + "color": 9, + "special": 4, + "length": 0 + }, + { + "id": 399, + "num": 14, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 400, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 401, + "num": 24, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 402, + "num": 21, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 403, + "num": 11, + "color": 5, + "special": 4, + "length": 2 + }, + { + "id": 404, + "num": 13, + "color": 5, + "special": 4, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level394.json.meta b/assets/custom/Json/level394.json.meta new file mode 100644 index 0000000..58cbf0d --- /dev/null +++ b/assets/custom/Json/level394.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c092ad51-3677-4b55-905d-73a3a49fa367", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level395.json b/assets/custom/Json/level395.json new file mode 100644 index 0000000..0baef5a --- /dev/null +++ b/assets/custom/Json/level395.json @@ -0,0 +1,384 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "395", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 9, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 396, + "num": 1, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 397, + "num": 4, + "color": 1, + "special": 5, + "length": 2 + }, + { + "id": 398, + "num": 5, + "color": 1, + "special": 5, + "length": 0 + }, + { + "id": 399, + "num": 6, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 400, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 401, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 402, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 403, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 404, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 405, + "num": 26, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 406, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 407, + "num": 24, + "color": 10, + "special": 5, + "length": 2 + }, + { + "id": 408, + "num": 25, + "color": 10, + "special": 5, + "length": 0 + }, + { + "id": 409, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 410, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 411, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level395.json.meta b/assets/custom/Json/level395.json.meta new file mode 100644 index 0000000..ea88490 --- /dev/null +++ b/assets/custom/Json/level395.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e623fd50-4340-4004-8a31-8cf9d43d0998", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level396.json b/assets/custom/Json/level396.json new file mode 100644 index 0000000..4b30f3c --- /dev/null +++ b/assets/custom/Json/level396.json @@ -0,0 +1,321 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "396", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 1, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "stacking": 10, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 6, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 1, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "stacking": 9, + "id": 340 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "stacking": 8, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 397, + "num": 1, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 398, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 399, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 400, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 401, + "num": 9, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 402, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 403, + "num": 13, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 404, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 405, + "num": 21, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 406, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 407, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 408, + "num": 19, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 409, + "num": 14, + "color": 2, + "special": 3, + "length": 2, + "freeze": 13 + }, + { + "id": 410, + "num": 16, + "color": 2, + "special": 3, + "length": 0, + "freeze": 13 + }, + { + "id": 411, + "num": 12, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 412, + "num": 10, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 413, + "num": 6, + "color": 9, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 414, + "num": 8, + "color": 9, + "special": 3, + "length": 0, + "freeze": 7 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level396.json.meta b/assets/custom/Json/level396.json.meta new file mode 100644 index 0000000..6f9b265 --- /dev/null +++ b/assets/custom/Json/level396.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0201b0a9-26ca-4b8d-bf8c-9528c53bdbf0", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level397.json b/assets/custom/Json/level397.json new file mode 100644 index 0000000..659d964 --- /dev/null +++ b/assets/custom/Json/level397.json @@ -0,0 +1,394 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "321", + "map": [ + 8, + 10 + ], + "time": 140, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 11, + "type": 3, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "lockTime": 5, + "id": 210 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 2, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 322, + "num": 0, + "color": 1, + "special": 3, + "length": 1, + "freeze": 12 + }, + { + "id": 323, + "num": 2, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 324, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 325, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 326, + "num": 8, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 327, + "num": 11, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 328, + "num": 20, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 329, + "num": 22, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 330, + "num": 25, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 331, + "num": 26, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 332, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 333, + "num": 23, + "color": 4, + "special": 3, + "length": 1, + "freeze": 16 + }, + { + "id": 334, + "num": 21, + "color": 5, + "special": 3, + "length": 1, + "freeze": 8 + }, + { + "id": 335, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 336, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 337, + "num": 7, + "color": 3, + "special": 3, + "length": 1, + "freeze": 5 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level397.json.meta b/assets/custom/Json/level397.json.meta new file mode 100644 index 0000000..5d7690d --- /dev/null +++ b/assets/custom/Json/level397.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "fda8e4a5-463b-4fe0-bf21-492cbde95491", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level398.json b/assets/custom/Json/level398.json new file mode 100644 index 0000000..4b5974e --- /dev/null +++ b/assets/custom/Json/level398.json @@ -0,0 +1,457 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "398", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 5, + "type": 6, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "boomTime": 50, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 399, + "num": 1, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 400, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 401, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 402, + "num": 9, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 403, + "num": 11, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 404, + "num": 13, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 405, + "num": 15, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 406, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 407, + "num": 19, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 408, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 409, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 410, + "num": 21, + "color": 5, + "special": 4, + "length": 1 + }, + { + "id": 411, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 412, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 415, + "num": 12, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 416, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 413, + "num": 8, + "color": 2, + "special": 4, + "length": 2 + }, + { + "id": 414, + "num": 10, + "color": 2, + "special": 4, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level398.json.meta b/assets/custom/Json/level398.json.meta new file mode 100644 index 0000000..b3060c6 --- /dev/null +++ b/assets/custom/Json/level398.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "32f2fbac-e6bb-4142-b3bf-df8907c07e86", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level399.json b/assets/custom/Json/level399.json new file mode 100644 index 0000000..966945d --- /dev/null +++ b/assets/custom/Json/level399.json @@ -0,0 +1,328 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "400", + "map": [ + 8, + 9 + ], + "time": 200, + "gap": [ + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "stacking": 2, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 1, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "stacking": 5, + "id": 330 + }, + { + "block": 1, + "color": 8, + "type": 1, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "stacking": 4, + "id": 340 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "freezeTime": 7, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 401, + "num": 0, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 402, + "num": 1, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 403, + "num": 2, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 404, + "num": 5, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 405, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 406, + "num": 10, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 407, + "num": 18, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 408, + "num": 26, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 409, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 410, + "num": 23, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 411, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 412, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 413, + "num": 14, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 414, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 415, + "num": 19, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 416, + "num": 7, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 417, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 418, + "num": 11, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level399.json.meta b/assets/custom/Json/level399.json.meta new file mode 100644 index 0000000..bb37b52 --- /dev/null +++ b/assets/custom/Json/level399.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3855e647-6e19-4eb0-b5ae-204e0196b44b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level4.json b/assets/custom/Json/level4.json new file mode 100644 index 0000000..b05db9c --- /dev/null +++ b/assets/custom/Json/level4.json @@ -0,0 +1,111 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "4", + "map": [ + 7, + 8 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 230 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 3, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 17, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 7, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 12, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level4.json.meta b/assets/custom/Json/level4.json.meta new file mode 100644 index 0000000..4362182 --- /dev/null +++ b/assets/custom/Json/level4.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e2d961de-5add-4097-a2ba-cc92954a5747", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level40.json b/assets/custom/Json/level40.json new file mode 100644 index 0000000..4ecbef0 --- /dev/null +++ b/assets/custom/Json/level40.json @@ -0,0 +1,371 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "40", + "map": [ + 10, + 11 + ], + "time": 240, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "stacking": 3, + "id": 210 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "stacking": 8, + "id": 220 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 5, + "type": 5, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 1, + "type": 5, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 5, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 5, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 7, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 8, + "type": 8, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 10, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 6, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 18, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 0, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 1, + "num": 14, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 2, + "color": 1, + "special": 1, + "length": 1 + }, + { + "id": 5, + "num": 20, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 24, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 36, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 34, + "color": 2, + "special": 1, + "length": 1 + }, + { + "id": 10, + "num": 15, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 21, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level40.json.meta b/assets/custom/Json/level40.json.meta new file mode 100644 index 0000000..8991d7c --- /dev/null +++ b/assets/custom/Json/level40.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c2861659-2172-4217-8bac-8daaca836f4f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level400.json b/assets/custom/Json/level400.json new file mode 100644 index 0000000..a8ccc0a --- /dev/null +++ b/assets/custom/Json/level400.json @@ -0,0 +1,378 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "400", + "map": [ + 7, + 9 + ], + "time": 125, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 1, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "stacking": 3, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 1, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "stacking": 5, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 1, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "stacking": 3, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 1, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "stacking": 8, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 1, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "stacking": 1, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 1, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "stacking": 1, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 1, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "stacking": 10, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 1, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "stacking": 6, + "id": 380 + }, + { + "block": 20, + "color": 4, + "type": 4, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "freezeTime": 10, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 4, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "freezeTime": 11, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 401, + "num": 1, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 402, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 403, + "num": 5, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 404, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 405, + "num": 8, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 406, + "num": 10, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 407, + "num": 12, + "color": 3, + "special": 5, + "length": 1 + }, + { + "id": 408, + "num": 14, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 409, + "num": 16, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 410, + "num": 22, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 411, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 412, + "num": 18, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 413, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 414, + "num": 13, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 415, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 416, + "num": 11, + "color": 6, + "special": 5, + "length": 1 + }, + { + "id": 417, + "num": 7, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 418, + "num": 9, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level400.json.meta b/assets/custom/Json/level400.json.meta new file mode 100644 index 0000000..d44ba69 --- /dev/null +++ b/assets/custom/Json/level400.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3c71efb6-bf50-43a4-a495-58ab085e1b24", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level401.json b/assets/custom/Json/level401.json new file mode 100644 index 0000000..fa85627 --- /dev/null +++ b/assets/custom/Json/level401.json @@ -0,0 +1,386 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "401", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 7, + "type": 4, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "freezeTime": 5, + "id": 210 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "freezeTime": 9, + "id": 220 + }, + { + "block": 3, + "color": 6, + "type": 8, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 4, + "type": 8, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 8, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 19, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 402, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 403, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 404, + "num": 3, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 405, + "num": 4, + "color": 6, + "special": 4, + "length": 2 + }, + { + "id": 406, + "num": 5, + "color": 6, + "special": 4, + "length": 0 + }, + { + "id": 407, + "num": 9, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 408, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 409, + "num": 19, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 410, + "num": 21, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 411, + "num": 26, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 412, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 413, + "num": 25, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 414, + "num": 22, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 415, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 419, + "num": 15, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 420, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 421, + "num": 20, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 416, + "num": 8, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 417, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 418, + "num": 12, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level401.json.meta b/assets/custom/Json/level401.json.meta new file mode 100644 index 0000000..fdcb430 --- /dev/null +++ b/assets/custom/Json/level401.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2d564f7e-d18a-47ec-816b-c652bd245764", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level402.json b/assets/custom/Json/level402.json new file mode 100644 index 0000000..4155248 --- /dev/null +++ b/assets/custom/Json/level402.json @@ -0,0 +1,458 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "402", + "map": [ + 9, + 12 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 3, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 430 + }, + { + "block": 3, + "color": 8, + "type": 2, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 460 + }, + { + "block": 14, + "color": 5, + "type": 3, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "lockTime": 8, + "id": 470 + }, + { + "block": 15, + "color": 6, + "type": 4, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "freezeTime": 10, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 403, + "num": 0, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 404, + "num": 3, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 405, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 406, + "num": 5, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 407, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 408, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 409, + "num": 15, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 410, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 411, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 412, + "num": 32, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 413, + "num": 33, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 414, + "num": 29, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 415, + "num": 27, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 416, + "num": 28, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 417, + "num": 24, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 418, + "num": 14, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 419, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 420, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level402.json.meta b/assets/custom/Json/level402.json.meta new file mode 100644 index 0000000..e5af475 --- /dev/null +++ b/assets/custom/Json/level402.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "39c7d20d-fe5c-4812-a591-720e18439cae", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level403.json b/assets/custom/Json/level403.json new file mode 100644 index 0000000..516c58e --- /dev/null +++ b/assets/custom/Json/level403.json @@ -0,0 +1,336 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "403", + "map": [ + 7, + 10 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 11, + "type": 8, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "boomTime": 20, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 404, + "num": 1, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 405, + "num": 2, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 406, + "num": 5, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 407, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 408, + "num": 9, + "color": 4, + "special": 4, + "length": 2 + }, + { + "id": 409, + "num": 11, + "color": 4, + "special": 4, + "length": 0 + }, + { + "id": 410, + "num": 13, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 411, + "num": 15, + "color": 8, + "special": 4, + "length": 2 + }, + { + "id": 412, + "num": 17, + "color": 8, + "special": 4, + "length": 0 + }, + { + "id": 413, + "num": 23, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 414, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 415, + "num": 19, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 416, + "num": 20, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 417, + "num": 14, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 418, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 419, + "num": 12, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 420, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 421, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level403.json.meta b/assets/custom/Json/level403.json.meta new file mode 100644 index 0000000..ca48566 --- /dev/null +++ b/assets/custom/Json/level403.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a4bc0e6a-f12e-4fe0-b09e-69f8d396251b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level404.json b/assets/custom/Json/level404.json new file mode 100644 index 0000000..0032632 --- /dev/null +++ b/assets/custom/Json/level404.json @@ -0,0 +1,641 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "404", + "map": [ + 10, + 15 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -360, + "y": 660, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 0, + "y": 660, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 660, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -360, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 14, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 420, + "z": 0 + }, + "id": 400 + }, + { + "block": 18, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 420, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 420, + "z": 0 + }, + "id": 420 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 440 + }, + { + "block": 18, + "color": 10, + "type": 3, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "lockTime": 5, + "id": 450 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 470 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 490 + }, + { + "block": 4, + "color": 3, + "type": 2, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 500 + }, + { + "block": 5, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": -780, + "z": 0 + }, + "id": 510 + }, + { + "block": 4, + "color": 9, + "type": 2, + "position": { + "x": 0, + "y": -780, + "z": 0 + }, + "id": 520 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 530 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 540 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": -360, + "y": -780, + "z": 0 + }, + "freezeTime": 2, + "id": 550 + }, + { + "block": 4, + "color": 5, + "type": 4, + "position": { + "x": 120, + "y": -780, + "z": 0 + }, + "freezeTime": 6, + "id": 560 + }, + { + "block": 18, + "color": 10, + "type": 4, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "freezeTime": 10, + "id": 570 + }, + { + "block": 14, + "color": 8, + "type": 4, + "position": { + "x": 360, + "y": -780, + "z": 0 + }, + "freezeTime": 17, + "id": 580 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 405, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 406, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 407, + "num": 3, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 408, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 409, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 410, + "num": 7, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 411, + "num": 8, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 412, + "num": 10, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 413, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 414, + "num": 12, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 415, + "num": 16, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 416, + "num": 20, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 417, + "num": 22, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 418, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 419, + "num": 40, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 420, + "num": 41, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 421, + "num": 36, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 422, + "num": 37, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 423, + "num": 38, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 424, + "num": 33, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 425, + "num": 34, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 426, + "num": 29, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 427, + "num": 30, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 428, + "num": 31, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 429, + "num": 25, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 430, + "num": 19, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 431, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 432, + "num": 15, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level404.json.meta b/assets/custom/Json/level404.json.meta new file mode 100644 index 0000000..773eb95 --- /dev/null +++ b/assets/custom/Json/level404.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "150d4319-9d7d-4a72-bac1-ce3154b1ca04", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level405.json b/assets/custom/Json/level405.json new file mode 100644 index 0000000..f0ec0f5 --- /dev/null +++ b/assets/custom/Json/level405.json @@ -0,0 +1,525 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "405", + "map": [ + 11, + 11 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -540, + "z": 0 + }, + "id": 300 + }, + { + "block": 10, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 6, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 430 + }, + { + "block": 3, + "color": 5, + "type": 2, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 450 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 460 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -420, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 470 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 480 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 490 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 540, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 500 + }, + { + "block": 14, + "color": 9, + "type": 3, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 510 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 520 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 530 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 406, + "num": 2, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 407, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 408, + "num": 5, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 409, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 410, + "num": 12, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 411, + "num": 14, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 412, + "num": 22, + "color": 2, + "special": 4, + "length": 2 + }, + { + "id": 413, + "num": 24, + "color": 2, + "special": 4, + "length": 0 + }, + { + "id": 414, + "num": 32, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 415, + "num": 33, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 416, + "num": 29, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 417, + "num": 30, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 418, + "num": 21, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 419, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 420, + "num": 15, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 421, + "num": 17, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 422, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 423, + "num": 11, + "color": 1, + "special": 4, + "length": 2 + }, + { + "id": 424, + "num": 13, + "color": 1, + "special": 4, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level405.json.meta b/assets/custom/Json/level405.json.meta new file mode 100644 index 0000000..ee57561 --- /dev/null +++ b/assets/custom/Json/level405.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a4abf4ff-d247-4c93-b925-a773871e4bad", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level406.json b/assets/custom/Json/level406.json new file mode 100644 index 0000000..1971051 --- /dev/null +++ b/assets/custom/Json/level406.json @@ -0,0 +1,605 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 4, + "y": 6, + "color": "6" + }, + { + "x": 4, + "y": 5, + "color": "6" + }, + { + "x": 5, + "y": 6, + "color": "6" + }, + { + "x": 5, + "y": 5, + "color": "6" + }, + { + "x": 6, + "y": 6, + "color": "6" + }, + { + "x": 6, + "y": 5, + "color": "6" + } + ], + "id": "406", + "map": [ + 11, + 11 + ], + "time": 170, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + }, + { + "x": 9, + "y": 7, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + }, + { + "x": 9, + "y": 2, + "z": 0 + }, + { + "x": 9, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -420, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 540, + "y": 60, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 450 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 490 + }, + { + "block": 3, + "color": 5, + "type": 4, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "freezeTime": 8, + "id": 500 + }, + { + "block": 3, + "color": 6, + "type": 4, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "freezeTime": 14, + "id": 510 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 407, + "num": 0, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 408, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 409, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 410, + "num": 12, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 411, + "num": 14, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 412, + "num": 16, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 413, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 414, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 415, + "num": 22, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 416, + "num": 24, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 417, + "num": 33, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 418, + "num": 34, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 419, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 420, + "num": 21, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 421, + "num": 23, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 422, + "num": 15, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 423, + "num": 17, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 424, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 425, + "num": 11, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 426, + "num": 13, + "color": 8, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level406.json.meta b/assets/custom/Json/level406.json.meta new file mode 100644 index 0000000..8bb6d75 --- /dev/null +++ b/assets/custom/Json/level406.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "01888679-15fb-462e-9e16-afa407162389", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level407.json b/assets/custom/Json/level407.json new file mode 100644 index 0000000..e86e686 --- /dev/null +++ b/assets/custom/Json/level407.json @@ -0,0 +1,376 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "407", + "map": [ + 9, + 9 + ], + "time": 125, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 14, + "color": 1, + "type": 3, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "lockTime": 6, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 408, + "num": 1, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 409, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 410, + "num": 3, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 411, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 412, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 413, + "num": 12, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 414, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 415, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 416, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 417, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 418, + "num": 23, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 419, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 420, + "num": 22, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 421, + "num": 11, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 422, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 423, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level407.json.meta b/assets/custom/Json/level407.json.meta new file mode 100644 index 0000000..5aed6f8 --- /dev/null +++ b/assets/custom/Json/level407.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f6c675df-e2db-4016-9a79-8f91c32ec85d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level408.json b/assets/custom/Json/level408.json new file mode 100644 index 0000000..53cc100 --- /dev/null +++ b/assets/custom/Json/level408.json @@ -0,0 +1,426 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "408", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 20, + "color": 9, + "type": 4, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "freezeTime": 5, + "id": 440 + }, + { + "block": 19, + "color": 8, + "type": 4, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "freezeTime": 13, + "id": 450 + }, + { + "block": 2, + "color": 2, + "type": 6, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "boomTime": 50, + "id": 460 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 409, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 410, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 411, + "num": 5, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 412, + "num": 6, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 413, + "num": 13, + "color": 5, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 414, + "num": 15, + "color": 5, + "special": 3, + "length": 0, + "freeze": 15 + }, + { + "id": 415, + "num": 26, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 416, + "num": 25, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 417, + "num": 20, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 418, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 419, + "num": 16, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 420, + "num": 18, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 421, + "num": 8, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 422, + "num": 10, + "color": 2, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level408.json.meta b/assets/custom/Json/level408.json.meta new file mode 100644 index 0000000..9af091d --- /dev/null +++ b/assets/custom/Json/level408.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d8d4ce2a-e059-4706-8a71-69b30aea7b02", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level409.json b/assets/custom/Json/level409.json new file mode 100644 index 0000000..21ecc43 --- /dev/null +++ b/assets/custom/Json/level409.json @@ -0,0 +1,425 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "409", + "map": [ + 9, + 8 + ], + "time": 105, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 9, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 6, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "boomTime": 30, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 410, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 411, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 412, + "num": 2, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 413, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 414, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 415, + "num": 9, + "color": 5, + "special": 3, + "length": 2, + "freeze": 11 + }, + { + "id": 416, + "num": 11, + "color": 5, + "special": 3, + "length": 0, + "freeze": 11 + }, + { + "id": 417, + "num": 15, + "color": 1, + "special": 3, + "length": 2, + "freeze": 17 + }, + { + "id": 418, + "num": 17, + "color": 1, + "special": 3, + "length": 0, + "freeze": 17 + }, + { + "id": 419, + "num": 23, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 420, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 421, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 422, + "num": 21, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 423, + "num": 22, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 424, + "num": 14, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 425, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 426, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 427, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level409.json.meta b/assets/custom/Json/level409.json.meta new file mode 100644 index 0000000..93cc4a4 --- /dev/null +++ b/assets/custom/Json/level409.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "36652db7-8b66-47c3-8fcf-0ec35ed14c47", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level41.json b/assets/custom/Json/level41.json new file mode 100644 index 0000000..dbcbebf --- /dev/null +++ b/assets/custom/Json/level41.json @@ -0,0 +1,365 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "41", + "map": [ + 10, + 11 + ], + "time": 130, + "gap": [ + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 18, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 11, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 8, + "type": 8, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 4, + "color": 9, + "type": 8, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 6, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 15, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "freezeTime": 4, + "id": 370 + }, + { + "block": 14, + "color": 9, + "type": 4, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "freezeTime": 4, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 26, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 28, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 30, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 10, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 12, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 6, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 8, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 37, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 38, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 39, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 35, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 36, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level41.json.meta b/assets/custom/Json/level41.json.meta new file mode 100644 index 0000000..07027cd --- /dev/null +++ b/assets/custom/Json/level41.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "36a3a2e9-11ae-4359-bb93-01f8f61c92bf", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level410.json b/assets/custom/Json/level410.json new file mode 100644 index 0000000..dd22c6a --- /dev/null +++ b/assets/custom/Json/level410.json @@ -0,0 +1,445 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "410", + "map": [ + 9, + 9 + ], + "time": 170, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 10, + "type": 1, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "stacking": 5, + "id": 430 + }, + { + "block": 0, + "color": 6, + "type": 1, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "stacking": 1, + "id": 440 + }, + { + "block": 0, + "color": 1, + "type": 1, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "stacking": 6, + "id": 450 + }, + { + "block": 0, + "color": 5, + "type": 1, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "stacking": 1, + "id": 460 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "freezeTime": 15, + "id": 470 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "freezeTime": 17, + "id": 480 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "freezeTime": 19, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 411, + "num": 2, + "color": 3, + "special": 3, + "length": 3, + "freeze": 13 + }, + { + "id": 412, + "num": 3, + "color": 3, + "special": 3, + "length": 0, + "freeze": 13 + }, + { + "id": 413, + "num": 4, + "color": 3, + "special": 3, + "length": 0, + "freeze": 13 + }, + { + "id": 414, + "num": 8, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 415, + "num": 12, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 416, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 417, + "num": 20, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 418, + "num": 23, + "color": 8, + "special": 3, + "length": 3, + "freeze": 22 + }, + { + "id": 419, + "num": 24, + "color": 8, + "special": 3, + "length": 0, + "freeze": 22 + }, + { + "id": 420, + "num": 25, + "color": 8, + "special": 3, + "length": 0, + "freeze": 22 + }, + { + "id": 421, + "num": 17, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 422, + "num": 13, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 423, + "num": 9, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level410.json.meta b/assets/custom/Json/level410.json.meta new file mode 100644 index 0000000..b8fb08e --- /dev/null +++ b/assets/custom/Json/level410.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "18b04a5f-9141-45ad-b6d6-4b56c2469e4a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level411.json b/assets/custom/Json/level411.json new file mode 100644 index 0000000..9c75f21 --- /dev/null +++ b/assets/custom/Json/level411.json @@ -0,0 +1,447 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 5, + "color": "5" + }, + { + "x": 3, + "y": 4, + "color": "5" + }, + { + "x": 4, + "y": 5, + "color": "5" + }, + { + "x": 4, + "y": 4, + "color": "5" + }, + { + "x": 5, + "y": 5, + "color": "5" + }, + { + "x": 5, + "y": 4, + "color": "5" + }, + { + "x": 6, + "y": 5, + "color": "5" + }, + { + "x": 6, + "y": 4, + "color": "5" + } + ], + "id": "411", + "map": [ + 10, + 10 + ], + "time": 105, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": -360, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 6, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 10, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 11, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 410 + }, + { + "block": 1, + "color": 10, + "type": 4, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "freezeTime": 15, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 412, + "num": 0, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 413, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 414, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 415, + "num": 4, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 416, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 417, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 418, + "num": 13, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 419, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 420, + "num": 17, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 421, + "num": 19, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 422, + "num": 28, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 423, + "num": 29, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 424, + "num": 30, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 425, + "num": 24, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 426, + "num": 25, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 427, + "num": 26, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 428, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 429, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 430, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 431, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level411.json.meta b/assets/custom/Json/level411.json.meta new file mode 100644 index 0000000..9cf4663 --- /dev/null +++ b/assets/custom/Json/level411.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3dc9b4f2-71b8-49e8-b91c-98a8b2b75188", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level412.json b/assets/custom/Json/level412.json new file mode 100644 index 0000000..b0a8b75 --- /dev/null +++ b/assets/custom/Json/level412.json @@ -0,0 +1,498 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "412", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 7, + "type": 7, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 490 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 510 + }, + { + "block": 0, + "color": 2, + "type": 6, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "boomTime": 28, + "id": 520 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 530 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 20, + "id": 540 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "freezeTime": 15, + "id": 550 + }, + { + "block": 0, + "color": 7, + "type": 4, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "freezeTime": 10, + "id": 560 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 413, + "num": 1, + "color": 5, + "special": 3, + "length": 1, + "freeze": 18 + }, + { + "id": 414, + "num": 3, + "color": 1, + "special": 3, + "length": 1, + "freeze": 16 + }, + { + "id": 415, + "num": 5, + "color": 4, + "special": 3, + "length": 1, + "freeze": 11 + }, + { + "id": 416, + "num": 7, + "color": 9, + "special": 3, + "length": 1, + "freeze": 7 + }, + { + "id": 417, + "num": 27, + "color": 7, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 418, + "num": 25, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 419, + "num": 23, + "color": 2, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 420, + "num": 21, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 421, + "num": 14, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 422, + "num": 12, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level412.json.meta b/assets/custom/Json/level412.json.meta new file mode 100644 index 0000000..21a3225 --- /dev/null +++ b/assets/custom/Json/level412.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "91fef021-ee53-4c55-a602-81badc33ecec", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level413.json b/assets/custom/Json/level413.json new file mode 100644 index 0000000..b2eb4c8 --- /dev/null +++ b/assets/custom/Json/level413.json @@ -0,0 +1,463 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "413", + "map": [ + 8, + 10 + ], + "time": 160, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 22, + "color": 8, + "type": 9, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 450 + }, + { + "block": 21, + "color": 6, + "type": 9, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 460 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 470 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 480 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 414, + "num": 1, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 415, + "num": 4, + "color": 9, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 416, + "num": 5, + "color": 9, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 417, + "num": 9, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 418, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 419, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 420, + "num": 19, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 421, + "num": 24, + "color": 2, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 422, + "num": 25, + "color": 2, + "special": 3, + "length": 0, + "freeze": 15 + }, + { + "id": 423, + "num": 21, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 424, + "num": 16, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 425, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 426, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 427, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 428, + "num": 8, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 429, + "num": 10, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level413.json.meta b/assets/custom/Json/level413.json.meta new file mode 100644 index 0000000..ce9d487 --- /dev/null +++ b/assets/custom/Json/level413.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8f2fa130-7cb0-4fab-8a64-5199b8b86d43", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level414.json b/assets/custom/Json/level414.json new file mode 100644 index 0000000..a940475 --- /dev/null +++ b/assets/custom/Json/level414.json @@ -0,0 +1,406 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "414", + "map": [ + 8, + 10 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 4, + "type": 3, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "lockTime": 5, + "id": 390 + }, + { + "block": 2, + "color": 6, + "type": 1, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "stacking": 8, + "id": 400 + }, + { + "block": 2, + "color": 1, + "type": 1, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "stacking": 9, + "id": 410 + }, + { + "block": 21, + "color": 4, + "type": 4, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "freezeTime": 11, + "id": 420 + }, + { + "block": 22, + "color": 1, + "type": 4, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "freezeTime": 16, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 415, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 416, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 417, + "num": 3, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 418, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 419, + "num": 5, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 420, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 421, + "num": 9, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 422, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 423, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 424, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 425, + "num": 25, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 426, + "num": 26, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 427, + "num": 23, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 428, + "num": 24, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 429, + "num": 21, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 430, + "num": 22, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 431, + "num": 18, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 432, + "num": 8, + "color": 8, + "special": 4, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level414.json.meta b/assets/custom/Json/level414.json.meta new file mode 100644 index 0000000..99896aa --- /dev/null +++ b/assets/custom/Json/level414.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "09ac3c52-3eac-451b-ba8c-a73d3d493a2f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level415.json b/assets/custom/Json/level415.json new file mode 100644 index 0000000..6077eae --- /dev/null +++ b/assets/custom/Json/level415.json @@ -0,0 +1,359 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "415", + "map": [ + 8, + 10 + ], + "time": 95, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 7, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 6, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "boomTime": 35, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 6, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "boomTime": 25, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 416, + "num": 0, + "color": 5, + "special": 4, + "length": 2 + }, + { + "id": 417, + "num": 1, + "color": 5, + "special": 4, + "length": 0 + }, + { + "id": 418, + "num": 2, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 419, + "num": 3, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 420, + "num": 9, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 421, + "num": 11, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 422, + "num": 21, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 423, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 424, + "num": 26, + "color": 9, + "special": 4, + "length": 2 + }, + { + "id": 425, + "num": 27, + "color": 9, + "special": 4, + "length": 0 + }, + { + "id": 426, + "num": 24, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 427, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 428, + "num": 20, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 429, + "num": 22, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 430, + "num": 8, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 431, + "num": 10, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level415.json.meta b/assets/custom/Json/level415.json.meta new file mode 100644 index 0000000..19c1934 --- /dev/null +++ b/assets/custom/Json/level415.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ec9c355c-d500-4da1-9805-266b7b3a0edf", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level416.json b/assets/custom/Json/level416.json new file mode 100644 index 0000000..ff7b56e --- /dev/null +++ b/assets/custom/Json/level416.json @@ -0,0 +1,471 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "416", + "map": [ + 8, + 10 + ], + "time": 95, + "gap": [ + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 5, + "type": 7, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 417, + "num": 0, + "color": 7, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 418, + "num": 1, + "color": 7, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 419, + "num": 4, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 420, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 421, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 422, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 423, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 424, + "num": 17, + "color": 4, + "special": 3, + "length": 2, + "freeze": 16 + }, + { + "id": 425, + "num": 19, + "color": 4, + "special": 3, + "length": 0, + "freeze": 16 + }, + { + "id": 426, + "num": 25, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 427, + "num": 26, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 428, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 429, + "num": 21, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 430, + "num": 22, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 431, + "num": 18, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 432, + "num": 12, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 433, + "num": 14, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 434, + "num": 7, + "color": 8, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level416.json.meta b/assets/custom/Json/level416.json.meta new file mode 100644 index 0000000..e2055d3 --- /dev/null +++ b/assets/custom/Json/level416.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "364cdb68-5d6d-42e9-830f-c4466688d205", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level417.json b/assets/custom/Json/level417.json new file mode 100644 index 0000000..7347f61 --- /dev/null +++ b/assets/custom/Json/level417.json @@ -0,0 +1,437 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "417", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 5, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 5, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 8, + "type": 5, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 5, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 11, + "type": 9, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "freezeTime": 12, + "id": 450 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "freezeTime": 15, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 418, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 419, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 420, + "num": 3, + "color": 4, + "special": 1, + "length": 1 + }, + { + "id": 421, + "num": 11, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 422, + "num": 13, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 423, + "num": 15, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 424, + "num": 17, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 425, + "num": 25, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 426, + "num": 26, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 427, + "num": 24, + "color": 8, + "special": 1, + "length": 1 + }, + { + "id": 428, + "num": 22, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 429, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 430, + "num": 12, + "color": 3, + "special": 3, + "length": 2, + "freeze": 18 + }, + { + "id": 431, + "num": 14, + "color": 3, + "special": 3, + "length": 0, + "freeze": 18 + }, + { + "id": 432, + "num": 4, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 433, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level417.json.meta b/assets/custom/Json/level417.json.meta new file mode 100644 index 0000000..952dbd4 --- /dev/null +++ b/assets/custom/Json/level417.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6c03c557-df05-4e09-8cf2-1f4a5bb47d3a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level418.json b/assets/custom/Json/level418.json new file mode 100644 index 0000000..aa247a8 --- /dev/null +++ b/assets/custom/Json/level418.json @@ -0,0 +1,401 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "419", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 0, + "color": 4, + "type": 6, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "boomTime": 30, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 6, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "boomTime": 27, + "id": 390 + }, + { + "block": 22, + "color": 2, + "type": 4, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "freezeTime": 9, + "id": 400 + }, + { + "block": 21, + "color": 3, + "type": 4, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "freezeTime": 12, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 420, + "num": 0, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 421, + "num": 3, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 422, + "num": 4, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 423, + "num": 5, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 424, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 425, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 426, + "num": 13, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 427, + "num": 15, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 428, + "num": 17, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 429, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 430, + "num": 23, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 431, + "num": 24, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 432, + "num": 25, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 433, + "num": 20, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 434, + "num": 16, + "color": 2, + "special": 5, + "length": 2 + }, + { + "id": 435, + "num": 18, + "color": 2, + "special": 5, + "length": 0 + }, + { + "id": 436, + "num": 12, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 437, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 438, + "num": 8, + "color": 3, + "special": 5, + "length": 2 + }, + { + "id": 439, + "num": 10, + "color": 3, + "special": 5, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level418.json.meta b/assets/custom/Json/level418.json.meta new file mode 100644 index 0000000..f4324f4 --- /dev/null +++ b/assets/custom/Json/level418.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "fa7781a2-4d5b-440a-b4d4-7e9d9b7dcf98", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level419.json b/assets/custom/Json/level419.json new file mode 100644 index 0000000..26094bd --- /dev/null +++ b/assets/custom/Json/level419.json @@ -0,0 +1,495 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "419", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [ + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + }, + { + "x": 8, + "y": 4, + "z": 0 + }, + { + "x": 8, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 6, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 10, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "lockTime": 8, + "id": 410 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 1, + "color": 4, + "type": 9, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 440 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 480, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 420, + "num": 0, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 421, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 422, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 423, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 424, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 425, + "num": 19, + "color": 3, + "special": 4, + "length": 2 + }, + { + "id": 426, + "num": 21, + "color": 3, + "special": 4, + "length": 0 + }, + { + "id": 427, + "num": 23, + "color": 9, + "special": 4, + "length": 2 + }, + { + "id": 428, + "num": 25, + "color": 9, + "special": 4, + "length": 0 + }, + { + "id": 429, + "num": 42, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 430, + "num": 43, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 431, + "num": 39, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 432, + "num": 40, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 433, + "num": 38, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 434, + "num": 20, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 435, + "num": 22, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level419.json.meta b/assets/custom/Json/level419.json.meta new file mode 100644 index 0000000..ba7e962 --- /dev/null +++ b/assets/custom/Json/level419.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f3288513-7567-4b5f-9f24-515e50e6ee6e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level42.json b/assets/custom/Json/level42.json new file mode 100644 index 0000000..1083bec --- /dev/null +++ b/assets/custom/Json/level42.json @@ -0,0 +1,415 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "42", + "map": [ + 8, + 13 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 420, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": 360, + "y": 540, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": -240, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 6, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 7, + "type": 7, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 4, + "type": 4, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "freezeTime": 12, + "id": 450 + }, + { + "block": 21, + "color": 8, + "type": 4, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "freezeTime": 5, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 24, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 1, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 8, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 9, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 12, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 20, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 22, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level42.json.meta b/assets/custom/Json/level42.json.meta new file mode 100644 index 0000000..6bffdc2 --- /dev/null +++ b/assets/custom/Json/level42.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9c856152-685e-4679-951a-e49978ae6b2a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level420.json b/assets/custom/Json/level420.json new file mode 100644 index 0000000..ffab06f --- /dev/null +++ b/assets/custom/Json/level420.json @@ -0,0 +1,416 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "420", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 11, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 11, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 9, + "type": 8, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 421, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 422, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 423, + "num": 5, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 424, + "num": 6, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 425, + "num": 7, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 426, + "num": 11, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 427, + "num": 13, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 428, + "num": 15, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 429, + "num": 17, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 430, + "num": 25, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 431, + "num": 26, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 432, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 433, + "num": 21, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 434, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 435, + "num": 18, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 436, + "num": 12, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 437, + "num": 14, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 438, + "num": 8, + "color": 10, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level420.json.meta b/assets/custom/Json/level420.json.meta new file mode 100644 index 0000000..fd232d0 --- /dev/null +++ b/assets/custom/Json/level420.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "42ef52be-50ca-4700-b4bc-9173cdfea405", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level421.json b/assets/custom/Json/level421.json new file mode 100644 index 0000000..2dbb856 --- /dev/null +++ b/assets/custom/Json/level421.json @@ -0,0 +1,404 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "421", + "map": [ + 9, + 9 + ], + "time": 100, + "gap": [ + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 14, + "color": 10, + "type": 3, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "lockTime": 6, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 422, + "num": 1, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 423, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 424, + "num": 4, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 425, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 426, + "num": 7, + "color": 7, + "special": 5, + "length": 2 + }, + { + "id": 427, + "num": 9, + "color": 7, + "special": 5, + "length": 0 + }, + { + "id": 428, + "num": 19, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 429, + "num": 21, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 430, + "num": 26, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 431, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 432, + "num": 23, + "color": 3, + "special": 5, + "length": 2 + }, + { + "id": 433, + "num": 24, + "color": 3, + "special": 5, + "length": 0 + }, + { + "id": 434, + "num": 15, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 435, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 436, + "num": 13, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 437, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 438, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level421.json.meta b/assets/custom/Json/level421.json.meta new file mode 100644 index 0000000..2fc5dc5 --- /dev/null +++ b/assets/custom/Json/level421.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2884a935-a333-4b37-97a1-4e38dccb22fc", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level422.json b/assets/custom/Json/level422.json new file mode 100644 index 0000000..1eb354e --- /dev/null +++ b/assets/custom/Json/level422.json @@ -0,0 +1,443 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "422", + "map": [ + 8, + 10 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 8, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 2, + "type": 8, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 6, + "type": 8, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 6, + "type": 8, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 23, + "color": 6, + "type": 8, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 23, + "color": 6, + "type": 8, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 450 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 460 + }, + { + "block": 10, + "color": 10, + "type": 4, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "freezeTime": 8, + "id": 470 + }, + { + "block": 6, + "color": 7, + "type": 4, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "freezeTime": 15, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 423, + "num": 1, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 424, + "num": 2, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 425, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 426, + "num": 7, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 427, + "num": 9, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 428, + "num": 11, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 429, + "num": 17, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 430, + "num": 19, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 431, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 432, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 433, + "num": 21, + "color": 4, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 434, + "num": 22, + "color": 4, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 435, + "num": 18, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 436, + "num": 12, + "color": 7, + "special": 3, + "length": 2, + "freeze": 18 + }, + { + "id": 437, + "num": 14, + "color": 7, + "special": 3, + "length": 0, + "freeze": 18 + }, + { + "id": 438, + "num": 8, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level422.json.meta b/assets/custom/Json/level422.json.meta new file mode 100644 index 0000000..6971aed --- /dev/null +++ b/assets/custom/Json/level422.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0f7f1d3d-40cc-4f41-8749-5cd1a7b9ffc1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level423.json b/assets/custom/Json/level423.json new file mode 100644 index 0000000..952764b --- /dev/null +++ b/assets/custom/Json/level423.json @@ -0,0 +1,383 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 4, + "color": "3" + }, + { + "x": 4, + "y": 4, + "color": "3" + }, + { + "x": 5, + "y": 4, + "color": "3" + } + ], + "id": "423", + "map": [ + 9, + 9 + ], + "time": 110, + "gap": [ + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 12, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 8, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 3, + "color": 3, + "type": 1, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "stacking": 2, + "id": 340 + }, + { + "block": 0, + "color": 10, + "type": 1, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "stacking": 6, + "id": 350 + }, + { + "block": 0, + "color": 10, + "type": 1, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "stacking": 5, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 1, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "stacking": 3, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 1, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "stacking": 9, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 424, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 425, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 426, + "num": 4, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 427, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 428, + "num": 8, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 429, + "num": 10, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 430, + "num": 13, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 431, + "num": 18, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 432, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 433, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 434, + "num": 27, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 435, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 436, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 437, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 438, + "num": 19, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 439, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 440, + "num": 7, + "color": 5, + "special": 5, + "length": 2 + }, + { + "id": 441, + "num": 9, + "color": 5, + "special": 5, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level423.json.meta b/assets/custom/Json/level423.json.meta new file mode 100644 index 0000000..433df62 --- /dev/null +++ b/assets/custom/Json/level423.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e684501e-5b8b-4d14-8c88-c71a8921dc59", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level424.json b/assets/custom/Json/level424.json new file mode 100644 index 0000000..39c8704 --- /dev/null +++ b/assets/custom/Json/level424.json @@ -0,0 +1,448 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "424", + "map": [ + 9, + 12 + ], + "time": 170, + "gap": [ + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 3, + "y": 4, + "z": 0 + }, + { + "x": 3, + "y": 5, + "z": 0 + }, + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -600, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": -180, + "y": -600, + "z": 0 + }, + "stacking": 5, + "id": 320 + }, + { + "block": 1, + "color": 8, + "type": 1, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "stacking": 4, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "stacking": 3, + "id": 340 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "stacking": 2, + "id": 350 + }, + { + "block": 5, + "color": 6, + "type": 1, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "stacking": 4, + "id": 360 + }, + { + "block": 21, + "color": 3, + "type": 1, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "stacking": 10, + "id": 370 + }, + { + "block": 19, + "color": 4, + "type": 1, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "stacking": 8, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 6, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "boomTime": 25, + "id": 400 + }, + { + "block": 14, + "color": 2, + "type": 4, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "freezeTime": 15, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 425, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 426, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 427, + "num": 3, + "color": 4, + "special": 5, + "length": 2 + }, + { + "id": 428, + "num": 4, + "color": 4, + "special": 5, + "length": 0 + }, + { + "id": 429, + "num": 5, + "color": 5, + "special": 5, + "length": 2 + }, + { + "id": 430, + "num": 6, + "color": 5, + "special": 5, + "length": 0 + }, + { + "id": 431, + "num": 14, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 432, + "num": 21, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 433, + "num": 23, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 434, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 435, + "num": 38, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 436, + "num": 39, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 437, + "num": 15, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 438, + "num": 22, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 439, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level424.json.meta b/assets/custom/Json/level424.json.meta new file mode 100644 index 0000000..a904e65 --- /dev/null +++ b/assets/custom/Json/level424.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0370f78d-2af7-456b-ad23-bc7b5a866643", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level425.json b/assets/custom/Json/level425.json new file mode 100644 index 0000000..b4dcbe5 --- /dev/null +++ b/assets/custom/Json/level425.json @@ -0,0 +1,390 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 5, + "color": "10" + }, + { + "x": 3, + "y": 4, + "color": "10" + }, + { + "x": 4, + "y": 5, + "color": "10" + }, + { + "x": 4, + "y": 4, + "color": "10" + } + ], + "id": "425", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 9, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 4, + "type": 6, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "boomTime": 15, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 426, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 427, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 428, + "num": 5, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 429, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 430, + "num": 11, + "color": 1, + "special": 4, + "length": 2 + }, + { + "id": 431, + "num": 13, + "color": 1, + "special": 4, + "length": 0 + }, + { + "id": 432, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 433, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 434, + "num": 20, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 435, + "num": 25, + "color": 7, + "special": 4, + "length": 2 + }, + { + "id": 436, + "num": 26, + "color": 7, + "special": 4, + "length": 0 + }, + { + "id": 437, + "num": 21, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 438, + "num": 22, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 439, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 440, + "num": 12, + "color": 9, + "special": 4, + "length": 2 + }, + { + "id": 441, + "num": 14, + "color": 9, + "special": 4, + "length": 0 + }, + { + "id": 442, + "num": 7, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 443, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level425.json.meta b/assets/custom/Json/level425.json.meta new file mode 100644 index 0000000..146262f --- /dev/null +++ b/assets/custom/Json/level425.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "36907e16-d740-4b8a-a234-1c529860d814", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level426.json b/assets/custom/Json/level426.json new file mode 100644 index 0000000..8166c4f --- /dev/null +++ b/assets/custom/Json/level426.json @@ -0,0 +1,554 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "426", + "map": [ + 9, + 12 + ], + "time": 160, + "gap": [ + { + "x": 3, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 14, + "color": 7, + "type": 3, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "lockTime": 9, + "id": 460 + }, + { + "block": 2, + "color": 7, + "type": 4, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "freezeTime": 7, + "id": 470 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "freezeTime": 14, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 427, + "num": 2, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 428, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 429, + "num": 4, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 430, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 431, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 432, + "num": 11, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 433, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 434, + "num": 23, + "color": 9, + "special": 4, + "length": 2 + }, + { + "id": 435, + "num": 26, + "color": 9, + "special": 4, + "length": 0 + }, + { + "id": 436, + "num": 37, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 437, + "num": 44, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 438, + "num": 45, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 439, + "num": 38, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 440, + "num": 39, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 441, + "num": 40, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 442, + "num": 27, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 443, + "num": 34, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 444, + "num": 19, + "color": 3, + "special": 4, + "length": 2 + }, + { + "id": 445, + "num": 22, + "color": 3, + "special": 4, + "length": 0 + }, + { + "id": 446, + "num": 8, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level426.json.meta b/assets/custom/Json/level426.json.meta new file mode 100644 index 0000000..0523331 --- /dev/null +++ b/assets/custom/Json/level426.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8e4a5b0b-ba1e-4124-9969-8301575cd1b6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level427.json b/assets/custom/Json/level427.json new file mode 100644 index 0000000..247aa5d --- /dev/null +++ b/assets/custom/Json/level427.json @@ -0,0 +1,431 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "427", + "map": [ + 9, + 9 + ], + "time": 100, + "gap": [ + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 6, + "z": 0 + }, + { + "x": 4, + "y": 6, + "z": 0 + }, + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 3, + "y": 5, + "z": 0 + }, + { + "x": 4, + "y": 5, + "z": 0 + }, + { + "x": 5, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 6, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "boomTime": 20, + "id": 290 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 428, + "num": 1, + "color": 2, + "special": 5, + "length": 2 + }, + { + "id": 429, + "num": 2, + "color": 2, + "special": 5, + "length": 0 + }, + { + "id": 430, + "num": 3, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 431, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 432, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 433, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 434, + "num": 17, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 435, + "num": 32, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 436, + "num": 33, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 437, + "num": 30, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 438, + "num": 31, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 439, + "num": 28, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 440, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 441, + "num": 18, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 442, + "num": 23, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 443, + "num": 9, + "color": 7, + "special": 5, + "length": 2 + }, + { + "id": 444, + "num": 11, + "color": 7, + "special": 5, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level427.json.meta b/assets/custom/Json/level427.json.meta new file mode 100644 index 0000000..8a16d4f --- /dev/null +++ b/assets/custom/Json/level427.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4146030e-269c-41d0-a9dd-8fff5efd6298", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level428.json b/assets/custom/Json/level428.json new file mode 100644 index 0000000..8d45ca9 --- /dev/null +++ b/assets/custom/Json/level428.json @@ -0,0 +1,448 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "428", + "map": [ + 11, + 11 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 1, + "type": 5, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 5, + "type": 5, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 4, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 6, + "type": 2, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 20, + "color": 6, + "type": 1, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "stacking": 3, + "id": 320 + }, + { + "block": 20, + "color": 8, + "type": 1, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "stacking": 4, + "id": 330 + }, + { + "block": 22, + "color": 8, + "type": 1, + "position": { + "x": 540, + "y": 60, + "z": 0 + }, + "stacking": 4, + "id": 340 + }, + { + "block": 22, + "color": 7, + "type": 1, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "stacking": 1, + "id": 350 + }, + { + "block": 8, + "color": 7, + "type": 1, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "stacking": 2, + "id": 360 + }, + { + "block": 12, + "color": 2, + "type": 1, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "stacking": 8, + "id": 370 + }, + { + "block": 14, + "color": 3, + "type": 3, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "lockTime": 5, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 7, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 1, + "type": 7, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 14, + "color": 6, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 12, + "id": 410 + }, + { + "block": 15, + "color": 3, + "type": 4, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "freezeTime": 19, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 429, + "num": 1, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 430, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 431, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 432, + "num": 4, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 433, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 434, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 435, + "num": 7, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 436, + "num": 8, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 437, + "num": 10, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 438, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 439, + "num": 14, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 440, + "num": 22, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 441, + "num": 24, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 442, + "num": 26, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 443, + "num": 32, + "color": 1, + "special": 1, + "length": 3 + }, + { + "id": 444, + "num": 33, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 445, + "num": 34, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 446, + "num": 29, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 447, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 448, + "num": 31, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 449, + "num": 27, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 450, + "num": 28, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 451, + "num": 21, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 452, + "num": 13, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 453, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level428.json.meta b/assets/custom/Json/level428.json.meta new file mode 100644 index 0000000..132f572 --- /dev/null +++ b/assets/custom/Json/level428.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "dd102969-f6ec-4785-a9dc-5b59e1517e6a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level429.json b/assets/custom/Json/level429.json new file mode 100644 index 0000000..e9d1183 --- /dev/null +++ b/assets/custom/Json/level429.json @@ -0,0 +1,458 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "129", + "map": [ + 9, + 11 + ], + "time": 135, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 3, + "color": 5, + "type": 8, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 6, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "boomTime": 25, + "id": 370 + }, + { + "block": 4, + "color": 3, + "type": 3, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "lockTime": 5, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "adhesiveTime": 2, + "id": 450 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 130, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 131, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 132, + "num": 2, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 133, + "num": 3, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 134, + "num": 4, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 135, + "num": 5, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 136, + "num": 16, + "color": 5, + "special": 4, + "length": 3 + }, + { + "id": 137, + "num": 18, + "color": 5, + "special": 4, + "length": 0 + }, + { + "id": 138, + "num": 20, + "color": 5, + "special": 4, + "length": 0 + }, + { + "id": 139, + "num": 33, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 140, + "num": 34, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 141, + "num": 31, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 142, + "num": 32, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 143, + "num": 29, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 144, + "num": 30, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 145, + "num": 19, + "color": 8, + "special": 4, + "length": 1 + }, + { + "id": 146, + "num": 15, + "color": 3, + "special": 4, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level429.json.meta b/assets/custom/Json/level429.json.meta new file mode 100644 index 0000000..59aa6ac --- /dev/null +++ b/assets/custom/Json/level429.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "fed70490-be74-4483-93e9-2de76e0a2afd", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level43.json b/assets/custom/Json/level43.json new file mode 100644 index 0000000..21c2b2d --- /dev/null +++ b/assets/custom/Json/level43.json @@ -0,0 +1,475 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "43", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 5, + "type": 1, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "stacking": 8, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 9, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 5, + "type": 5, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 5, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 8, + "type": 5, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 480, + "z": 0 + }, + "id": 450 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 5, + "id": 510 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 11, + "id": 520 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 31, + "color": 8, + "special": 1, + "length": 1 + }, + { + "id": 2, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 23, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 8, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 10, + "num": 5, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 26, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 34, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 11, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 13, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level43.json.meta b/assets/custom/Json/level43.json.meta new file mode 100644 index 0000000..51f3665 --- /dev/null +++ b/assets/custom/Json/level43.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e95a2979-58a0-4f26-a874-6b1648ed524f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level430.json b/assets/custom/Json/level430.json new file mode 100644 index 0000000..fb1f69c --- /dev/null +++ b/assets/custom/Json/level430.json @@ -0,0 +1,367 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "430", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "freezeTime": 10, + "id": 400 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "freezeTime": 16, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 431, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 432, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 433, + "num": 4, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 434, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 435, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 436, + "num": 13, + "color": 1, + "special": 5, + "length": 2 + }, + { + "id": 437, + "num": 15, + "color": 1, + "special": 5, + "length": 0 + }, + { + "id": 438, + "num": 19, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 439, + "num": 24, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 440, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 441, + "num": 22, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 442, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 443, + "num": 12, + "color": 3, + "special": 5, + "length": 2 + }, + { + "id": 444, + "num": 14, + "color": 3, + "special": 5, + "length": 0 + }, + { + "id": 445, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 446, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level430.json.meta b/assets/custom/Json/level430.json.meta new file mode 100644 index 0000000..106ff99 --- /dev/null +++ b/assets/custom/Json/level430.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8eb67362-4cee-4ec6-9910-00062c40b240", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level431.json b/assets/custom/Json/level431.json new file mode 100644 index 0000000..8940348 --- /dev/null +++ b/assets/custom/Json/level431.json @@ -0,0 +1,395 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "431", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 7, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 14, + "color": 6, + "type": 4, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "freezeTime": 14, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 4, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "freezeTime": 7, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 4, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "freezeTime": 8, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 432, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 433, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 434, + "num": 2, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 435, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 436, + "num": 15, + "color": 3, + "special": 5, + "length": 2 + }, + { + "id": 437, + "num": 17, + "color": 3, + "special": 5, + "length": 0 + }, + { + "id": 438, + "num": 20, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 439, + "num": 28, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 440, + "num": 29, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 441, + "num": 26, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 442, + "num": 24, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 443, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 444, + "num": 11, + "color": 5, + "special": 5, + "length": 2 + }, + { + "id": 445, + "num": 14, + "color": 5, + "special": 5, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level431.json.meta b/assets/custom/Json/level431.json.meta new file mode 100644 index 0000000..1fc260f --- /dev/null +++ b/assets/custom/Json/level431.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2a496227-cb41-4ed7-bd7b-96224ce4fb42", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level432.json b/assets/custom/Json/level432.json new file mode 100644 index 0000000..ccbc971 --- /dev/null +++ b/assets/custom/Json/level432.json @@ -0,0 +1,357 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "432", + "map": [ + 7, + 11 + ], + "time": 150, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 2, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 210 + }, + { + "block": 19, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 14, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "stacking": 6, + "id": 330 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "stacking": 4, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 1, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "stacking": 1, + "id": 350 + }, + { + "block": 1, + "color": 9, + "type": 1, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "stacking": 6, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 6, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "boomTime": 25, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 433, + "num": 0, + "color": 6, + "special": 4, + "length": 2 + }, + { + "id": 434, + "num": 1, + "color": 6, + "special": 4, + "length": 0 + }, + { + "id": 435, + "num": 4, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 436, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 437, + "num": 6, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 438, + "num": 14, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 439, + "num": 17, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 440, + "num": 20, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 441, + "num": 26, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 442, + "num": 27, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 443, + "num": 21, + "color": 2, + "special": 4, + "length": 3 + }, + { + "id": 444, + "num": 22, + "color": 2, + "special": 4, + "length": 0 + }, + { + "id": 445, + "num": 23, + "color": 2, + "special": 4, + "length": 0 + }, + { + "id": 446, + "num": 10, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 447, + "num": 13, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 448, + "num": 7, + "color": 3, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level432.json.meta b/assets/custom/Json/level432.json.meta new file mode 100644 index 0000000..1394071 --- /dev/null +++ b/assets/custom/Json/level432.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d7966401-ee21-40e8-8b71-f6b91f3b934a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level433.json b/assets/custom/Json/level433.json new file mode 100644 index 0000000..ead2bc3 --- /dev/null +++ b/assets/custom/Json/level433.json @@ -0,0 +1,355 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "433", + "map": [ + 9, + 8 + ], + "time": 130, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 11, + "type": 7, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 22, + "color": 8, + "type": 3, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "lockTime": 5, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 434, + "num": 2, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 435, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 436, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 437, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 438, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 439, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 440, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 441, + "num": 20, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 442, + "num": 24, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 443, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 444, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 445, + "num": 14, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 446, + "num": 16, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 447, + "num": 12, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 448, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 449, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level433.json.meta b/assets/custom/Json/level433.json.meta new file mode 100644 index 0000000..296e7ee --- /dev/null +++ b/assets/custom/Json/level433.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "52630b14-3e18-4084-9604-c90aa173e36e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level434.json b/assets/custom/Json/level434.json new file mode 100644 index 0000000..797c8d2 --- /dev/null +++ b/assets/custom/Json/level434.json @@ -0,0 +1,351 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "434", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 11, + "type": 8, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 11, + "type": 8, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 11, + "type": 8, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 5, + "type": 8, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "freezeTime": 7, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 435, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 436, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 437, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 438, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 439, + "num": 13, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 440, + "num": 15, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 441, + "num": 26, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 442, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 443, + "num": 22, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 444, + "num": 23, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 445, + "num": 9, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 446, + "num": 12, + "color": 5, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level434.json.meta b/assets/custom/Json/level434.json.meta new file mode 100644 index 0000000..23c6bef --- /dev/null +++ b/assets/custom/Json/level434.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c934e72a-38aa-4687-88ee-eabd17d0ceb7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level435.json b/assets/custom/Json/level435.json new file mode 100644 index 0000000..ad3e8c7 --- /dev/null +++ b/assets/custom/Json/level435.json @@ -0,0 +1,321 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "435", + "map": [ + 8, + 8 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 4, + "type": 1, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "stacking": 10, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 6, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 1, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "stacking": 9, + "id": 340 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "stacking": 8, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 436, + "num": 1, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 437, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 438, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 439, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 440, + "num": 9, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 441, + "num": 11, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 442, + "num": 13, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 443, + "num": 15, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 444, + "num": 21, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 445, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 446, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 447, + "num": 19, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 448, + "num": 14, + "color": 2, + "special": 3, + "length": 2, + "freeze": 13 + }, + { + "id": 449, + "num": 16, + "color": 2, + "special": 3, + "length": 0, + "freeze": 13 + }, + { + "id": 450, + "num": 12, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 451, + "num": 10, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 452, + "num": 6, + "color": 9, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 453, + "num": 8, + "color": 9, + "special": 3, + "length": 0, + "freeze": 7 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level435.json.meta b/assets/custom/Json/level435.json.meta new file mode 100644 index 0000000..e0c51da --- /dev/null +++ b/assets/custom/Json/level435.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "40dd633e-e8c8-471b-be51-e4bc116ded9b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level436.json b/assets/custom/Json/level436.json new file mode 100644 index 0000000..c53f554 --- /dev/null +++ b/assets/custom/Json/level436.json @@ -0,0 +1,376 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "436", + "map": [ + 9, + 9 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 14, + "color": 1, + "type": 3, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "lockTime": 6, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 437, + "num": 1, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 438, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 439, + "num": 3, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 440, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 441, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 442, + "num": 12, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 443, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 444, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 445, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 446, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 447, + "num": 23, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 448, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 449, + "num": 22, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 450, + "num": 11, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 451, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 452, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level436.json.meta b/assets/custom/Json/level436.json.meta new file mode 100644 index 0000000..c9824fb --- /dev/null +++ b/assets/custom/Json/level436.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3f91c13b-caaa-48ab-90f6-d3eacf961d65", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level437.json b/assets/custom/Json/level437.json new file mode 100644 index 0000000..e7f5dee --- /dev/null +++ b/assets/custom/Json/level437.json @@ -0,0 +1,513 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "437", + "map": [ + 11, + 9 + ], + "time": 105, + "gap": [ + { + "x": 9, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + }, + { + "x": 5, + "y": 5, + "z": 0 + }, + { + "x": 4, + "y": 5, + "z": 0 + }, + { + "x": 4, + "y": 4, + "z": 0 + }, + { + "x": 5, + "y": 4, + "z": 0 + }, + { + "x": 4, + "y": 3, + "z": 0 + }, + { + "x": 5, + "y": 3, + "z": 0 + }, + { + "x": 6, + "y": 4, + "z": 0 + }, + { + "x": 6, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + }, + { + "x": 8, + "y": 4, + "z": 0 + }, + { + "x": 8, + "y": 3, + "z": 0 + }, + { + "x": 9, + "y": 4, + "z": 0 + }, + { + "x": 9, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 420 + }, + { + "block": 13, + "color": 2, + "type": 4, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "freezeTime": 5, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 438, + "num": 1, + "color": 8, + "special": 5, + "length": 2 + }, + { + "id": 439, + "num": 2, + "color": 8, + "special": 5, + "length": 0 + }, + { + "id": 440, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 441, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 442, + "num": 10, + "color": 1, + "special": 5, + "length": 2 + }, + { + "id": 443, + "num": 12, + "color": 1, + "special": 5, + "length": 0 + }, + { + "id": 444, + "num": 31, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 445, + "num": 35, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 446, + "num": 42, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 447, + "num": 43, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 448, + "num": 16, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 449, + "num": 21, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 450, + "num": 40, + "color": 4, + "special": 5, + "length": 2 + }, + { + "id": 451, + "num": 41, + "color": 4, + "special": 5, + "length": 0 + }, + { + "id": 452, + "num": 28, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 453, + "num": 32, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 454, + "num": 36, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 455, + "num": 7, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 456, + "num": 9, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 457, + "num": 11, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level437.json.meta b/assets/custom/Json/level437.json.meta new file mode 100644 index 0000000..e001ff1 --- /dev/null +++ b/assets/custom/Json/level437.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "67e2e0b3-c86b-41d5-a717-f32d6de21071", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level438.json b/assets/custom/Json/level438.json new file mode 100644 index 0000000..904f0d7 --- /dev/null +++ b/assets/custom/Json/level438.json @@ -0,0 +1,430 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 6, + "color": "6" + }, + { + "x": 3, + "y": 5, + "color": "6" + }, + { + "x": 4, + "y": 6, + "color": "6" + }, + { + "x": 4, + "y": 5, + "color": "6" + } + ], + "id": "438", + "map": [ + 8, + 10 + ], + "time": 105, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 8, + "type": 3, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "lockTime": 5, + "id": 430 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "freezeTime": 9, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 439, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 440, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 441, + "num": 5, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 442, + "num": 8, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 443, + "num": 10, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 444, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 445, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 446, + "num": 27, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 447, + "num": 25, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 448, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 449, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 450, + "num": 16, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 451, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 452, + "num": 7, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 453, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level438.json.meta b/assets/custom/Json/level438.json.meta new file mode 100644 index 0000000..b1a3ce5 --- /dev/null +++ b/assets/custom/Json/level438.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f74922b9-ce25-4c5b-a1fc-a99219f517d9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level439.json b/assets/custom/Json/level439.json new file mode 100644 index 0000000..4314cc6 --- /dev/null +++ b/assets/custom/Json/level439.json @@ -0,0 +1,438 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "439", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 19, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 20, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 2, + "color": 2, + "type": 9, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 430, + "num": 2, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 431, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 432, + "num": 4, + "color": 3, + "special": 5, + "length": 2 + }, + { + "id": 433, + "num": 5, + "color": 3, + "special": 5, + "length": 0 + }, + { + "id": 434, + "num": 6, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 435, + "num": 11, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 436, + "num": 17, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 437, + "num": 27, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 438, + "num": 25, + "color": 8, + "special": 5, + "length": 2 + }, + { + "id": 439, + "num": 26, + "color": 8, + "special": 5, + "length": 0 + }, + { + "id": 440, + "num": 23, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 441, + "num": 24, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 442, + "num": 12, + "color": 2, + "special": 0, + "length": 2, + "lock": true + }, + { + "id": 443, + "num": 14, + "color": 2, + "special": 0, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level439.json.meta b/assets/custom/Json/level439.json.meta new file mode 100644 index 0000000..36af0de --- /dev/null +++ b/assets/custom/Json/level439.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e3e383d5-d91f-4db9-9412-e335b27f7ad6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level44.json b/assets/custom/Json/level44.json new file mode 100644 index 0000000..e1c96ef --- /dev/null +++ b/assets/custom/Json/level44.json @@ -0,0 +1,387 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "44", + "map": [ + 8, + 12 + ], + "time": 160, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 1, + "type": 2, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 7, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 3, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 14, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 5, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 16, + "color": 2, + "type": 5, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 18, + "color": 2, + "type": 3, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "lockTime": 5, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 17, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 19, + "color": 2, + "special": 1, + "length": 3 + }, + { + "id": 5, + "num": 21, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 6, + "num": 27, + "color": 2, + "special": 1, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 20, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 28, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 6, + "color": 3, + "special": 1, + "length": 2 + }, + { + "id": 16, + "num": 7, + "color": 3, + "special": 1, + "length": 0 + }, + { + "id": 17, + "num": 33, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 18, + "num": 34, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 32, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 21, + "num": 29, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 22, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 31, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 25, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 26, + "num": 3, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 27, + "num": 2, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level44.json.meta b/assets/custom/Json/level44.json.meta new file mode 100644 index 0000000..1a82073 --- /dev/null +++ b/assets/custom/Json/level44.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "68eef335-f67e-41c3-a232-f99c4ea6797e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level440.json b/assets/custom/Json/level440.json new file mode 100644 index 0000000..d099b37 --- /dev/null +++ b/assets/custom/Json/level440.json @@ -0,0 +1,432 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "440", + "map": [ + 8, + 10 + ], + "time": 160, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 21, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "stacking": 4, + "id": 380 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "stacking": 8, + "id": 390 + }, + { + "block": 2, + "color": 8, + "type": 1, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "stacking": 5, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 1, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "stacking": 5, + "id": 410 + }, + { + "block": 1, + "color": 4, + "type": 1, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "stacking": 1, + "id": 420 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 430 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 440 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "freezeTime": 11, + "id": 450 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "freezeTime": 18, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 441, + "num": 0, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 442, + "num": 2, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 443, + "num": 4, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 444, + "num": 6, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 445, + "num": 13, + "color": 7, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 446, + "num": 15, + "color": 7, + "special": 3, + "length": 0, + "freeze": 15 + }, + { + "id": 447, + "num": 27, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 448, + "num": 25, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 449, + "num": 23, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 450, + "num": 21, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 451, + "num": 14, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 452, + "num": 16, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 453, + "num": 10, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 454, + "num": 12, + "color": 5, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level440.json.meta b/assets/custom/Json/level440.json.meta new file mode 100644 index 0000000..7abf7a2 --- /dev/null +++ b/assets/custom/Json/level440.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "49d9f67f-08ab-4ea9-9aac-4cf9a10833ed", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level441.json b/assets/custom/Json/level441.json new file mode 100644 index 0000000..af040a4 --- /dev/null +++ b/assets/custom/Json/level441.json @@ -0,0 +1,410 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1", + "map": [ + 8, + 10 + ], + "time": 500, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 6, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "boomTime": 25, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 2, + "num": 2, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 3, + "color": 2, + "special": 4, + "length": 2 + }, + { + "id": 4, + "num": 4, + "color": 2, + "special": 4, + "length": 0 + }, + { + "id": 5, + "num": 13, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 15, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 25, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 14, + "color": 8, + "special": 4, + "length": 2 + }, + { + "id": 11, + "num": 16, + "color": 8, + "special": 4, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 12, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level441.json.meta b/assets/custom/Json/level441.json.meta new file mode 100644 index 0000000..9a8fa48 --- /dev/null +++ b/assets/custom/Json/level441.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "0254bf4a-5194-4768-9545-c3720e395a37", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level45.json b/assets/custom/Json/level45.json new file mode 100644 index 0000000..2c04ba7 --- /dev/null +++ b/assets/custom/Json/level45.json @@ -0,0 +1,311 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "45", + "map": [ + 9, + 9 + ], + "time": 170, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 14, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 12, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 18, + "color": 8, + "type": 3, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "lockTime": 3, + "id": 280 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 8, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 21, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 0, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 3, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 4, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 18, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 24, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level45.json.meta b/assets/custom/Json/level45.json.meta new file mode 100644 index 0000000..fc0b7c5 --- /dev/null +++ b/assets/custom/Json/level45.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "20379a36-3946-47df-b5c0-96ac9d277b7d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level46.json b/assets/custom/Json/level46.json new file mode 100644 index 0000000..ff944e1 --- /dev/null +++ b/assets/custom/Json/level46.json @@ -0,0 +1,613 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "46", + "map": [ + 11, + 14 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 19, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": 540, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 20, + "color": 4, + "type": 2, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 19, + "color": 6, + "type": 2, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -720, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -720, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 430 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -120, + "z": 0 + }, + "id": 450 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 0, + "z": 0 + }, + "id": 460 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -120, + "z": 0 + }, + "id": 470 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 490 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 500 + }, + { + "block": 14, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 510 + }, + { + "block": 14, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 520 + }, + { + "block": 20, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -720, + "z": 0 + }, + "id": 530 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 540 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -720, + "z": 0 + }, + "id": 550 + }, + { + "block": 14, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "lockTime": 4, + "id": 560 + }, + { + "block": 2, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": -720, + "z": 0 + }, + "freezeTime": 5, + "id": 570 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 26, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 28, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 13, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 15, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 19, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 27, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 2, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 3, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 4, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 18, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 16, + "num": 20, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 22, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 31, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 19, + "num": 32, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 33, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 38, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 22, + "num": 39, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 40, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 8, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 25, + "num": 9, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 26, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level46.json.meta b/assets/custom/Json/level46.json.meta new file mode 100644 index 0000000..24b7bad --- /dev/null +++ b/assets/custom/Json/level46.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "84916af2-bab0-43e5-91fc-07108bd831ed", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level47.json b/assets/custom/Json/level47.json new file mode 100644 index 0000000..58d3eec --- /dev/null +++ b/assets/custom/Json/level47.json @@ -0,0 +1,197 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "47", + "map": [ + 6, + 8 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "lockTime": 3, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 3, + "type": 4, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "freezeTime": 3, + "id": 300 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 6, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 8, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 10, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 13, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 11, + "color": 2, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level47.json.meta b/assets/custom/Json/level47.json.meta new file mode 100644 index 0000000..1ddd0e1 --- /dev/null +++ b/assets/custom/Json/level47.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "806d1742-26ea-42a9-ac9e-4be66adb4122", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level48.json b/assets/custom/Json/level48.json new file mode 100644 index 0000000..43b9335 --- /dev/null +++ b/assets/custom/Json/level48.json @@ -0,0 +1,495 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "48", + "map": [ + 11, + 13 + ], + "time": 200, + "gap": [ + { + "x": 4, + "y": 11, + "z": 0 + }, + { + "x": 5, + "y": 11, + "z": 0 + }, + { + "x": 6, + "y": 11, + "z": 0 + }, + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 5, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 10, + "z": 0 + }, + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 3, + "z": 0 + }, + { + "x": 5, + "y": 3, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": -660, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -660, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -420, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -660, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -420, + "y": -660, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": -180, + "y": 540, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": 420, + "y": 540, + "z": 0 + }, + "id": 380 + }, + { + "block": 19, + "color": 4, + "type": 2, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 20, + "color": 9, + "type": 2, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 8, + "color": 7, + "type": 3, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "lockTime": 4, + "id": 410 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "freezeTime": 3, + "id": 430 + }, + { + "block": 5, + "color": 2, + "type": 4, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "freezeTime": 3, + "id": 440 + }, + { + "block": 12, + "color": 9, + "type": 4, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "freezeTime": 3, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 49, + "num": 12, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 50, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 51, + "num": 10, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 52, + "num": 4, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 53, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 54, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 55, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 56, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 57, + "num": 51, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 58, + "num": 38, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 59, + "num": 40, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 60, + "num": 37, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 61, + "num": 39, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 62, + "num": 45, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 63, + "num": 46, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 64, + "num": 47, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 65, + "num": 41, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 66, + "num": 42, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 67, + "num": 11, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 68, + "num": 11, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 69, + "num": 13, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level48.json.meta b/assets/custom/Json/level48.json.meta new file mode 100644 index 0000000..b6a78ca --- /dev/null +++ b/assets/custom/Json/level48.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b5a3ac74-65d0-495a-a1ca-fa356fa27044", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level49.json b/assets/custom/Json/level49.json new file mode 100644 index 0000000..e93b8db --- /dev/null +++ b/assets/custom/Json/level49.json @@ -0,0 +1,319 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "49", + "map": [ + 9, + 12 + ], + "time": 180, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 8, + "type": 2, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 260 + }, + { + "block": 16, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 10, + "color": 4, + "type": 3, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "lockTime": 5, + "id": 280 + }, + { + "block": 8, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 6, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 18, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 10, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 22, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 13, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 7, + "num": 19, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 21, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 5, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 6, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 28, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 29, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 30, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level49.json.meta b/assets/custom/Json/level49.json.meta new file mode 100644 index 0000000..e358ff5 --- /dev/null +++ b/assets/custom/Json/level49.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "55a0b4dc-93a3-4a1e-8238-bd44427943ae", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level5.json b/assets/custom/Json/level5.json new file mode 100644 index 0000000..36da20d --- /dev/null +++ b/assets/custom/Json/level5.json @@ -0,0 +1,154 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "5", + "map": [ + 7, + 8 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 250 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 7, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 9, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 13, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 15, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 16, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 8, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level5.json.meta b/assets/custom/Json/level5.json.meta new file mode 100644 index 0000000..46b5b17 --- /dev/null +++ b/assets/custom/Json/level5.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "af87aa67-fec6-4e59-8e5c-e6a5331acc40", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level50.json b/assets/custom/Json/level50.json new file mode 100644 index 0000000..7bf4d3e --- /dev/null +++ b/assets/custom/Json/level50.json @@ -0,0 +1,496 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "50", + "map": [ + 8, + 14 + ], + "time": 200, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 6, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": 480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 480, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 3, + "type": 3, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "lockTime": 4, + "id": 310 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -720, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 7, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -720, + "z": 0 + }, + "id": 400 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "freezeTime": 11, + "id": 410 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "freezeTime": 14, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 20, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 23, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 17, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 25, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 29, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 5, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 42, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 43, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 39, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 40, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 3, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 37, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 38, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 34, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 35, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 0, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 22, + "num": 1, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 18, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 24, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level50.json.meta b/assets/custom/Json/level50.json.meta new file mode 100644 index 0000000..19b250e --- /dev/null +++ b/assets/custom/Json/level50.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6e749de9-76c8-4528-8894-a6b38757e70a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level51.json b/assets/custom/Json/level51.json new file mode 100644 index 0000000..e368435 --- /dev/null +++ b/assets/custom/Json/level51.json @@ -0,0 +1,573 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "51", + "map": [ + 11, + 13 + ], + "time": 250, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 540, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 540, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -660, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -660, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 1, + "type": 8, + "position": { + "x": 60, + "y": -660, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 420, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 540, + "z": 0 + }, + "id": 410 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 420 + }, + { + "block": 5, + "color": 4, + "type": 1, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "stacking": 5, + "id": 430 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -660, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 6, + "type": 8, + "position": { + "x": 540, + "y": -660, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -660, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": -420, + "y": -660, + "z": 0 + }, + "id": 490 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "id": 500 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 540, + "z": 0 + }, + "id": 510 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 520 + }, + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "stacking": 3, + "id": 530 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 540 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "id": 550 + }, + { + "block": 4, + "color": 10, + "type": 1, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "stacking": 2, + "id": 560 + }, + { + "block": 18, + "color": 7, + "type": 1, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "stacking": 9, + "id": 570 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 52, + "num": 20, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 53, + "num": 29, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 54, + "num": 30, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 55, + "num": 25, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 56, + "num": 27, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 57, + "num": 26, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 58, + "num": 28, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 59, + "num": 12, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 60, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 61, + "num": 11, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 62, + "num": 13, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 63, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 64, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 65, + "num": 19, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 66, + "num": 4, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 67, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 68, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 69, + "num": 34, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 70, + "num": 35, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 71, + "num": 36, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level51.json.meta b/assets/custom/Json/level51.json.meta new file mode 100644 index 0000000..33073ed --- /dev/null +++ b/assets/custom/Json/level51.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f6dd9161-ac72-46f4-b977-9943277a79b9", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level52.json b/assets/custom/Json/level52.json new file mode 100644 index 0000000..1fc4127 --- /dev/null +++ b/assets/custom/Json/level52.json @@ -0,0 +1,194 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "52", + "map": [ + 6, + 9 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 310 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 2, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 6, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 12, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level52.json.meta b/assets/custom/Json/level52.json.meta new file mode 100644 index 0000000..932df37 --- /dev/null +++ b/assets/custom/Json/level52.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "77335854-4a1a-4f26-9901-c790758a1ad8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level53.json b/assets/custom/Json/level53.json new file mode 100644 index 0000000..0e6ca8e --- /dev/null +++ b/assets/custom/Json/level53.json @@ -0,0 +1,258 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "53", + "map": [ + 7, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 10, + "type": 9, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 270 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 14, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 20, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 7, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 12, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 8, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 10, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 2, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 3, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 25, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level53.json.meta b/assets/custom/Json/level53.json.meta new file mode 100644 index 0000000..aff3e45 --- /dev/null +++ b/assets/custom/Json/level53.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3d20e513-a37f-4e1f-81b2-ad82655fbae7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level54.json b/assets/custom/Json/level54.json new file mode 100644 index 0000000..66f55df --- /dev/null +++ b/assets/custom/Json/level54.json @@ -0,0 +1,307 @@ +{ + "LEVEL_INFO": [ + { + "id": "54", + "map": [ + 9, + 9 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 14, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 18, + "color": 7, + "type": 9, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 8, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 380 + }, + { + "block": 12, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 55, + "num": 3, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 56, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 57, + "num": 21, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 58, + "num": 22, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 59, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 60, + "num": 0, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 61, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 62, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 63, + "num": 24, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 64, + "num": 25, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 65, + "num": 7, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 66, + "num": 9, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 67, + "num": 17, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 68, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 69, + "num": 12, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 70, + "num": 14, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 71, + "num": 16, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level54.json.meta b/assets/custom/Json/level54.json.meta new file mode 100644 index 0000000..8891159 --- /dev/null +++ b/assets/custom/Json/level54.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "cbbc11d5-5fe4-494b-a51d-a7ff9c6d01f8", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level55.json b/assets/custom/Json/level55.json new file mode 100644 index 0000000..ed3b2ad --- /dev/null +++ b/assets/custom/Json/level55.json @@ -0,0 +1,323 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "55", + "map": [ + 9, + 9 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 3, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "lockTime": 4, + "id": 280 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 9, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 7, + "type": 2, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 7, + "type": 2, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 21, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 8, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 10, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 5, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 7, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 18, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 19, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level55.json.meta b/assets/custom/Json/level55.json.meta new file mode 100644 index 0000000..7c847f4 --- /dev/null +++ b/assets/custom/Json/level55.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a1c4796f-77bf-49c5-9b6a-fc680ac4fd90", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level56.json b/assets/custom/Json/level56.json new file mode 100644 index 0000000..14d4bc3 --- /dev/null +++ b/assets/custom/Json/level56.json @@ -0,0 +1,353 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "56", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 4, + "color": 8, + "type": 8, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 8, + "type": 8, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 8, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 8, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 8, + "type": 8, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "lockTime": 3, + "id": 280 + }, + { + "block": 5, + "color": 5, + "type": 1, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "stacking": 3, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 4, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "freezeTime": 6, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 2, + "color": 1, + "type": 9, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 8, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 15, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 17, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 19, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 20, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 9, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 11, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 14, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 16, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 10, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 18, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 23, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 24, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 13, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level56.json.meta b/assets/custom/Json/level56.json.meta new file mode 100644 index 0000000..19da2e9 --- /dev/null +++ b/assets/custom/Json/level56.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6ceee93b-a101-47f1-9178-07ed9270e9fb", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level57.json b/assets/custom/Json/level57.json new file mode 100644 index 0000000..18a2de4 --- /dev/null +++ b/assets/custom/Json/level57.json @@ -0,0 +1,266 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "57", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 10, + "color": 2, + "type": 9, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 230 + }, + { + "block": 12, + "color": 6, + "type": 9, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 240 + }, + { + "block": 4, + "color": 8, + "type": 9, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 4, + "color": 1, + "type": 9, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 22, + "color": 6, + "type": 3, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "lockTime": 2, + "id": 270 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 20, + "color": 1, + "type": 4, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "freezeTime": 4, + "id": 300 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 25, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 26, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 5, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 16, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 20, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 15, + "num": 21, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 22, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 8, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 18, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level57.json.meta b/assets/custom/Json/level57.json.meta new file mode 100644 index 0000000..15fe5f0 --- /dev/null +++ b/assets/custom/Json/level57.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "aae84cd2-d30f-40b7-9e29-503635e78ad3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level58.json b/assets/custom/Json/level58.json new file mode 100644 index 0000000..1463138 --- /dev/null +++ b/assets/custom/Json/level58.json @@ -0,0 +1,432 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "58", + "map": [ + 10, + 12 + ], + "time": 230, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 8, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 6, + "type": 1, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "stacking": 5, + "id": 360 + }, + { + "block": 4, + "color": 5, + "type": 1, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "stacking": 6, + "id": 370 + }, + { + "block": 19, + "color": 3, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 20, + "color": 9, + "type": 2, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 9, + "type": 8, + "position": { + "x": 480, + "y": 480, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 1, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 4, + "id": 470 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 480 + }, + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 2, + "id": 480 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 480 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 34, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 23, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 13, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 26, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 27, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 10, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 12, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level58.json.meta b/assets/custom/Json/level58.json.meta new file mode 100644 index 0000000..2e8ab53 --- /dev/null +++ b/assets/custom/Json/level58.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d7bd43d2-5cca-4b6c-9e82-a6cc63527ca2", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level59.json b/assets/custom/Json/level59.json new file mode 100644 index 0000000..fb99ab4 --- /dev/null +++ b/assets/custom/Json/level59.json @@ -0,0 +1,469 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "59", + "map": [ + 10, + 12 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 6, + "type": 5, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 4, + "color": 6, + "type": 8, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 5, + "type": 8, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 5, + "type": 8, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 5, + "type": 8, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 5, + "type": 8, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 5, + "type": 8, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 3, + "color": 10, + "type": 7, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 18, + "color": 2, + "type": 1, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "stacking": 10, + "id": 340 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 4, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 3, + "color": 2, + "type": 7, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 5, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 400 + }, + { + "block": 21, + "color": 6, + "type": 4, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "freezeTime": 7, + "id": 410 + }, + { + "block": 22, + "color": 10, + "type": 4, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "freezeTime": 7, + "id": 420 + }, + { + "block": 6, + "color": 1, + "type": 3, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "lockTime": 2, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 34, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 35, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 20, + "color": 6, + "special": 1, + "length": 1 + }, + { + "id": 4, + "num": 14, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 17, + "color": 1, + "special": 1, + "length": 3 + }, + { + "id": 8, + "num": 19, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 9, + "num": 21, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 10, + "num": 15, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 3, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 30, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 31, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 0, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 32, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level59.json.meta b/assets/custom/Json/level59.json.meta new file mode 100644 index 0000000..06785b8 --- /dev/null +++ b/assets/custom/Json/level59.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9fab4afa-0132-4bff-a174-be0bf9309e99", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level6.json b/assets/custom/Json/level6.json new file mode 100644 index 0000000..79ab8a0 --- /dev/null +++ b/assets/custom/Json/level6.json @@ -0,0 +1,208 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "6", + "map": [ + 8, + 8 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 280 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 7, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 9, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 11, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 2, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 20, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 8, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 14, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 16, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level6.json.meta b/assets/custom/Json/level6.json.meta new file mode 100644 index 0000000..425445b --- /dev/null +++ b/assets/custom/Json/level6.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d42cfa1a-14e6-427c-ad23-2cee3474ca86", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level60.json b/assets/custom/Json/level60.json new file mode 100644 index 0000000..21ce44e --- /dev/null +++ b/assets/custom/Json/level60.json @@ -0,0 +1,283 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "60", + "map": [ + 6, + 9 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 4, + "type": 5, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 5, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 4, + "type": 5, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 4, + "type": 5, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 4, + "type": 5, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 4, + "type": 5, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 3, + "type": 5, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 18, + "color": 3, + "special": 1, + "length": 1 + }, + { + "id": 2, + "num": 21, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 7, + "color": 4, + "special": 1, + "length": 1 + }, + { + "id": 4, + "num": 13, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 15, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 14, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 6, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 3, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level60.json.meta b/assets/custom/Json/level60.json.meta new file mode 100644 index 0000000..cf7b585 --- /dev/null +++ b/assets/custom/Json/level60.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "f4cdb20d-19b1-4bdf-ace4-709363ecabc5", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level61.json b/assets/custom/Json/level61.json new file mode 100644 index 0000000..36f8479 --- /dev/null +++ b/assets/custom/Json/level61.json @@ -0,0 +1,221 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "61", + "map": [ + 7, + 9 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 320 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 11, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 23, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 22, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 1, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 0, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 8, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 7, + "num": 10, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 8, + "num": 14, + "color": 2, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 9, + "num": 16, + "color": 2, + "special": 2, + "length": 0, + "lock": false + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level61.json.meta b/assets/custom/Json/level61.json.meta new file mode 100644 index 0000000..14b18ab --- /dev/null +++ b/assets/custom/Json/level61.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7e27fe4e-f930-480a-8d92-0c3107d28e74", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level62.json b/assets/custom/Json/level62.json new file mode 100644 index 0000000..c9176a1 --- /dev/null +++ b/assets/custom/Json/level62.json @@ -0,0 +1,349 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "62", + "map": [ + 10, + 11 + ], + "time": 150, + "gap": [ + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 18, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 18, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 7, + "type": 0, + "position": { + "x": 480, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 17, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -360, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 16, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 20, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 35, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 36, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 37, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 6, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 7, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 8, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 23, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 15, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 19, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 9, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 11, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 13, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 33, + "color": 2, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 17, + "num": 34, + "color": 2, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 18, + "num": 4, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 19, + "num": 5, + "color": 9, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level62.json.meta b/assets/custom/Json/level62.json.meta new file mode 100644 index 0000000..c6ce532 --- /dev/null +++ b/assets/custom/Json/level62.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e08a7960-96e0-4c20-85a3-daecc3c215db", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level63.json b/assets/custom/Json/level63.json new file mode 100644 index 0000000..1a68532 --- /dev/null +++ b/assets/custom/Json/level63.json @@ -0,0 +1,281 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "63", + "map": [ + 6, + 9 + ], + "time": 135, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 5, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 5, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 5, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 9, + "type": 5, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 9, + "type": 5, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 9, + "type": 5, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 14, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 13, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 7, + "color": 4, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 7, + "num": 6, + "color": 6, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 8, + "num": 21, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 15, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 10, + "num": 18, + "color": 3, + "special": 1, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level63.json.meta b/assets/custom/Json/level63.json.meta new file mode 100644 index 0000000..94ddea5 --- /dev/null +++ b/assets/custom/Json/level63.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "060510e3-3b32-4b9c-8f09-d72f9b820eda", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level64.json b/assets/custom/Json/level64.json new file mode 100644 index 0000000..56f7513 --- /dev/null +++ b/assets/custom/Json/level64.json @@ -0,0 +1,292 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "64", + "map": [ + 8, + 8 + ], + "time": 170, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 6, + "color": 5, + "type": 1, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "stacking": 3, + "id": 310 + }, + { + "block": 10, + "color": 3, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 5, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "stacking": 5, + "id": 330 + }, + { + "block": 2, + "color": 1, + "type": 1, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "stacking": 2, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 1, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "stacking": 6, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 7, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 18, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 11, + "color": 2, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 4, + "num": 13, + "color": 6, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 5, + "num": 17, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 19, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 20, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 16, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 6, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 0, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 1, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level64.json.meta b/assets/custom/Json/level64.json.meta new file mode 100644 index 0000000..2e733fb --- /dev/null +++ b/assets/custom/Json/level64.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c59bbf88-51e4-47a8-8290-7f93cd2e8748", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level65.json b/assets/custom/Json/level65.json new file mode 100644 index 0000000..6651cac --- /dev/null +++ b/assets/custom/Json/level65.json @@ -0,0 +1,259 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "65", + "map": [ + 7, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 18, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 16, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 17, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 310 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 3, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 2, + "num": 4, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 3, + "num": 0, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 5, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 23, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 24, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 25, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 18, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 19, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 21, + "color": 2, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 16, + "num": 22, + "color": 2, + "special": 2, + "length": 0, + "lock": false + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level65.json.meta b/assets/custom/Json/level65.json.meta new file mode 100644 index 0000000..7214bdc --- /dev/null +++ b/assets/custom/Json/level65.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ec4fd522-e3c4-4f7d-870c-f8a4e9ad722a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level66.json b/assets/custom/Json/level66.json new file mode 100644 index 0000000..26b26cd --- /dev/null +++ b/assets/custom/Json/level66.json @@ -0,0 +1,319 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "66", + "map": [ + 10, + 10 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 18, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 20, + "color": 9, + "type": 2, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 18, + "color": 9, + "type": 3, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "lockTime": 4, + "id": 350 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 8, + "color": 5, + "type": 4, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "freezeTime": 3, + "id": 370 + }, + { + "block": 12, + "color": 7, + "type": 4, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "freezeTime": 3, + "id": 380 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "freezeTime": 5, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 2, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 3, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 14, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 16, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 26, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 28, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level66.json.meta b/assets/custom/Json/level66.json.meta new file mode 100644 index 0000000..e31ebcb --- /dev/null +++ b/assets/custom/Json/level66.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "baef7421-d845-44a8-b30c-616eb0b30b1f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level67.json b/assets/custom/Json/level67.json new file mode 100644 index 0000000..45fc21f --- /dev/null +++ b/assets/custom/Json/level67.json @@ -0,0 +1,213 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "67", + "map": [ + 6, + 8 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 6, + "type": 4, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "freezeTime": 5, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 320 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 3, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 2, + "num": 3, + "color": 8, + "special": 2, + "length": 1, + "lock": false + }, + { + "id": 3, + "num": 5, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 19, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 14, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level67.json.meta b/assets/custom/Json/level67.json.meta new file mode 100644 index 0000000..9a8f659 --- /dev/null +++ b/assets/custom/Json/level67.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "1b839414-50d7-4a44-92ce-e3ae734be929", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level68.json b/assets/custom/Json/level68.json new file mode 100644 index 0000000..f2a2fef --- /dev/null +++ b/assets/custom/Json/level68.json @@ -0,0 +1,565 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "68", + "map": [ + 11, + 11 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 9, + "y": 9, + "z": 0 + }, + { + "x": 9, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 9, + "y": 2, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 60, + "z": 0 + }, + "id": 360 + }, + { + "block": 18, + "color": 4, + "type": 3, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "lockTime": 3, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 17, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 20, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 410 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 420 + }, + { + "block": 18, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 7, + "type": 4, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "freezeTime": 11, + "id": 480 + }, + { + "block": 1, + "color": 7, + "type": 4, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "freezeTime": 11, + "id": 490 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "freezeTime": 11, + "id": 500 + }, + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "freezeTime": 11, + "id": 510 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "freezeTime": 11, + "id": 520 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "freezeTime": 11, + "id": 530 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "freezeTime": 11, + "id": 540 + }, + { + "block": 1, + "color": 9, + "type": 4, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "freezeTime": 11, + "id": 550 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "freezeTime": 11, + "id": 560 + }, + { + "block": 1, + "color": 6, + "type": 4, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "freezeTime": 11, + "id": 570 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 20, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 35, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 33, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 31, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 0, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 2, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 4, + "color": 6, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level68.json.meta b/assets/custom/Json/level68.json.meta new file mode 100644 index 0000000..127f9fb --- /dev/null +++ b/assets/custom/Json/level68.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9f736ed8-71dc-43c5-9d96-bfbf81ade90d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level69.json b/assets/custom/Json/level69.json new file mode 100644 index 0000000..a9f8870 --- /dev/null +++ b/assets/custom/Json/level69.json @@ -0,0 +1,512 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "69", + "map": [ + 10, + 13 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 540, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 540, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "id": 340 + }, + { + "block": 3, + "color": 7, + "type": 2, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 3, + "color": 8, + "type": 2, + "position": { + "x": 480, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 0, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 410 + }, + { + "block": 6, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 420 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 440 + }, + { + "block": 5, + "color": 6, + "type": 5, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 450 + }, + { + "block": 5, + "color": 1, + "type": 5, + "position": { + "x": 360, + "y": -660, + "z": 0 + }, + "id": 460 + }, + { + "block": 21, + "color": 5, + "type": 4, + "position": { + "x": -240, + "y": 420, + "z": 0 + }, + "freezeTime": 2, + "id": 480 + }, + { + "block": 22, + "color": 10, + "type": 4, + "position": { + "x": 360, + "y": 420, + "z": 0 + }, + "freezeTime": 2, + "id": 490 + }, + { + "block": 5, + "color": 7, + "type": 3, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "lockTime": 4, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 28, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 29, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 30, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 22, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 16, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 11, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 13, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 21, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 6, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 7, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 8, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 24, + "color": 6, + "special": 1, + "length": 2 + }, + { + "id": 16, + "num": 26, + "color": 6, + "special": 1, + "length": 0 + }, + { + "id": 17, + "num": 1, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 18, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 12, + "color": 1, + "special": 1, + "length": 2 + }, + { + "id": 21, + "num": 14, + "color": 1, + "special": 1, + "length": 0 + }, + { + "id": 22, + "num": 33, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 23, + "num": 34, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 24, + "num": 35, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level69.json.meta b/assets/custom/Json/level69.json.meta new file mode 100644 index 0000000..8f63a0d --- /dev/null +++ b/assets/custom/Json/level69.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c63bea39-61e5-4b89-b514-d84a84d5b3cf", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level7.json b/assets/custom/Json/level7.json new file mode 100644 index 0000000..a0a57e9 --- /dev/null +++ b/assets/custom/Json/level7.json @@ -0,0 +1,300 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "7", + "map": [ + 7, + 9 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 7, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 8, + "type": 7, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 6, + "type": 7, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 270 + }, + { + "block": 10, + "color": 2, + "type": 8, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 8, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 4, + "type": 8, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 300 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 17, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 18, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 6, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 5, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 0, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 20, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 23, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 14, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 10, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 7, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 19, + "num": 9, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 11, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 21, + "num": 13, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 22, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 23, + "num": 8, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level7.json.meta b/assets/custom/Json/level7.json.meta new file mode 100644 index 0000000..beddfd8 --- /dev/null +++ b/assets/custom/Json/level7.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "ee202f7f-e6c8-47ef-b7fd-86021066be83", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level70.json b/assets/custom/Json/level70.json new file mode 100644 index 0000000..874561a --- /dev/null +++ b/assets/custom/Json/level70.json @@ -0,0 +1,203 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "69", + "map": [ + 7, + 8 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 5, + "y": 6, + "z": 0 + }, + { + "x": 5, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 9, + "type": 6, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "boomTime": 45, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 300 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 9, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 18, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 10, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level70.json.meta b/assets/custom/Json/level70.json.meta new file mode 100644 index 0000000..592509a --- /dev/null +++ b/assets/custom/Json/level70.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3890fe43-f2f3-4d6e-acfa-07ba7794f7b6", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level71.json b/assets/custom/Json/level71.json new file mode 100644 index 0000000..3a243b4 --- /dev/null +++ b/assets/custom/Json/level71.json @@ -0,0 +1,281 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "71", + "map": [ + 9, + 11 + ], + "time": 130, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 17, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 16, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 18, + "color": 5, + "type": 6, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "boomTime": 35, + "id": 320 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 23, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 22, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 29, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 12, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 14, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 16, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 20, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 15, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level71.json.meta b/assets/custom/Json/level71.json.meta new file mode 100644 index 0000000..ae68c60 --- /dev/null +++ b/assets/custom/Json/level71.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9014f392-1f3d-42dc-820c-81454dde192d", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level72.json b/assets/custom/Json/level72.json new file mode 100644 index 0000000..c604333 --- /dev/null +++ b/assets/custom/Json/level72.json @@ -0,0 +1,210 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "72", + "map": [ + 7, + 8 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 18, + "color": 5, + "type": 6, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "boomTime": 50, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 7, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 3, + "type": 8, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 9, + "type": 8, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 300 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 15, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 7, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 17, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 8, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 12, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level72.json.meta b/assets/custom/Json/level72.json.meta new file mode 100644 index 0000000..f602828 --- /dev/null +++ b/assets/custom/Json/level72.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6db06cce-ee05-4014-ac50-77f548822135", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level73.json b/assets/custom/Json/level73.json new file mode 100644 index 0000000..54daf87 --- /dev/null +++ b/assets/custom/Json/level73.json @@ -0,0 +1,262 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "73", + "map": [ + 6, + 9 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 5, + "type": 6, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "boomTime": 45, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 5, + "position": { + "x": 240, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 9, + "type": 5, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 3, + "type": 5, + "position": { + "x": 0, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -300, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 13, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 18, + "color": 3, + "special": 1, + "length": 1 + }, + { + "id": 4, + "num": 21, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 7, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 6, + "num": 3, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 12, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level73.json.meta b/assets/custom/Json/level73.json.meta new file mode 100644 index 0000000..00e8cda --- /dev/null +++ b/assets/custom/Json/level73.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "340d8651-c630-4ee0-a083-7835c3d0eb51", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level74.json b/assets/custom/Json/level74.json new file mode 100644 index 0000000..9c03f31 --- /dev/null +++ b/assets/custom/Json/level74.json @@ -0,0 +1,262 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "74", + "map": [ + 8, + 9 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 14, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 19, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 250 + }, + { + "block": 4, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 3, + "type": 6, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "boomTime": 50, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -240, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "lockTime": 4, + "id": 320 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 60, + "z": 0 + }, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 22, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 15, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 19, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 0, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 3, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 8, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level74.json.meta b/assets/custom/Json/level74.json.meta new file mode 100644 index 0000000..1f1e019 --- /dev/null +++ b/assets/custom/Json/level74.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "563da8e2-de9f-46ff-9eae-3f58663508f1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level75.json b/assets/custom/Json/level75.json new file mode 100644 index 0000000..25a6087 --- /dev/null +++ b/assets/custom/Json/level75.json @@ -0,0 +1,433 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "75", + "map": [ + 9, + 12 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -600, + "z": 0 + }, + "id": 330 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 3, + "type": 7, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 420 + }, + { + "block": 21, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 460 + }, + { + "block": 5, + "color": 2, + "type": 6, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "boomTime": 50, + "id": 470 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 5, + "type": 7, + "position": { + "x": 60, + "y": 480, + "z": 0 + }, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 17, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 8, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 9, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 32, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 33, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 28, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 24, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level75.json.meta b/assets/custom/Json/level75.json.meta new file mode 100644 index 0000000..fc68f73 --- /dev/null +++ b/assets/custom/Json/level75.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "a059709c-98ea-4ff7-b95d-1147b409e547", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level76.json b/assets/custom/Json/level76.json new file mode 100644 index 0000000..aaf08b9 --- /dev/null +++ b/assets/custom/Json/level76.json @@ -0,0 +1,329 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "76", + "map": [ + 7, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 18, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "adhesiveTime": 1, + "id": 260 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "adhesiveTime": 2, + "id": 270 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 290 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 2, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 3, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 5, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 20, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 21, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 22, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 10, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 12, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level76.json.meta b/assets/custom/Json/level76.json.meta new file mode 100644 index 0000000..e65b684 --- /dev/null +++ b/assets/custom/Json/level76.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "5f6898a9-23b4-4e9c-b751-017617017813", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level77.json b/assets/custom/Json/level77.json new file mode 100644 index 0000000..cba5fd3 --- /dev/null +++ b/assets/custom/Json/level77.json @@ -0,0 +1,470 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "77", + "map": [ + 10, + 12 + ], + "time": 180, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 18, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 18, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 5, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 5, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 5, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 430 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 2, + "type": 3, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "lockTime": 6, + "id": 450 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 470 + }, + { + "block": 4, + "color": 5, + "type": 4, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "freezeTime": 5, + "id": 480 + }, + { + "block": 4, + "color": 7, + "type": 4, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "freezeTime": 10, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 28, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 29, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 30, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 7, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 2, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 3, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 15, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 9, + "num": 33, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 17, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 19, + "color": 3, + "special": 1, + "length": 1 + }, + { + "id": 12, + "num": 26, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 27, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 16, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 21, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level77.json.meta b/assets/custom/Json/level77.json.meta new file mode 100644 index 0000000..f81fd56 --- /dev/null +++ b/assets/custom/Json/level77.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3518f8c0-d85b-48fb-99ed-41718f2bcff1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level78.json b/assets/custom/Json/level78.json new file mode 100644 index 0000000..78c6528 --- /dev/null +++ b/assets/custom/Json/level78.json @@ -0,0 +1,353 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "78", + "map": [ + 9, + 9 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 7, + "type": 6, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "boomTime": 60, + "id": 220 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 14, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 15, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 380 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 10, + "type": 4, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "freezeTime": 4, + "id": 400 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 21, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 11, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 13, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 5, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 24, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 10, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level78.json.meta b/assets/custom/Json/level78.json.meta new file mode 100644 index 0000000..fd2f6ed --- /dev/null +++ b/assets/custom/Json/level78.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "da943e93-7ecf-4ff8-936c-5a9c26a88a32", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level79.json b/assets/custom/Json/level79.json new file mode 100644 index 0000000..55e24ff --- /dev/null +++ b/assets/custom/Json/level79.json @@ -0,0 +1,502 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "79", + "map": [ + 10, + 12 + ], + "time": 220, + "gap": [ + { + "x": 6, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 3, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 2, + "y": 9, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "lockTime": 4, + "id": 210 + }, + { + "block": 12, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "stacking": 2, + "id": 230 + }, + { + "block": 8, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 5, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 21, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 3, + "type": 1, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "stacking": 5, + "id": 300 + }, + { + "block": 4, + "color": 3, + "type": 1, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "stacking": 1, + "id": 310 + }, + { + "block": 23, + "color": 3, + "type": 1, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "stacking": 1, + "id": 320 + }, + { + "block": 23, + "color": 3, + "type": 1, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "stacking": 1, + "id": 330 + }, + { + "block": 23, + "color": 3, + "type": 1, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "stacking": 1, + "id": 340 + }, + { + "block": 23, + "color": 3, + "type": 1, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "stacking": 1, + "id": 350 + }, + { + "block": 23, + "color": 3, + "type": 1, + "position": { + "x": -360, + "y": 120, + "z": 0 + }, + "stacking": 1, + "id": 360 + }, + { + "block": 23, + "color": 3, + "type": 1, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "stacking": 1, + "id": 370 + }, + { + "block": 23, + "color": 3, + "type": 1, + "position": { + "x": 480, + "y": 120, + "z": 0 + }, + "stacking": 1, + "id": 380 + }, + { + "block": 23, + "color": 3, + "type": 1, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "stacking": 1, + "id": 390 + }, + { + "block": 23, + "color": 10, + "type": 3, + "position": { + "x": -360, + "y": -600, + "z": 0 + }, + "lockTime": 0, + "id": 440 + }, + { + "block": 23, + "color": 10, + "type": 3, + "position": { + "x": 480, + "y": -600, + "z": 0 + }, + "lockTime": 0, + "id": 450 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 460 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -600, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": -600, + "z": 0 + }, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 9, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 13, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 20, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 23, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 1, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 30, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 3, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 32, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 33, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 18, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 16, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level79.json.meta b/assets/custom/Json/level79.json.meta new file mode 100644 index 0000000..89ecf68 --- /dev/null +++ b/assets/custom/Json/level79.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8ccfd006-2c8d-426d-8d3a-3560e61de24e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level8.json b/assets/custom/Json/level8.json new file mode 100644 index 0000000..1d28060 --- /dev/null +++ b/assets/custom/Json/level8.json @@ -0,0 +1,278 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "8", + "map": [ + 7, + 9 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 20, + "color": 2, + "type": 8, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 8, + "type": 7, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 15, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 12, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 350 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 10, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 14, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 3, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 4, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 6, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 19, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 9, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 11, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 13, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 20, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 12, + "num": 21, + "color": 3, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level8.json.meta b/assets/custom/Json/level8.json.meta new file mode 100644 index 0000000..3cb3bdc --- /dev/null +++ b/assets/custom/Json/level8.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c1046fe0-8030-42b7-80d1-002890db1a07", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level80.json b/assets/custom/Json/level80.json new file mode 100644 index 0000000..d813383 --- /dev/null +++ b/assets/custom/Json/level80.json @@ -0,0 +1,267 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "80", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 5, + "type": 6, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "boomTime": 60, + "id": 210 + }, + { + "block": 18, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 18, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 5, + "color": 7, + "type": 1, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "stacking": 6, + "id": 280 + }, + { + "block": 5, + "color": 1, + "type": 1, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "stacking": 2, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "stacking": 1, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "stacking": 5, + "id": 310 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 8, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 10, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 22, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 9, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 11, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 4, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 8, + "num": 5, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 28, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 29, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 30, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 21, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level80.json.meta b/assets/custom/Json/level80.json.meta new file mode 100644 index 0000000..3b11ff8 --- /dev/null +++ b/assets/custom/Json/level80.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "da9fa04e-0928-44bc-8a94-069188915bc3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level81.json b/assets/custom/Json/level81.json new file mode 100644 index 0000000..c01e68d --- /dev/null +++ b/assets/custom/Json/level81.json @@ -0,0 +1,496 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "81", + "map": [ + 9, + 13 + ], + "time": 150, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 10, + "type": 7, + "position": { + "x": -60, + "y": 540, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 10, + "type": 1, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "stacking": 8, + "id": 220 + }, + { + "block": 5, + "color": 8, + "type": 1, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "stacking": 10, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 2, + "type": 2, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 420, + "y": 420, + "z": 0 + }, + "id": 300 + }, + { + "block": 18, + "color": 1, + "type": 3, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "lockTime": 7, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "lockTime": 7, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "lockTime": 7, + "id": 360 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "lockTime": 7, + "id": 370 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 380 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 390 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 400 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "lockTime": 7, + "id": 410 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "lockTime": 7, + "id": 420 + }, + { + "block": 23, + "color": 1, + "type": 3, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "lockTime": 7, + "id": 430 + }, + { + "block": 1, + "color": 7, + "type": 7, + "position": { + "x": -180, + "y": -660, + "z": 0 + }, + "id": 440 + }, + { + "block": 1, + "color": 5, + "type": 7, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 450 + }, + { + "block": 1, + "color": 9, + "type": 7, + "position": { + "x": 300, + "y": 420, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 540, + "z": 0 + }, + "id": 480 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 490 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 500 + }, + { + "block": 4, + "color": 2, + "type": 1, + "position": { + "x": 180, + "y": -660, + "z": 0 + }, + "stacking": 8, + "id": 510 + }, + { + "block": 4, + "color": 8, + "type": 1, + "position": { + "x": -60, + "y": -660, + "z": 0 + }, + "stacking": 1, + "id": 520 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 34, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 35, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 10, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 22, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 15, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 12, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 19, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 25, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 26, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level81.json.meta b/assets/custom/Json/level81.json.meta new file mode 100644 index 0000000..653fcda --- /dev/null +++ b/assets/custom/Json/level81.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "847af5ce-99e2-4928-a762-6cf0be6e0313", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level82.json b/assets/custom/Json/level82.json new file mode 100644 index 0000000..11ad894 --- /dev/null +++ b/assets/custom/Json/level82.json @@ -0,0 +1,442 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "82", + "map": [ + 11, + 11 + ], + "time": 180, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 2, + "type": 2, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 4, + "color": 2, + "type": 2, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 5, + "color": 9, + "type": 4, + "position": { + "x": 540, + "y": 300, + "z": 0 + }, + "freezeTime": 5, + "id": 300 + }, + { + "block": 14, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 540, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 19, + "color": 6, + "type": 2, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 360 + }, + { + "block": 15, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 410 + }, + { + "block": 5, + "color": 5, + "type": 4, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "freezeTime": 3, + "id": 420 + }, + { + "block": 5, + "color": 6, + "type": 4, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "freezeTime": 6, + "id": 430 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "freezeTime": 7, + "id": 440 + }, + { + "block": 3, + "color": 1, + "type": 3, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "lockTime": 5, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 15, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 17, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 16, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 20, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 24, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 26, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 10, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 12, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 3, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 4, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 30, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 31, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 32, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 23, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 20, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level82.json.meta b/assets/custom/Json/level82.json.meta new file mode 100644 index 0000000..ed55b9e --- /dev/null +++ b/assets/custom/Json/level82.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "08ba6e2c-b755-496e-8698-1b49e2137e72", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level83.json b/assets/custom/Json/level83.json new file mode 100644 index 0000000..684998a --- /dev/null +++ b/assets/custom/Json/level83.json @@ -0,0 +1,485 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "83", + "map": [ + 10, + 12 + ], + "time": 70, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 480, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 20, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -360, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 460 + }, + { + "block": 20, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": 360, + "y": 480, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 490 + }, + { + "block": 5, + "color": 8, + "type": 4, + "position": { + "x": 360, + "y": -600, + "z": 0 + }, + "freezeTime": 1, + "id": 500 + }, + { + "block": 10, + "color": 8, + "type": 4, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "freezeTime": 2, + "id": 510 + }, + { + "block": 2, + "color": 7, + "type": 4, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "freezeTime": 5, + "id": 520 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "freezeTime": 7, + "id": 530 + }, + { + "block": 19, + "color": 8, + "type": 3, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "lockTime": 3, + "id": 540 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 430 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 440 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 450 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 460 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 470 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 480 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 490 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 500 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 510 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 520 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -360, + "z": 0 + }, + "id": 530 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 540 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 84, + "num": 26, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 85, + "num": 27, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 86, + "num": 10, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 87, + "num": 14, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 88, + "num": 16, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 89, + "num": 18, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 90, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 91, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 92, + "num": 22, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 93, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 94, + "num": 10, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 95, + "num": 12, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level83.json.meta b/assets/custom/Json/level83.json.meta new file mode 100644 index 0000000..20e32d7 --- /dev/null +++ b/assets/custom/Json/level83.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4ecec063-d01a-4047-a6bf-2af9daa39c0e", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level84.json b/assets/custom/Json/level84.json new file mode 100644 index 0000000..addd84a --- /dev/null +++ b/assets/custom/Json/level84.json @@ -0,0 +1,387 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "84", + "map": [ + 11, + 13 + ], + "time": 275, + "gap": [ + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 9, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 6, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 6, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 10, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 6, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 7, + "type": 2, + "position": { + "x": 180, + "y": -660, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 8, + "type": 2, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 4, + "color": 10, + "type": 2, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 540, + "y": 420, + "z": 0 + }, + "id": 300 + }, + { + "block": 4, + "color": 2, + "type": 3, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "lockTime": 5, + "id": 310 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 10, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 10, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 7, + "type": 4, + "position": { + "x": -300, + "y": -540, + "z": 0 + }, + "freezeTime": 8, + "id": 380 + }, + { + "block": 5, + "color": 1, + "type": 4, + "position": { + "x": 540, + "y": -540, + "z": 0 + }, + "freezeTime": 12, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 3, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 1, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 34, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 7, + "num": 35, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 36, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 32, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 33, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 17, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 21, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 18, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 20, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 22, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level84.json.meta b/assets/custom/Json/level84.json.meta new file mode 100644 index 0000000..7dcece3 --- /dev/null +++ b/assets/custom/Json/level84.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "61ccb2ff-6d22-465b-a4c2-e30a8362e201", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level85.json b/assets/custom/Json/level85.json new file mode 100644 index 0000000..f799ee1 --- /dev/null +++ b/assets/custom/Json/level85.json @@ -0,0 +1,317 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "86", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 4, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "lockTime": 6, + "id": 320 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 4, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 22, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 15, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 22, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 3, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 12, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 14, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 8, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 10, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level85.json.meta b/assets/custom/Json/level85.json.meta new file mode 100644 index 0000000..6daa1ce --- /dev/null +++ b/assets/custom/Json/level85.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7deeab69-13fa-4f8b-8366-de153a780366", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level86.json b/assets/custom/Json/level86.json new file mode 100644 index 0000000..cc6bd05 --- /dev/null +++ b/assets/custom/Json/level86.json @@ -0,0 +1,405 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "86", + "map": [ + 9, + 9 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 2, + "type": 5, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 5, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 5, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 8, + "type": 2, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 3, + "type": 2, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 3, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 5, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "lockTime": 4, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 6, + "color": 2, + "special": 1, + "length": 1 + }, + { + "id": 2, + "num": 24, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 3, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 26, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 12, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 14, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 27, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 9, + "num": 3, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 5, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 22, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 23, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 11, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 7, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 20, + "num": 19, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level86.json.meta b/assets/custom/Json/level86.json.meta new file mode 100644 index 0000000..f50b2ac --- /dev/null +++ b/assets/custom/Json/level86.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4eefa689-9a3c-4525-90f7-02e393e84cea", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level87.json b/assets/custom/Json/level87.json new file mode 100644 index 0000000..194c019 --- /dev/null +++ b/assets/custom/Json/level87.json @@ -0,0 +1,518 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "87", + "map": [ + 9, + 11 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 3, + "z": 0 + }, + { + "x": 2, + "y": 4, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 3, + "y": 4, + "z": 0 + }, + { + "x": 3, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 6, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 8, + "type": 3, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "lockTime": 4, + "id": 240 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 8, + "type": 4, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "freezeTime": 5, + "id": 390 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "freezeTime": 8, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 30, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 2, + "num": 31, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 3, + "num": 20, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 4, + "num": 21, + "color": 2, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 5, + "num": 26, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 6, + "num": 27, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 7, + "num": 0, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 1, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 9, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 8, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 12, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 22, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 24, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 28, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 29, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 20, + "color": 2, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 19, + "num": 21, + "color": 2, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level87.json.meta b/assets/custom/Json/level87.json.meta new file mode 100644 index 0000000..0448bc6 --- /dev/null +++ b/assets/custom/Json/level87.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "8ededb2a-b535-494b-b582-046a008ff748", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level88.json b/assets/custom/Json/level88.json new file mode 100644 index 0000000..cc7112b --- /dev/null +++ b/assets/custom/Json/level88.json @@ -0,0 +1,564 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "88", + "map": [ + 10, + 15 + ], + "time": 170, + "gap": [ + { + "x": 4, + "y": 13, + "z": 0 + }, + { + "x": 5, + "y": 13, + "z": 0 + }, + { + "x": 5, + "y": 12, + "z": 0 + }, + { + "x": 4, + "y": 12, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -240, + "y": 660, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": 480, + "y": -780, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": -360, + "y": -660, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": -360, + "y": -780, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": -120, + "y": 540, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": -120, + "y": 660, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": 480, + "y": -660, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": 660, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": 540, + "z": 0 + }, + "id": 300 + }, + { + "block": 5, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": -660, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 7, + "type": 3, + "position": { + "x": 120, + "y": -60, + "z": 0 + }, + "lockTime": 4, + "id": 330 + }, + { + "block": 5, + "color": 2, + "type": 3, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "lockTime": 4, + "id": 340 + }, + { + "block": 21, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -660, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": 540, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": 660, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": 540, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -300, + "z": 0 + }, + "id": 440 + }, + { + "block": 16, + "color": 2, + "type": 0, + "position": { + "x": -360, + "y": 180, + "z": 0 + }, + "id": 450 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 460 + }, + { + "block": 4, + "color": 8, + "type": 2, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 470 + }, + { + "block": 17, + "color": 3, + "type": 0, + "position": { + "x": 480, + "y": 180, + "z": 0 + }, + "id": 480 + }, + { + "block": 4, + "color": 4, + "type": 2, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 52, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 14, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 49, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 50, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 5, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 42, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 46, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 21, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 35, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 37, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 2, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 14, + "num": 3, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 6, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 16, + "num": 7, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 17, + "num": 8, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 53, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 19, + "num": 54, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 20, + "num": 55, + "color": 4, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level88.json.meta b/assets/custom/Json/level88.json.meta new file mode 100644 index 0000000..252f7e7 --- /dev/null +++ b/assets/custom/Json/level88.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "bb571474-49d3-4334-91c9-6c535fca4acc", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level89.json b/assets/custom/Json/level89.json new file mode 100644 index 0000000..2f19866 --- /dev/null +++ b/assets/custom/Json/level89.json @@ -0,0 +1,455 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "89", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 20, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 5, + "id": 350 + }, + { + "block": 22, + "color": 3, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 10, + "type": 6, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "boomTime": 25, + "id": 440 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 460 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 470 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 480 + }, + { + "block": 1, + "color": 4, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 1, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 2, + "num": 10, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 12, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 11, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 14, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 16, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 23, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 13, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 3, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 15, + "num": 24, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 25, + "color": 10, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level89.json.meta b/assets/custom/Json/level89.json.meta new file mode 100644 index 0000000..e97c9da --- /dev/null +++ b/assets/custom/Json/level89.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "7b899124-e65f-42ca-9360-04616684e7c1", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level9.json b/assets/custom/Json/level9.json new file mode 100644 index 0000000..9322fbf --- /dev/null +++ b/assets/custom/Json/level9.json @@ -0,0 +1,216 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "9", + "map": [ + 8, + 8 + ], + "time": 180, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 1, + "type": 7, + "position": { + "x": 115, + "y": 0, + "z": 0 + }, + "id": 210 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 3, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 290 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 0, + "num": 7, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 1, + "num": 9, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 11, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 4, + "special": 0, + "length": 3 + }, + { + "id": 4, + "num": 15, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 18, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 1, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 2, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 20, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 21, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 14, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 8, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level9.json.meta b/assets/custom/Json/level9.json.meta new file mode 100644 index 0000000..eeae1a3 --- /dev/null +++ b/assets/custom/Json/level9.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "b4c32c3b-1ddc-47da-b926-093b56074e4f", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level90.json b/assets/custom/Json/level90.json new file mode 100644 index 0000000..4423cae --- /dev/null +++ b/assets/custom/Json/level90.json @@ -0,0 +1,402 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "90", + "map": [ + 9, + 9 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": -300, + "y": -300, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 2, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 6, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "boomTime": 18, + "id": 330 + }, + { + "block": 14, + "color": 3, + "type": 3, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "lockTime": 8, + "id": 340 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 410 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "freezeTime": 11, + "id": 420 + }, + { + "block": 2, + "color": 7, + "type": 4, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "freezeTime": 14, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 23, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 2, + "num": 24, + "color": 10, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 3, + "num": 27, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 2, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 5, + "num": 3, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 6, + "num": 21, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 10, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 6, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 11, + "num": 18, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 20, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 11, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 14, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 15, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 17, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level90.json.meta b/assets/custom/Json/level90.json.meta new file mode 100644 index 0000000..0c8654f --- /dev/null +++ b/assets/custom/Json/level90.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "cc263886-aec5-4fa8-9734-b52d9e578e48", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level91.json b/assets/custom/Json/level91.json new file mode 100644 index 0000000..f6c970d --- /dev/null +++ b/assets/custom/Json/level91.json @@ -0,0 +1,483 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "91", + "map": [ + 9, + 12 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 480, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 480, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 480, + "z": 0 + }, + "id": 320 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 330 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 360, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 480, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 11, + "color": 9, + "type": 7, + "position": { + "x": -300, + "y": -600, + "z": 0 + }, + "id": 390 + }, + { + "block": 5, + "color": 3, + "type": 7, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 480, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 480, + "z": 0 + }, + "id": 430 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -480, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 450 + }, + { + "block": 15, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 60, + "y": 360, + "z": 0 + }, + "id": 470 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 500 + }, + { + "block": 0, + "color": 2, + "type": 5, + "position": { + "x": 300, + "y": 360, + "z": 0 + }, + "id": 510 + }, + { + "block": 9, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -600, + "z": 0 + }, + "id": 520 + }, + { + "block": 2, + "color": 2, + "type": 5, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 530 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 24, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 25, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 28, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 17, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 14, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 9, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 18, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 4, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 13, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 14, + "num": 21, + "color": 2, + "special": 1, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level91.json.meta b/assets/custom/Json/level91.json.meta new file mode 100644 index 0000000..cb88a6e --- /dev/null +++ b/assets/custom/Json/level91.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "092ba8f5-46a8-4401-b1c3-46c05efbb12b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level92.json b/assets/custom/Json/level92.json new file mode 100644 index 0000000..3dfb786 --- /dev/null +++ b/assets/custom/Json/level92.json @@ -0,0 +1,281 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "92", + "map": [ + 7, + 9 + ], + "time": 60, + "gap": [ + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 5, + "y": 5, + "z": 0 + }, + { + "x": 5, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 10, + "type": 9, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 240 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 250 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 23, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 0, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 1, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 5, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 17, + "color": 9, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 5, + "num": 23, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 16, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 12, + "color": 7, + "special": 2, + "length": 1, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level92.json.meta b/assets/custom/Json/level92.json.meta new file mode 100644 index 0000000..16b1da2 --- /dev/null +++ b/assets/custom/Json/level92.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "fd8b0857-2666-45ba-b857-5d08887b91dd", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level93.json b/assets/custom/Json/level93.json new file mode 100644 index 0000000..3897ed1 --- /dev/null +++ b/assets/custom/Json/level93.json @@ -0,0 +1,213 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "93", + "map": [ + 7, + 8 + ], + "time": 110, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 300 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 7, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 9, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 8, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 6, + "num": 10, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 12, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 2, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 9, + "num": 3, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 10, + "num": 18, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 11, + "num": 19, + "color": 3, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level93.json.meta b/assets/custom/Json/level93.json.meta new file mode 100644 index 0000000..8991dc8 --- /dev/null +++ b/assets/custom/Json/level93.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "d0c255a3-8e36-4dde-94fc-98b0a17104d5", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level94.json b/assets/custom/Json/level94.json new file mode 100644 index 0000000..0ba6e9a --- /dev/null +++ b/assets/custom/Json/level94.json @@ -0,0 +1,289 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "94", + "map": [ + 8, + 10 + ], + "time": 115, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 210 + }, + { + "block": 4, + "color": 5, + "type": 9, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 220 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 230 + }, + { + "block": 1, + "color": 7, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 240 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 9, + "type": 9, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 280 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 23, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 4, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 4, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "freezeTime": 2, + "id": 360 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 5, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 6, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 7, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 12, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 1, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 8, + "num": 10, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 9, + "num": 16, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 25, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 11, + "num": 26, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 27, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level94.json.meta b/assets/custom/Json/level94.json.meta new file mode 100644 index 0000000..5fd4eb7 --- /dev/null +++ b/assets/custom/Json/level94.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "e1b9030d-905f-4f54-b854-19269ca283c7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level95.json b/assets/custom/Json/level95.json new file mode 100644 index 0000000..8e7153a --- /dev/null +++ b/assets/custom/Json/level95.json @@ -0,0 +1,428 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "95", + "map": [ + 10, + 12 + ], + "time": 130, + "gap": [ + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 0, + "y": 480, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 5, + "type": 2, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 2, + "position": { + "x": 480, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 22, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 21, + "color": 5, + "type": 2, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 6, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 6, + "type": 7, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 5, + "type": 3, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "lockTime": 5, + "id": 380 + }, + { + "block": 4, + "color": 3, + "type": 3, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "lockTime": 10, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 7, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 10, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 37, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 2, + "num": 38, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 39, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 4, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 5, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 6, + "num": 18, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 7, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 8, + "num": 17, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 9, + "num": 19, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 10, + "num": 21, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 11, + "num": 23, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 3, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 13, + "num": 4, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 15, + "num": 34, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 16, + "num": 35, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level95.json.meta b/assets/custom/Json/level95.json.meta new file mode 100644 index 0000000..386d23d --- /dev/null +++ b/assets/custom/Json/level95.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "169c9fa2-bd83-427d-ad93-a1cce985228c", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level96.json b/assets/custom/Json/level96.json new file mode 100644 index 0000000..c0aea80 --- /dev/null +++ b/assets/custom/Json/level96.json @@ -0,0 +1,225 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "96", + "map": [ + 7, + 8 + ], + "time": 70, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 5, + "y": 6, + "z": 0 + }, + { + "x": 5, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 7, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "freezeTime": 5, + "id": 320 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 0, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 1, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 13, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 4, + "num": 10, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 5, + "num": 18, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 19, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 9, + "color": 5, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level96.json.meta b/assets/custom/Json/level96.json.meta new file mode 100644 index 0000000..0f792b1 --- /dev/null +++ b/assets/custom/Json/level96.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "3661505d-2c18-40dc-aa00-7997d7b19469", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level97.json b/assets/custom/Json/level97.json new file mode 100644 index 0000000..f1c8ce9 --- /dev/null +++ b/assets/custom/Json/level97.json @@ -0,0 +1,293 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "97", + "map": [ + 8, + 8 + ], + "time": 115, + "gap": [ + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 4, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 22, + "color": 7, + "type": 9, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 220 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 5, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 21, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 13, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 2, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 22, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 6, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 8, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 16, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 18, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 17, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 12, + "num": 19, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 13, + "num": 7, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 14, + "num": 9, + "color": 6, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level97.json.meta b/assets/custom/Json/level97.json.meta new file mode 100644 index 0000000..9f70b76 --- /dev/null +++ b/assets/custom/Json/level97.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "9c73e774-538e-4a64-9d46-b5905174e08b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level98.json b/assets/custom/Json/level98.json new file mode 100644 index 0000000..42452be --- /dev/null +++ b/assets/custom/Json/level98.json @@ -0,0 +1,391 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "98", + "map": [ + 9, + 11 + ], + "time": 115, + "gap": [ + { + "x": 3, + "y": 9, + "z": 0 + }, + { + "x": 4, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 4, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 4, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 7, + "type": 2, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 300 + }, + { + "block": 22, + "color": 2, + "type": 2, + "position": { + "x": 420, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 21, + "color": 4, + "type": 2, + "position": { + "x": -300, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 4, + "type": 7, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 360 + }, + { + "block": 19, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 370 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 380 + }, + { + "block": 4, + "color": 3, + "type": 3, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "lockTime": 6, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 26, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 33, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 34, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 35, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 0, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 1, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 37, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 38, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 3, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 10, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 12, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 12, + "num": 14, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 13, + "num": 20, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 14, + "num": 19, + "color": 3, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level98.json.meta b/assets/custom/Json/level98.json.meta new file mode 100644 index 0000000..cd4f437 --- /dev/null +++ b/assets/custom/Json/level98.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "92586008-06b8-4305-818c-ab9e69997bd3", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/level99.json b/assets/custom/Json/level99.json new file mode 100644 index 0000000..95f7f9e --- /dev/null +++ b/assets/custom/Json/level99.json @@ -0,0 +1,426 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "99", + "map": [ + 10, + 11 + ], + "time": 60, + "gap": [ + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 2, + "y": 5, + "z": 0 + }, + { + "x": 3, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + }, + { + "x": 7, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 5, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 3, + "y": 6, + "z": 0 + }, + { + "x": 2, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 7, + "y": 9, + "z": 0 + }, + { + "x": 2, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -300, + "z": 0 + }, + "id": 210 + }, + { + "block": 21, + "color": 1, + "type": 4, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "freezeTime": 4, + "id": 220 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 240 + }, + { + "block": 15, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 3, + "color": 7, + "type": 2, + "position": { + "x": 240, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 10, + "type": 7, + "position": { + "x": 240, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 22, + "color": 2, + "type": 4, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "freezeTime": 4, + "id": 310 + }, + { + "block": 20, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 320 + }, + { + "block": 5, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "lockTime": 4, + "id": 330 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 38, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 2, + "num": 39, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 3, + "num": 6, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 4, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 5, + "num": 42, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 6, + "num": 43, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 7, + "num": 40, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 41, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 4, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 10, + "num": 8, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 11, + "num": 13, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 12, + "num": 0, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 14, + "num": 2, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 15, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 16, + "num": 25, + "color": 8, + "special": 0, + "length": 3 + }, + { + "id": 17, + "num": 31, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 18, + "num": 36, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 19, + "num": 25, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 20, + "num": 31, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 21, + "num": 36, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level99.json.meta b/assets/custom/Json/level99.json.meta new file mode 100644 index 0000000..6e1b455 --- /dev/null +++ b/assets/custom/Json/level99.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "4a6da822-ad56-4f66-a3ba-e1076dcfab32", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/Json/新建 文本文档.txt b/assets/custom/Json/新建 文本文档.txt new file mode 100644 index 0000000..b801d9b --- /dev/null +++ b/assets/custom/Json/新建 文本文档.txt @@ -0,0 +1,3 @@ +灰色方块:396、397、398、400 +普通:387、391、399 +其余所有都是移动门 \ No newline at end of file diff --git a/assets/custom/Json/新建 文本文档.txt.meta b/assets/custom/Json/新建 文本文档.txt.meta new file mode 100644 index 0000000..cea1777 --- /dev/null +++ b/assets/custom/Json/新建 文本文档.txt.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.2", + "uuid": "00fc7959-d945-47a2-ae80-2e85f7173f3c", + "importer": "text", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/test.meta b/assets/custom/test.meta new file mode 100644 index 0000000..c61b910 --- /dev/null +++ b/assets/custom/test.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "5bca823b-ee17-418d-a216-e51af93fe770", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/test/level1.json b/assets/custom/test/level1.json new file mode 100644 index 0000000..809e6be --- /dev/null +++ b/assets/custom/test/level1.json @@ -0,0 +1,71 @@ +{ + "LEVEL_INFO": [ + { + "id": "1", + "map": [ + 6, + 7 + ], + "time": 300, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 5, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 210 + }, + { + "block": 5, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 220 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 1, + "num": 10, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 1, + "num": 12, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 2, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 3, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/test/level1.json.meta b/assets/custom/test/level1.json.meta new file mode 100644 index 0000000..3fb911a --- /dev/null +++ b/assets/custom/test/level1.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "301cb047-9a38-4063-89af-1bec3d3bc8b7", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/test/level1000.json b/assets/custom/test/level1000.json new file mode 100644 index 0000000..a255158 --- /dev/null +++ b/assets/custom/test/level1000.json @@ -0,0 +1,409 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "1", + "map": [ + 8, + 10 + ], + "time": 500, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 6, + "type": 8, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 5, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 400 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 2, + "num": 2, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 3, + "num": 3, + "color": 2, + "special": 4, + "length": 2 + }, + { + "id": 4, + "num": 4, + "color": 2, + "special": 4, + "length": 0 + }, + { + "id": 5, + "num": 13, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 6, + "num": 15, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 7, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 8, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 9, + "num": 25, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 10, + "num": 14, + "color": 8, + "special": 4, + "length": 2 + }, + { + "id": 11, + "num": 16, + "color": 8, + "special": 4, + "length": 0 + }, + { + "id": 12, + "num": 8, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 13, + "num": 12, + "color": 6, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/test/level1000.json.meta b/assets/custom/test/level1000.json.meta new file mode 100644 index 0000000..a254cff --- /dev/null +++ b/assets/custom/test/level1000.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "c60f12a7-bbdb-4555-a51d-98ab7cf9b598", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/custom/test/level188.json b/assets/custom/test/level188.json new file mode 100644 index 0000000..2753326 --- /dev/null +++ b/assets/custom/test/level188.json @@ -0,0 +1,417 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [ + { + "x": 3, + "y": 6, + "color": "1" + }, + { + "x": 3, + "y": 5, + "color": "1" + }, + { + "x": 4, + "y": 6, + "color": "1" + }, + { + "x": 4, + "y": 5, + "color": "1" + } + ], + "id": "188", + "map": [ + 8, + 10 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 3, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 21, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 11, + "type": 9, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + }, + { + "block": 1, + "color": 6, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 1, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 189, + "num": 11, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 190, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 191, + "num": 15, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 192, + "num": 17, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 193, + "num": 1, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 194, + "num": 21, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 195, + "num": 10, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 196, + "num": 16, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 197, + "num": 4, + "color": 5, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 198, + "num": 5, + "color": 5, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 199, + "num": 12, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 200, + "num": 14, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 201, + "num": 24, + "color": 10, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 202, + "num": 25, + "color": 10, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/test/level188.json.meta b/assets/custom/test/level188.json.meta new file mode 100644 index 0000000..9856593 --- /dev/null +++ b/assets/custom/test/level188.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "6fadd08d-4413-4ba8-b79d-ea46b92bc93a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect.meta b/assets/effect.meta new file mode 100644 index 0000000..e4013b9 --- /dev/null +++ b/assets/effect.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "4fc739bf-784a-4b9a-b36f-3752a98df628", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/New Material.mtl b/assets/effect/New Material.mtl new file mode 100644 index 0000000..d3cb801 --- /dev/null +++ b/assets/effect/New Material.mtl @@ -0,0 +1,22 @@ +{ + "__type__": "cc.Material", + "_name": "New Material", + "_objFlags": 0, + "_native": "", + "_effectAsset": { + "__uuid__": "5a2ab061-e5f5-4caa-b4ee-4a27ff8e7db7" + }, + "_techniqueIndex": 0, + "_techniqueData": { + "0": { + "props": { + "texture2": { + "__uuid__": "a546d6f3-5346-4f7c-b2cb-e369cab36b48" + } + }, + "defines": { + "USE_TEXTURE": true + } + } + } +} \ No newline at end of file diff --git a/assets/effect/New Material.mtl.meta b/assets/effect/New Material.mtl.meta new file mode 100644 index 0000000..58fb070 --- /dev/null +++ b/assets/effect/New Material.mtl.meta @@ -0,0 +1,7 @@ +{ + "ver": "1.0.5", + "uuid": "fff54feb-03db-4d8a-b079-57eedca8a644", + "importer": "material", + "dataAsSubAsset": null, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/boom.meta b/assets/effect/boom.meta new file mode 100644 index 0000000..865c5ad --- /dev/null +++ b/assets/effect/boom.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "19d0cfc7-d042-4f1c-803a-556069623174", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/boom/zhandan.atlas b/assets/effect/boom/zhandan.atlas new file mode 100644 index 0000000..cdcb019 --- /dev/null +++ b/assets/effect/boom/zhandan.atlas @@ -0,0 +1,181 @@ + +zhandan.png +size: 1020,1020 +format: RGBA8888 +filter: Linear,Linear +repeat: none +banyuan0001 + rotate: true + xy: 758, 692 + size: 86, 79 + orig: 265, 209 + offset: 87, 34 + index: -1 +banyuan0004 + rotate: true + xy: 633, 273 + size: 172, 133 + orig: 265, 209 + offset: 46, 11 + index: -1 +banyuan0007 + rotate: false + xy: 2, 4 + size: 242, 188 + orig: 265, 209 + offset: 10, 6 + index: -1 +banyuan0010 + rotate: false + xy: 2, 194 + size: 253, 195 + orig: 265, 209 + offset: 5, 7 + index: -1 +banyuan0013 + rotate: false + xy: 2, 611 + size: 259, 199 + orig: 265, 209 + offset: 2, 5 + index: -1 +banyuan0016 + rotate: false + xy: 2, 812 + size: 262, 203 + orig: 265, 209 + offset: 1, 3 + index: -1 +huoquan0001 + rotate: true + xy: 758, 780 + size: 123, 80 + orig: 222, 151 + offset: 52, 41 + index: -1 +huoquan0004 + rotate: true + xy: 633, 17 + size: 193, 140 + orig: 222, 151 + offset: 16, 9 + index: -1 +huoquan0006 + rotate: true + xy: 463, 615 + size: 209, 148 + orig: 222, 151 + offset: 7, 3 + index: -1 +huoquan0009 + rotate: false + xy: 468, 870 + size: 213, 145 + orig: 222, 151 + offset: 5, 2 + index: -1 +huoquan0012 + rotate: true + xy: 613, 655 + size: 213, 143 + orig: 222, 151 + offset: 5, 1 + index: -1 +huoquan0015 + rotate: true + xy: 633, 447 + size: 206, 140 + orig: 222, 151 + offset: 9, 1 + index: -1 +zaza0001 + rotate: true + xy: 683, 905 + size: 110, 98 + orig: 251, 223 + offset: 74, 45 + index: -1 +zaza0003 + rotate: false + xy: 240, 408 + size: 218, 201 + orig: 251, 223 + offset: 28, 0 + index: -1 +zaza0004 + rotate: false + xy: 2, 391 + size: 236, 218 + orig: 251, 223 + offset: 15, 0 + index: -1 +zaza0008 + rotate: true + xy: 266, 612 + size: 212, 195 + orig: 251, 223 + offset: 27, 6 + index: -1 +zaza0012 + rotate: true + xy: 257, 191 + size: 215, 198 + orig: 251, 223 + offset: 24, 6 + index: -1 +zaza0016 + rotate: true + xy: 266, 826 + size: 189, 200 + orig: 251, 223 + offset: 28, 4 + index: -1 +zaza0020 + rotate: true + xy: 246, 2 + size: 187, 205 + orig: 251, 223 + offset: 24, 2 + index: -1 +zaza0024 + rotate: false + xy: 457, 212 + size: 174, 194 + orig: 251, 223 + offset: 30, 6 + index: -1 +zaza0028 + rotate: false + xy: 457, 16 + size: 174, 194 + orig: 251, 223 + offset: 30, 6 + index: -1 +zaza0032 + rotate: false + xy: 460, 415 + size: 171, 194 + orig: 251, 223 + offset: 30, 6 + index: -1 +zhadan1 + rotate: false + xy: 768, 352 + size: 60, 93 + orig: 62, 95 + offset: 1, 1 + index: -1 +zhadan2 + rotate: false + xy: 768, 267 + size: 59, 83 + orig: 62, 95 + offset: 1, 1 + index: -1 +zhadan3 + rotate: false + xy: 775, 447 + size: 59, 76 + orig: 62, 95 + offset: 1, 1 + index: -1 diff --git a/assets/effect/boom/zhandan.atlas.meta b/assets/effect/boom/zhandan.atlas.meta new file mode 100644 index 0000000..3393ed2 --- /dev/null +++ b/assets/effect/boom/zhandan.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "1ac64874-02fc-4f77-861a-4886a752e380", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/boom/zhandan.json b/assets/effect/boom/zhandan.json new file mode 100644 index 0000000..ca7bafb --- /dev/null +++ b/assets/effect/boom/zhandan.json @@ -0,0 +1,151 @@ +{ +"skeleton": { + "hash": "k+H2C+mXFNRS2OlTrDJIvQAbPQ4", + "spine": "3.8.99", + "x": -35.7, + "y": -33.01, + "width": 62, + "height": 95, + "images": "./0/", + "audio": "" +}, +"bones": [ + { "name": "root" }, + { "name": "banyuan0001", "parent": "root", "x": 107.34, "y": 35.2 }, + { "name": "huoquan0001", "parent": "root", "x": 104.99, "y": -67.86, "scaleX": 2, "scaleY": 2 }, + { "name": "zaza0001", "parent": "root", "x": 238.73, "y": -87.12, "scaleX": 2, "scaleY": 2 }, + { "name": "banyuan2", "parent": "root", "x": -4.44, "y": -26.16 }, + { "name": "banyuan1", "parent": "banyuan2", "x": -0.25, "y": 40.16 } +], +"slots": [ + { "name": "bg", "bone": "root" }, + { "name": "huoquan0001", "bone": "huoquan0001" }, + { "name": "zaza0001", "bone": "zaza0001" }, + { "name": "banyuan0001", "bone": "banyuan0001" }, + { "name": "zhadan", "bone": "banyuan1", "attachment": "zhadan1" } +], +"skins": [ + { + "name": "default", + "attachments": { + "banyuan0001": { + "banyuan0001": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 }, + "banyuan0004": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 }, + "banyuan0007": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 }, + "banyuan0010": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 }, + "banyuan0013": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 }, + "banyuan0016": { "x": 4.37, "y": 34.83, "width": 265, "height": 209 } + }, + "huoquan0001": { + "huoquan0001": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 }, + "huoquan0004": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 }, + "huoquan0006": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 }, + "huoquan0009": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 }, + "huoquan0012": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 }, + "huoquan0015": { "x": -0.96, "y": -3.35, "width": 222, "height": 151 } + }, + "zaza0001": { + "zaza0001": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0003": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0004": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0008": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0012": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0016": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0020": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0024": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0028": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 }, + "zaza0032": { "x": -4.18, "y": 21.34, "width": 251, "height": 223 } + }, + "zhadan": { + "zhadan1": { "y": 0.5, "width": 62, "height": 95 }, + "zhadan2": { "y": 0.5, "width": 62, "height": 95 }, + "zhadan3": { "y": 0.5, "width": 62, "height": 95 } + } + } + } +], +"animations": { + "eff": { + "slots": { + "banyuan0001": { + "attachment": [ + { "time": 0.3333, "name": "banyuan0001" }, + { "time": 0.4333, "name": "banyuan0004" }, + { "time": 0.5333, "name": "banyuan0007" }, + { "time": 0.6333, "name": "banyuan0010" }, + { "time": 0.7333, "name": "banyuan0013" }, + { "time": 0.8333, "name": "banyuan0016" }, + { "time": 0.9333, "name": null } + ] + }, + "huoquan0001": { + "attachment": [ + { "time": 0.3333, "name": "huoquan0001" }, + { "time": 0.4333, "name": "huoquan0004" }, + { "time": 0.5, "name": "huoquan0006" }, + { "time": 0.6, "name": "huoquan0009" }, + { "time": 0.7, "name": "huoquan0012" }, + { "time": 0.8, "name": "huoquan0015" }, + { "time": 0.8333, "name": null } + ] + }, + "zaza0001": { + "color": [ + { "time": 1.1333, "color": "ffffffff" }, + { "time": 1.4, "color": "ffffff00" } + ], + "attachment": [ + { "time": 0.3333, "name": "zaza0001" }, + { "time": 0.4, "name": "zaza0003" }, + { "time": 0.4333, "name": "zaza0004" }, + { "time": 0.5667, "name": "zaza0008" }, + { "time": 0.7, "name": "zaza0012" }, + { "time": 0.8333, "name": "zaza0016" }, + { "time": 0.9667, "name": "zaza0020" }, + { "time": 1.1, "name": "zaza0024" }, + { "time": 1.2333, "name": "zaza0028" }, + { "time": 1.3333, "name": "zaza0032" }, + { "time": 1.4, "name": null } + ] + }, + "zhadan": { + "color": [ + { "time": 0.2667, "color": "ffffffff" }, + { "time": 0.3333, "color": "ffffff00" } + ], + "attachment": [ + { "time": 0.0667, "name": "zhadan2" }, + { "time": 0.1333, "name": "zhadan3" } + ] + } + }, + "bones": { + "banyuan0001": { + "translate": [ + { "time": 0.3333, "x": -111.11, "y": -28.42 } + ] + }, + "huoquan0001": { + "translate": [ + { "time": 0.3333, "x": -104.86, "y": 63.21 } + ] + }, + "zaza0001": { + "translate": [ + { "time": 0.3333, "x": -240.31, "y": 91.73 } + ] + }, + "banyuan2": { + "scale": [ + {}, + { "time": 0.0667, "x": 1.2, "y": 1.2 }, + { "time": 0.1333, "x": 0.9, "y": 0.9 }, + { "time": 0.2, "x": 1.1, "y": 1.1 }, + { "time": 0.2667 }, + { "time": 0.3333, "x": 1.2, "y": 1.2 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/effect/boom/zhandan.json.meta b/assets/effect/boom/zhandan.json.meta new file mode 100644 index 0000000..ab4b19d --- /dev/null +++ b/assets/effect/boom/zhandan.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "faeaa6a2-5e23-43cd-9acb-baa4eba7e32d", + "importer": "spine", + "textures": [ + "849d9729-23bc-455e-b9e5-f3bf7dc96375" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/boom/zhandan.png b/assets/effect/boom/zhandan.png new file mode 100644 index 0000000..2ca3715 Binary files /dev/null and b/assets/effect/boom/zhandan.png differ diff --git a/assets/effect/boom/zhandan.png.meta b/assets/effect/boom/zhandan.png.meta new file mode 100644 index 0000000..5671b44 --- /dev/null +++ b/assets/effect/boom/zhandan.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "849d9729-23bc-455e-b9e5-f3bf7dc96375", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1020, + "height": 1020, + "platformSettings": {}, + "subMetas": { + "zhandan": { + "ver": "1.0.6", + "uuid": "8445290b-27b5-4e30-9a45-07f32ee64909", + "importer": "sprite-frame", + "rawTextureUuid": "849d9729-23bc-455e-b9e5-f3bf7dc96375", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -90, + "offsetY": 1.5, + "trimX": 2, + "trimY": 2, + "width": 836, + "height": 1013, + "rawWidth": 1020, + "rawHeight": 1020, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/freeze.meta b/assets/effect/freeze.meta new file mode 100644 index 0000000..c320fe8 --- /dev/null +++ b/assets/effect/freeze.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "4848d7c0-2271-44f9-b68c-8af7c82e7d39", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/freeze/bingkuai.atlas b/assets/effect/freeze/bingkuai.atlas new file mode 100644 index 0000000..d97c8d7 --- /dev/null +++ b/assets/effect/freeze/bingkuai.atlas @@ -0,0 +1,62 @@ + +bingkuai.png +size: 1020,1020 +format: RGBA8888 +filter: Linear,Linear +repeat: none +3_0000 + rotate: true + xy: 333, 279 + size: 246, 250 + orig: 684, 1216 + offset: 254, 504 + index: -1 +3_0001 + rotate: false + xy: 0, 329 + size: 245, 193 + orig: 684, 1216 + offset: 295, 550 + index: -1 +3_0002 + rotate: true + xy: 750, 359 + size: 305, 216 + orig: 684, 1216 + offset: 268, 545 + index: -1 +3_0003 + rotate: false + xy: 0, 524 + size: 331, 231 + orig: 684, 1216 + offset: 243, 541 + index: -1 +3_0004 + rotate: false + xy: 392, 527 + size: 356, 243 + orig: 684, 1216 + offset: 224, 536 + index: -1 +3_0005 + rotate: false + xy: 392, 772 + size: 371, 248 + orig: 684, 1216 + offset: 213, 535 + index: -1 +3_0006 + rotate: true + xy: 765, 666 + size: 354, 255 + orig: 684, 1216 + offset: 205, 530 + index: -1 +3_0007 + rotate: false + xy: 0, 757 + size: 390, 263 + orig: 684, 1216 + offset: 201, 523 + index: -1 diff --git a/assets/effect/freeze/bingkuai.atlas.meta b/assets/effect/freeze/bingkuai.atlas.meta new file mode 100644 index 0000000..ec85181 --- /dev/null +++ b/assets/effect/freeze/bingkuai.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "9a528c07-9fc2-4096-a26c-ca35c67d20e9", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/freeze/bingkuai.json b/assets/effect/freeze/bingkuai.json new file mode 100644 index 0000000..f5930f5 --- /dev/null +++ b/assets/effect/freeze/bingkuai.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"vQWYhzgUL4u01Y50HCqIiEAaBR0","spine":"3.8.99","images":"./0/","audio":""},"bones":[{"name":"root"},{"name":"bone8","parent":"root","length":622.16,"x":-8.7,"y":12.01}],"slots":[{"name":"3_3","bone":"bone8"}],"skins":[{"name":"default","attachments":{"3_3":{"3_0000":{"width":684,"height":1216},"3_0001":{"width":684,"height":1216},"3_0002":{"width":684,"height":1216},"3_0003":{"width":684,"height":1216},"3_0004":{"width":684,"height":1216},"3_0005":{"width":684,"height":1216},"3_0006":{"width":684,"height":1216},"3_0007":{"width":684,"height":1216}}}}],"animations":{"bingkuai":{"slots":{"3_3":{"attachment":[{"name":"3_0000"},{"time":0.0667,"name":"3_0001"},{"time":0.1333,"name":"3_0002"},{"time":0.2,"name":"3_0003"},{"time":0.2667,"name":"3_0004"},{"time":0.3333,"name":"3_0005"},{"time":0.4,"name":"3_0006"},{"time":0.4667,"name":"3_0007"},{"time":0.5333,"name":null}]}},"bones":{"bone8":{"translate":[{"x":-43,"y":-28}]}}}}} \ No newline at end of file diff --git a/assets/effect/freeze/bingkuai.json.meta b/assets/effect/freeze/bingkuai.json.meta new file mode 100644 index 0000000..963bab5 --- /dev/null +++ b/assets/effect/freeze/bingkuai.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "b98ab73e-af9c-47fa-862c-144da3071249", + "importer": "spine", + "textures": [ + "fe2e1147-b4a4-4f5d-885b-e2bac6b7b42e" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/freeze/bingkuai.png b/assets/effect/freeze/bingkuai.png new file mode 100644 index 0000000..de6e954 Binary files /dev/null and b/assets/effect/freeze/bingkuai.png differ diff --git a/assets/effect/freeze/bingkuai.png.meta b/assets/effect/freeze/bingkuai.png.meta new file mode 100644 index 0000000..0b04db0 --- /dev/null +++ b/assets/effect/freeze/bingkuai.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "fe2e1147-b4a4-4f5d-885b-e2bac6b7b42e", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1020, + "height": 1020, + "platformSettings": {}, + "subMetas": { + "bingkuai": { + "ver": "1.0.6", + "uuid": "393f1412-e5f8-4aa2-aa1d-9f86c6a1113c", + "importer": "sprite-frame", + "rawTextureUuid": "fe2e1147-b4a4-4f5d-885b-e2bac6b7b42e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -139.5, + "trimX": 0, + "trimY": 279, + "width": 1020, + "height": 741, + "rawWidth": 1020, + "rawHeight": 1020, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/full.effect b/assets/effect/full.effect new file mode 100644 index 0000000..7ec58ed --- /dev/null +++ b/assets/effect/full.effect @@ -0,0 +1,84 @@ + +CCEffect %{ + techniques: + - passes: + - vert: vs + frag: fs + blendState: + targets: + - blend: true + rasterizerState: + cullMode: none + properties: + texture: { value: white } + alphaThreshold: { value: 0.5 } + noiseAmount: { value: 0.5 } // 噪点强度,可在属性面板调整 +}% + +CCProgram vs %{ +precision highp float; +#include +#include + +in vec3 a_position; +in vec4 a_color; +out vec4 v_color; + +#if USE_TEXTURE + in vec2 a_uv0; + out vec2 v_uv0; +#endif + +void main() { + vec4 pos = vec4(a_position, 1); + + #if CC_USE_MODEL + pos = cc_matViewProj * cc_matWorld * pos; + #else + pos = cc_matViewProj * pos; + #endif + + #if USE_TEXTURE + v_uv0 = a_uv0; + #endif + + v_color = a_color; + gl_Position = pos; +} +}% + +CCProgram fs %{ +precision highp float; +#include +#include + +in vec4 v_color; + +#if USE_TEXTURE + in vec2 v_uv0; + uniform sampler2D texture; +#endif + +uniform EffectProperties { + float noiseAmount; +}; + +float random(vec2 st) { + return fract(sin(dot(st.xy, vec2(12.9898, 78.233))) * 43758.5453123); +} + +void main() { + vec4 col = v_color; + #if USE_TEXTURE + col *= texture2D(texture, v_uv0); + #endif + + float noise = random(v_uv0); + col.rgb += noise * noiseAmount; + col.a = noise * 0.2; + + ALPHA_TEST(col); + gl_FragColor = col; +} +}% + \ No newline at end of file diff --git a/assets/effect/full.effect.meta b/assets/effect/full.effect.meta new file mode 100644 index 0000000..a9d3372 --- /dev/null +++ b/assets/effect/full.effect.meta @@ -0,0 +1,18 @@ +{ + "ver": "1.0.27", + "uuid": "4b6dcf92-bde1-46a0-9d58-f3abd25cd3fd", + "importer": "effect", + "compiledShaders": [ + { + "glsl1": { + "vert": "\nprecision highp float;\nuniform mat4 cc_matViewProj;\nuniform mat4 cc_matWorld;\nattribute vec3 a_position;\nattribute vec4 a_color;\nvarying vec4 v_color;\n#if USE_TEXTURE\n attribute vec2 a_uv0;\n varying vec2 v_uv0;\n#endif\nvoid main() {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform float alphaThreshold;\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nvarying vec4 v_color;\n#if USE_TEXTURE\n varying vec2 v_uv0;\n uniform sampler2D texture;\n#endif\nuniform float noiseAmount;\nfloat random(vec2 st) {\n return fract(sin(dot(st.xy, vec2(12.9898, 78.233))) * 43758.5453123);\n}\nvoid main() {\n vec4 col = v_color;\n #if USE_TEXTURE\n col *= texture2D(texture, v_uv0);\n #endif\n float noise = random(v_uv0);\n col.rgb += noise * noiseAmount;\n col.a = noise * 0.2;\n ALPHA_TEST(col);\n gl_FragColor = col;\n}" + }, + "glsl3": { + "vert": "\nprecision highp float;\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nuniform CCLocal {\n mat4 cc_matWorld;\n mat4 cc_matWorldIT;\n};\nin vec3 a_position;\nin vec4 a_color;\nout vec4 v_color;\n#if USE_TEXTURE\n in vec2 a_uv0;\n out vec2 v_uv0;\n#endif\nvoid main() {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nin vec4 v_color;\n#if USE_TEXTURE\n in vec2 v_uv0;\n uniform sampler2D texture;\n#endif\nuniform EffectProperties {\n float noiseAmount;\n};\nfloat random(vec2 st) {\n return fract(sin(dot(st.xy, vec2(12.9898, 78.233))) * 43758.5453123);\n}\nvoid main() {\n vec4 col = v_color;\n #if USE_TEXTURE\n col *= texture2D(texture, v_uv0);\n #endif\n float noise = random(v_uv0);\n col.rgb += noise * noiseAmount;\n col.a = noise * 0.2;\n ALPHA_TEST(col);\n gl_FragColor = col;\n}" + } + } + ], + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/getSpine.meta b/assets/effect/getSpine.meta new file mode 100644 index 0000000..4f27f55 --- /dev/null +++ b/assets/effect/getSpine.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "10250af3-a286-4ebd-9da6-ffafce376a46", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/getSpine/goldbi.png b/assets/effect/getSpine/goldbi.png new file mode 100644 index 0000000..b27dfd5 Binary files /dev/null and b/assets/effect/getSpine/goldbi.png differ diff --git a/assets/effect/getSpine/goldbi.png.meta b/assets/effect/getSpine/goldbi.png.meta new file mode 100644 index 0000000..9014f91 --- /dev/null +++ b/assets/effect/getSpine/goldbi.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f7f69fb1-46b8-4416-af75-9f3768be5796", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 109, + "height": 112, + "platformSettings": {}, + "subMetas": { + "goldbi": { + "ver": "1.0.6", + "uuid": "09f6acb6-4313-4a5a-9510-de00b16901be", + "importer": "sprite-frame", + "rawTextureUuid": "f7f69fb1-46b8-4416-af75-9f3768be5796", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 109, + "height": 112, + "rawWidth": 109, + "rawHeight": 112, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/getSpine/starzha.atlas b/assets/effect/getSpine/starzha.atlas new file mode 100644 index 0000000..d424482 --- /dev/null +++ b/assets/effect/getSpine/starzha.atlas @@ -0,0 +1,27 @@ + +starzha.png +size: 740,740 +format: RGBA8888 +filter: Linear,Linear +repeat: none +light + rotate: false + xy: 0, 41 + size: 697, 697 + orig: 697, 697 + offset: 0, 0 + index: -1 +star1 + rotate: false + xy: 699, 698 + size: 39, 40 + orig: 53, 52 + offset: 7, 6 + index: -1 +star2 + rotate: false + xy: 699, 658 + size: 38, 38 + orig: 51, 52 + offset: 6, 7 + index: -1 diff --git a/assets/effect/getSpine/starzha.atlas.meta b/assets/effect/getSpine/starzha.atlas.meta new file mode 100644 index 0000000..02fb2ac --- /dev/null +++ b/assets/effect/getSpine/starzha.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "8ee6d148-c5c8-49f6-a884-c06b2a12935a", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/getSpine/starzha.json b/assets/effect/getSpine/starzha.json new file mode 100644 index 0000000..09b35a4 --- /dev/null +++ b/assets/effect/getSpine/starzha.json @@ -0,0 +1,1738 @@ +{ +"skeleton": { + "hash": "wGM1cjUbHjgWfldgGmGcceYYtog", + "spine": "3.8.99", + "x": -385.76, + "y": -363.35, + "width": 763.62, + "height": 763.62, + "images": "", + "audio": "" +}, +"bones": [ + { "name": "root" }, + { "name": "bone", "parent": "root", "x": 13.01, "y": 1380.85 }, + { "name": "light2", "parent": "bone", "x": -18.63, "y": -993.19, "scaleX": 0.8, "scaleY": 0.8 }, + { "name": "star", "parent": "light2", "rotation": -29.37, "x": 16.44, "y": -451.94 }, + { + "name": "star2", + "parent": "light2", + "rotation": 73.41, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star3", "parent": "light2", "rotation": -49.49, "x": 16.44, "y": -451.94 }, + { "name": "star4", "parent": "light2", "rotation": -33.06, "x": 16.44, "y": -451.94 }, + { "name": "star5", "parent": "light2", "rotation": -33.06, "x": 16.44, "y": -451.94 }, + { "name": "star6", "parent": "light2", "rotation": -85.17, "x": 16.44, "y": -451.94 }, + { "name": "star7", "parent": "light2", "rotation": 39.38, "x": 16.44, "y": -451.94 }, + { "name": "star8", "parent": "light2", "rotation": 39.38, "x": 16.44, "y": -451.94 }, + { "name": "star9", "parent": "light2", "rotation": 82.62, "x": 16.44, "y": -451.94 }, + { "name": "star10", "parent": "light2", "rotation": 82.62, "x": 16.44, "y": -451.94 }, + { "name": "star11", "parent": "light2", "rotation": 60.21, "x": 16.44, "y": -451.94 }, + { + "name": "star12", + "parent": "light2", + "rotation": 60.21, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star13", "parent": "light2", "rotation": 60.21, "x": 16.44, "y": -451.94 }, + { + "name": "star14", + "parent": "light2", + "rotation": 60.21, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star15", "parent": "light2", "rotation": 60.21, "x": 16.44, "y": -451.94 }, + { "name": "star16", "parent": "light2", "rotation": 60.21, "x": 16.44, "y": -451.94 }, + { "name": "star17", "parent": "light2", "rotation": 60.21, "x": 16.44, "y": -451.94 }, + { "name": "star18", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star19", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { + "name": "star20", + "parent": "light2", + "rotation": 95.78, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star21", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "light", "parent": "bone", "x": -16.96, "y": -1362.39 }, + { "name": "star22", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { + "name": "star23", + "parent": "light2", + "rotation": 95.78, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star24", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star25", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star26", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star27", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { + "name": "star28", + "parent": "light2", + "rotation": 95.78, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star29", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star30", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star31", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star32", "parent": "light2", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star33", "parent": "light2", "rotation": -102.01, "x": 16.44, "y": -451.94 }, + { "name": "star34", "parent": "light2", "rotation": -102.01, "x": 16.44, "y": -451.94 }, + { + "name": "star35", + "parent": "light2", + "rotation": -102.01, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star36", "parent": "light2", "rotation": -102.01, "x": 16.44, "y": -451.94 }, + { "name": "star37", "parent": "light2", "rotation": -102.01, "x": 16.44, "y": -451.94 }, + { "name": "star38", "parent": "light2", "rotation": -33.06, "x": 16.44, "y": -451.94 }, + { "name": "star39", "parent": "light2", "rotation": -33.06, "x": 16.44, "y": -451.94 }, + { "name": "star40", "parent": "light2", "rotation": -33.06, "x": 16.44, "y": -451.94 }, + { + "name": "star41", + "parent": "light2", + "rotation": -33.06, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { + "name": "light3", + "parent": "bone", + "rotation": 59.05, + "x": -328.96, + "y": -1188.32, + "scaleX": 0.8, + "scaleY": 0.8 + }, + { + "name": "star42", + "parent": "light3", + "rotation": -29.37, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star44", "parent": "light3", "rotation": -49.49, "x": 16.44, "y": -451.94 }, + { "name": "star45", "parent": "light3", "rotation": -33.06, "x": 16.44, "y": -451.94 }, + { "name": "star47", "parent": "light3", "rotation": -85.17, "x": 16.44, "y": -451.94 }, + { + "name": "star48", + "parent": "light3", + "rotation": 39.38, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star49", "parent": "light3", "rotation": 39.38, "x": 16.44, "y": -451.94 }, + { "name": "star51", "parent": "light3", "rotation": 82.62, "x": 16.44, "y": -451.94 }, + { + "name": "star52", + "parent": "light3", + "rotation": 60.21, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star54", "parent": "light3", "rotation": 60.21, "x": 16.44, "y": -451.94 }, + { "name": "star56", "parent": "light3", "rotation": 60.21, "x": 16.44, "y": -451.94 }, + { + "name": "star58", + "parent": "light3", + "rotation": 60.21, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star59", "parent": "light3", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star61", "parent": "light3", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star62", "parent": "light3", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { + "name": "star65", + "parent": "light3", + "rotation": 95.78, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star66", "parent": "light3", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star67", "parent": "light3", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { "name": "star69", "parent": "light3", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { + "name": "star70", + "parent": "light3", + "rotation": 95.78, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star72", "parent": "light3", "rotation": 95.78, "x": 16.44, "y": -451.94 }, + { + "name": "star73", + "parent": "light3", + "rotation": 95.78, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star75", "parent": "light3", "rotation": -102.01, "x": 16.44, "y": -451.94 }, + { "name": "star77", "parent": "light3", "rotation": -102.01, "x": 16.44, "y": -451.94 }, + { + "name": "star79", + "parent": "light3", + "rotation": -33.06, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + }, + { "name": "star81", "parent": "light3", "rotation": -33.06, "x": 16.44, "y": -451.94 }, + { + "name": "star82", + "parent": "light3", + "rotation": -33.06, + "x": 16.44, + "y": -451.94, + "scaleX": 1.2, + "scaleY": 1.2 + } +], +"slots": [ + { "name": "light", "bone": "light", "attachment": "light" }, + { "name": "star1", "bone": "star", "attachment": "star1" }, + { "name": "star42", "bone": "star42", "attachment": "star1" }, + { "name": "star2", "bone": "star2", "attachment": "star1" }, + { "name": "star3", "bone": "star3", "attachment": "star1" }, + { "name": "star44", "bone": "star44", "attachment": "star1" }, + { "name": "star4", "bone": "star4", "attachment": "star1" }, + { "name": "star45", "bone": "star45", "attachment": "star1" }, + { "name": "star38", "bone": "star38", "attachment": "star1" }, + { "name": "star79", "bone": "star79", "attachment": "star1" }, + { "name": "star39", "bone": "star39", "attachment": "star1" }, + { "name": "star40", "bone": "star40", "attachment": "star1" }, + { "name": "star81", "bone": "star81", "attachment": "star1" }, + { "name": "star41", "bone": "star41", "attachment": "star1" }, + { "name": "star82", "bone": "star82", "attachment": "star1" }, + { "name": "star5", "bone": "star5", "attachment": "star1" }, + { "name": "star6", "bone": "star6", "attachment": "star1" }, + { "name": "star47", "bone": "star47", "attachment": "star1" }, + { "name": "star7", "bone": "star7", "attachment": "star1" }, + { "name": "star48", "bone": "star48", "attachment": "star1" }, + { "name": "star8", "bone": "star8", "attachment": "star1" }, + { "name": "star49", "bone": "star49", "attachment": "star1" }, + { "name": "star9", "bone": "star9", "attachment": "star1" }, + { "name": "star10", "bone": "star10", "attachment": "star1" }, + { "name": "star51", "bone": "star51", "attachment": "star1" }, + { "name": "star11", "bone": "star11", "attachment": "star1" }, + { "name": "star52", "bone": "star52", "attachment": "star1" }, + { "name": "star12", "bone": "star12", "attachment": "star1" }, + { "name": "star13", "bone": "star13", "attachment": "star1" }, + { "name": "star54", "bone": "star54", "attachment": "star1" }, + { "name": "star14", "bone": "star14", "attachment": "star1" }, + { "name": "star15", "bone": "star15", "attachment": "star1" }, + { "name": "star56", "bone": "star56", "attachment": "star1" }, + { "name": "star16", "bone": "star16", "attachment": "star1" }, + { "name": "star17", "bone": "star17", "attachment": "star1" }, + { "name": "star58", "bone": "star58", "attachment": "star1" }, + { "name": "star18", "bone": "star18", "attachment": "star1" }, + { "name": "star59", "bone": "star59", "attachment": "star1" }, + { "name": "star19", "bone": "star19", "attachment": "star1" }, + { "name": "star20", "bone": "star20", "attachment": "star1" }, + { "name": "star61", "bone": "star61", "attachment": "star1" }, + { "name": "star21", "bone": "star21", "attachment": "star1" }, + { "name": "star62", "bone": "star62", "attachment": "star1" }, + { "name": "star22", "bone": "star22", "attachment": "star2" }, + { "name": "star23", "bone": "star23", "attachment": "star2" }, + { "name": "star24", "bone": "star24", "attachment": "star2" }, + { "name": "star65", "bone": "star65", "attachment": "star2" }, + { "name": "star25", "bone": "star25", "attachment": "star2" }, + { "name": "star66", "bone": "star66", "attachment": "star2" }, + { "name": "star26", "bone": "star26", "attachment": "star2" }, + { "name": "star67", "bone": "star67", "attachment": "star2" }, + { "name": "star27", "bone": "star27", "attachment": "star2" }, + { "name": "star28", "bone": "star28", "attachment": "star2" }, + { "name": "star69", "bone": "star69", "attachment": "star2" }, + { "name": "star29", "bone": "star29", "attachment": "star2" }, + { "name": "star70", "bone": "star70", "attachment": "star2" }, + { "name": "star30", "bone": "star30", "attachment": "star2" }, + { "name": "star31", "bone": "star31", "attachment": "star2" }, + { "name": "star72", "bone": "star72", "attachment": "star2" }, + { "name": "star32", "bone": "star32", "attachment": "star2" }, + { "name": "star73", "bone": "star73", "attachment": "star2" }, + { "name": "star33", "bone": "star33", "attachment": "star2" }, + { "name": "star34", "bone": "star34", "attachment": "star2" }, + { "name": "star75", "bone": "star75", "attachment": "star2" }, + { "name": "star35", "bone": "star35", "attachment": "star2" }, + { "name": "star36", "bone": "star36", "attachment": "star2" }, + { "name": "star77", "bone": "star77", "attachment": "star2" }, + { "name": "star37", "bone": "star37", "attachment": "star2" } +], +"skins": [ + { + "name": "default", + "attachments": { + "light": { + "light": { "rotation": 95.78, "width": 697, "height": 697 } + }, + "star1": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star2": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star3": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star4": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star5": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star6": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star7": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star8": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star9": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star10": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star11": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star12": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star13": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star14": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star15": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star16": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star17": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star18": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star19": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star20": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star21": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star22": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star23": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star24": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star25": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star26": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star27": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star28": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star29": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star30": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star31": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star32": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star33": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star34": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star35": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star36": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star37": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star38": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star39": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star40": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star41": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star42": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star44": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star45": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star47": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star48": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star49": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star51": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star52": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star54": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star56": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star58": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star59": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star61": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star62": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star65": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star66": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star67": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star69": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star70": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star72": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star73": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star75": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star77": { + "star2": { "x": 0.5, "width": 51, "height": 52 } + }, + "star79": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star81": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + }, + "star82": { + "star1": { "x": 0.03, "y": 0.59, "width": 53, "height": 52 } + } + } + } +], +"animations": { + "animation": { + "slots": { + "light": { + "color": [ + { "color": "ffffff00" }, + { "time": 0.0667, "color": "ffffff4b" }, + { "time": 0.2667, "color": "ffffff00" } + ] + }, + "star1": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "star2": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star3": { + "color": [ + { "time": 0.3333, "color": "ffffffff" }, + { "time": 0.5667, "color": "ffffff00" } + ] + }, + "star4": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star5": { + "color": [ + { "time": 0.4333, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star6": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star7": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.6333, "color": "ffffff00" } + ] + }, + "star8": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star9": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star10": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star11": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.6333, "color": "ffffff00" } + ] + }, + "star12": { + "color": [ + { "time": 0.4333, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "star13": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star14": { + "color": [ + { "time": 0.3, "color": "ffffffff" }, + { "time": 0.5, "color": "ffffff00" } + ] + }, + "star15": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star16": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star17": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star18": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star19": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star20": { + "color": [ + { "time": 0.3, "color": "ffffffff" }, + { "time": 0.6333, "color": "ffffff00" } + ] + }, + "star21": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star22": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star23": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star24": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star25": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.6333, "color": "ffffff00" } + ] + }, + "star26": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star27": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star28": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star29": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star30": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6333, "color": "ffffff00" } + ] + }, + "star31": { + "color": [ + { "time": 0.4333, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "star32": { + "color": [ + { "time": 0.3333, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star33": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star34": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star35": { + "color": [ + { "time": 0.3, "color": "ffffffff" }, + { "time": 0.5, "color": "ffffff00" } + ] + }, + "star36": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star37": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.6333, "color": "ffffff00" } + ] + }, + "star38": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star39": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "star40": { + "color": [ + { "time": 0.3, "color": "ffffffff" }, + { "time": 0.5, "color": "ffffff00" } + ] + }, + "star41": { + "color": [ + { "time": 0.3, "color": "ffffffff" }, + { "time": 0.5, "color": "ffffff00" } + ] + }, + "star42": { + "color": [ + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.7667, "color": "ffffff00" } + ] + }, + "star44": { + "color": [ + { "time": 0.4333, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "star45": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star47": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star48": { + "color": [ + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.7333, "color": "ffffff00" } + ] + }, + "star49": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star51": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star52": { + "color": [ + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.7333, "color": "ffffff00" } + ] + }, + "star54": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star56": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star58": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star59": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star61": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.7333, "color": "ffffff00" } + ] + }, + "star62": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star65": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star66": { + "color": [ + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.7333, "color": "ffffff00" } + ] + }, + "star67": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star69": { + "color": [ + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.8, "color": "ffffff00" } + ] + }, + "star70": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star72": { + "color": [ + { "time": 0.5333, "color": "ffffffff" }, + { "time": 0.7667, "color": "ffffff00" } + ] + }, + "star73": { + "color": [ + { "time": 0.4333, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star75": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star77": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star79": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "star81": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "star82": { + "color": [ + { "time": 0.4, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + } + }, + "bones": { + "star": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.7, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": -121.74, "y": 149.87 }, + { "time": 0.7, "x": -131.6, "y": 177.48 } + ] + }, + "star2": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -184.84, "y": 114.38 }, + { "time": 0.6333, "x": -207.63, "y": 122.26 } + ] + }, + "star3": { + "rotate": [ + {}, + { "time": 0.2667, "angle": -71.11 }, + { "time": 0.6, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.2667, "x": -137.52, "y": 76.91 }, + { "time": 0.6, "x": -155.26, "y": 100.57 } + ] + }, + "star4": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -203.88, "y": 25.64 }, + { "time": 0.6333, "x": -222.69, "y": 25.64 } + ] + }, + "star5": { + "rotate": [ + {}, + { "time": 0.3667, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3667, "x": 194.27, "y": 25.64 }, + { "time": 0.7333, "x": 233.71, "y": 25.64 } + ] + }, + "star6": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 123.28, "y": -171.56 }, + { "time": 0.6333, "x": 137.08, "y": -211 } + ] + }, + "star7": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.6667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": 180.47, "y": -163.68 }, + { "time": 0.6667, "x": 208.08, "y": -179.45 } + ] + }, + "star8": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -135.05, "y": -145.93 }, + { "time": 0.6333, "x": -164.63, "y": -179.45 } + ] + }, + "star9": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -95.61, "y": -193.26 }, + { "time": 0.6333, "x": -111.39, "y": -230.72 } + ] + }, + "star10": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 91.73, "y": 161.7 }, + { "time": 0.6333, "x": 109.48, "y": 173.54 } + ] + }, + "star11": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.6667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": 91.73, "y": 121.81 }, + { "time": 0.6667, "x": 123.58, "y": 136.37 } + ] + }, + "star12": { + "rotate": [ + {}, + { "time": 0.3667, "angle": -71.11 }, + { "time": 0.7, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3667, "x": 156.8, "y": -35.5 }, + { "time": 0.7, "x": 187.86, "y": -35.5 } + ] + }, + "star13": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -186.32, "y": -63.1 }, + { "time": 0.6333, "x": -208.02, "y": -80.85 } + ] + }, + "star14": { + "rotate": [ + {}, + { "time": 0.2333, "angle": -71.11 }, + { "time": 0.5333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.2333, "x": -204.07, "y": -98.6 }, + { "time": 0.5333, "x": -217.88, "y": -110.43 } + ] + }, + "star15": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -28.56, "y": 141.98 }, + { "time": 0.6333, "x": -42.37, "y": 165.65 } + ] + }, + "star16": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 166.66, "y": 141.98 }, + { "time": 0.6333, "x": 178.5, "y": 149.87 } + ] + }, + "star17": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -64.06, "y": -145.93 }, + { "time": 0.6333, "x": -83.78, "y": -169.59 } + ] + }, + "star18": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 12.85, "y": -211 }, + { "time": 0.6333, "x": 12.85, "y": -234.67 } + ] + }, + "star19": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 154.83, "y": 70.99 }, + { "time": 0.6333, "x": 170.61, "y": 74.94 } + ] + }, + "star20": { + "rotate": [ + {}, + { "time": 0.2667, "angle": -71.11 }, + { "time": 0.6667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.2667, "x": 12.85, "y": 201.14 }, + { "time": 0.6667, "x": 12.85, "y": 218.89 } + ] + }, + "star21": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 166.66, "y": -108.46 }, + { "time": 0.6333, "x": 184.41, "y": -126.21 } + ] + }, + "light": { + "scale": [ + { "x": 0.5, "y": 0.5 }, + { "time": 0.3333, "x": 1.2, "y": 1.2 } + ] + }, + "star22": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 124.21, "y": -134.91 }, + { "time": 0.6333, "x": 141.84, "y": -178.99 } + ] + }, + "star23": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -138.88, "y": -122.11 }, + { "time": 0.6333, "x": -159.45, "y": -145.62 } + ] + }, + "star24": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 192.3, "y": -67.05 }, + { "time": 0.6333, "x": 229.77, "y": -67.05 } + ] + }, + "star25": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.6667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": 208.08, "y": 61.13 }, + { "time": 0.6667, "x": 221.88, "y": 69.02 } + ] + }, + "star26": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -174.34, "y": 27.61 }, + { "time": 0.6333, "x": -202.32, "y": 33.52 } + ] + }, + "star27": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -79.84, "y": 155.79 }, + { "time": 0.6333, "x": -89.7, "y": 175.51 } + ] + }, + "star28": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": -51.98, "y": -169.19 }, + { "time": 0.7333, "x": -59.03, "y": -185.64 } + ] + }, + "star29": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 74.97, "y": -152.73 }, + { "time": 0.6333, "x": 84.38, "y": -173.89 } + ] + }, + "star30": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 107.89, "y": 143.5 }, + { "time": 0.6667, "x": 119.64, "y": 162.3 } + ] + }, + "star31": { + "rotate": [ + {}, + { "time": 0.3667, "angle": -71.11 }, + { "time": 0.7, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3667, "x": -218.9, "y": -49.29 }, + { "time": 0.7, "x": -237.71, "y": -56.34 } + ] + }, + "star32": { + "rotate": [ + {}, + { "time": 0.2667, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.2667, "x": 30.3, "y": 148.2 }, + { "time": 0.6333, "x": 35.01, "y": 171.71 } + ] + }, + "star33": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -14.36, "y": 195.22 }, + { "time": 0.6333, "x": -14.36, "y": 211.68 } + ] + }, + "star34": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 206.63, "y": 2.44 }, + { "time": 0.6333, "x": 223.09, "y": 2.44 } + ] + }, + "star35": { + "rotate": [ + {}, + { "time": 0.2333, "angle": -71.11 }, + { "time": 0.5333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.2333, "x": -150.72, "y": -32.83 }, + { "time": 0.5333, "x": -188.34, "y": -63.39 } + ] + }, + "star36": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": 149.03, "y": 49.46 }, + { "time": 0.6333, "x": 184.29, "y": 49.46 } + ] + }, + "star37": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.6667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": -47.28, "y": 131.74 }, + { "time": 0.6667, "x": -61.38, "y": 148.2 } + ] + }, + "star38": { + "rotate": [ + {}, + { "time": 0.3, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3, "x": -178.02, "y": 131.43 }, + { "time": 0.6333, "x": -192.13, "y": 150.24 } + ] + }, + "star39": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.7, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": 31.22, "y": -225.92 }, + { "time": 0.7, "x": 38.27, "y": -263.54 } + ] + }, + "star40": { + "rotate": [ + {}, + { "time": 0.2333, "angle": -71.11 }, + { "time": 0.5333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.2333, "x": 188.73, "y": -84.86 }, + { "time": 0.5333, "x": 202.84, "y": -103.67 } + ] + }, + "star41": { + "rotate": [ + {}, + { "time": 0.2333, "angle": -71.11 }, + { "time": 0.5333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.2333, "x": -159.21, "y": -136.58 }, + { "time": 0.5333, "x": -185.08, "y": -160.09 } + ] + }, + "star42": { + "rotate": [ + {}, + { "time": 0.4333, "angle": -71.11 }, + { "time": 0.8, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4333, "x": -133.43, "y": 163.08 }, + { "time": 0.8, "x": -141.34, "y": 188.48 } + ] + }, + "star44": { + "rotate": [ + {}, + { "time": 0.3667, "angle": -71.11 }, + { "time": 0.7, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3667, "x": -152.75, "y": 94.84 }, + { "time": 0.7, "x": -172.79, "y": 120.38 } + ] + }, + "star45": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": -203.88, "y": 25.64 }, + { "time": 0.7333, "x": -222.69, "y": 25.64 } + ] + }, + "star47": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": 123.28, "y": -171.56 }, + { "time": 0.7333, "x": 137.08, "y": -211 } + ] + }, + "star48": { + "rotate": [ + {}, + { "time": 0.4333, "angle": -71.11 }, + { "time": 0.7667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4333, "x": 180.47, "y": -163.68 }, + { "time": 0.7667, "x": 208.08, "y": -179.45 } + ] + }, + "star49": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": -135.05, "y": -145.93 }, + { "time": 0.7333, "x": -164.63, "y": -179.45 } + ] + }, + "star51": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": 91.73, "y": 161.7 }, + { "time": 0.7333, "x": 109.48, "y": 173.54 } + ] + }, + "star52": { + "rotate": [ + {}, + { "time": 0.4333, "angle": -71.11 }, + { "time": 0.7667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4333, "x": 91.73, "y": 121.81 }, + { "time": 0.7667, "x": 123.58, "y": 136.37 } + ] + }, + "star54": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": -186.32, "y": -63.1 }, + { "time": 0.7333, "x": -208.02, "y": -80.85 } + ] + }, + "star56": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": -28.56, "y": 141.98 }, + { "time": 0.7333, "x": -42.37, "y": 165.65 } + ] + }, + "star58": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": -64.06, "y": -145.93 }, + { "time": 0.7333, "x": -83.78, "y": -169.59 } + ] + }, + "star59": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": 12.85, "y": -211 }, + { "time": 0.7333, "x": 12.85, "y": -234.67 } + ] + }, + "star61": { + "rotate": [ + {}, + { "time": 0.3667, "angle": -71.11 }, + { "time": 0.7667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3667, "x": 12.85, "y": 201.14 }, + { "time": 0.7667, "x": 12.85, "y": 218.89 } + ] + }, + "star62": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": 166.66, "y": -108.46 }, + { "time": 0.7333, "x": 184.41, "y": -126.21 } + ] + }, + "star65": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": 192.3, "y": -67.05 }, + { "time": 0.7333, "x": 229.77, "y": -67.05 } + ] + }, + "star66": { + "rotate": [ + {}, + { "time": 0.4333, "angle": -71.11 }, + { "time": 0.7667, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4333, "x": 208.08, "y": 61.13 }, + { "time": 0.7667, "x": 221.88, "y": 69.02 } + ] + }, + "star67": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": -174.34, "y": 27.61 }, + { "time": 0.7333, "x": -202.32, "y": 33.52 } + ] + }, + "star69": { + "rotate": [ + {}, + { "time": 0.4333, "angle": -71.11 }, + { "time": 0.8333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4333, "x": -51.98, "y": -169.19 }, + { "time": 0.8333, "x": -59.03, "y": -185.64 } + ] + }, + "star70": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": 74.97, "y": -152.73 }, + { "time": 0.7333, "x": 84.38, "y": -173.89 } + ] + }, + "star72": { + "rotate": [ + {}, + { "time": 0.4667, "angle": -71.11 }, + { "time": 0.8, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4667, "x": -218.9, "y": -49.29 }, + { "time": 0.8, "x": -237.71, "y": -56.34 } + ] + }, + "star73": { + "rotate": [ + {}, + { "time": 0.3667, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3667, "x": 30.3, "y": 148.2 }, + { "time": 0.7333, "x": 35.01, "y": 171.71 } + ] + }, + "star75": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": 206.63, "y": 2.44 }, + { "time": 0.7333, "x": 223.09, "y": 2.44 } + ] + }, + "star77": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": 149.03, "y": 49.46 }, + { "time": 0.7333, "x": 184.29, "y": 49.46 } + ] + }, + "star79": { + "rotate": [ + {}, + { "time": 0.4, "angle": -71.11 }, + { "time": 0.7333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.4, "x": -178.02, "y": 131.43 }, + { "time": 0.7333, "x": -192.13, "y": 150.24 } + ] + }, + "star81": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": 188.73, "y": -84.86 }, + { "time": 0.6333, "x": 202.84, "y": -103.67 } + ] + }, + "star82": { + "rotate": [ + {}, + { "time": 0.3333, "angle": -71.11 }, + { "time": 0.6333, "angle": 163.3 } + ], + "translate": [ + { "x": -6.49, "y": -7.89 }, + { "time": 0.3333, "x": -159.21, "y": -136.58 }, + { "time": 0.6333, "x": -185.08, "y": -160.09 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/effect/getSpine/starzha.json.meta b/assets/effect/getSpine/starzha.json.meta new file mode 100644 index 0000000..6c2f12c --- /dev/null +++ b/assets/effect/getSpine/starzha.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "62ae7eaa-1552-4465-9696-f6220311642a", + "importer": "spine", + "textures": [ + "43fc1dbb-dacd-442f-9818-f0da7a5f6e98" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/getSpine/starzha.png b/assets/effect/getSpine/starzha.png new file mode 100644 index 0000000..94cf308 Binary files /dev/null and b/assets/effect/getSpine/starzha.png differ diff --git a/assets/effect/getSpine/starzha.png.meta b/assets/effect/getSpine/starzha.png.meta new file mode 100644 index 0000000..096731b --- /dev/null +++ b/assets/effect/getSpine/starzha.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "43fc1dbb-dacd-442f-9818-f0da7a5f6e98", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 740, + "height": 740, + "platformSettings": {}, + "subMetas": { + "starzha": { + "ver": "1.0.6", + "uuid": "5163d43f-6fb8-4eb1-a961-981be52a1fa3", + "importer": "sprite-frame", + "rawTextureUuid": "43fc1dbb-dacd-442f-9818-f0da7a5f6e98", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1, + "offsetY": -19.5, + "trimX": 0, + "trimY": 41, + "width": 738, + "height": 697, + "rawWidth": 740, + "rawHeight": 740, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/getSpine/starzha.spine b/assets/effect/getSpine/starzha.spine new file mode 100644 index 0000000..c0f311e Binary files /dev/null and b/assets/effect/getSpine/starzha.spine differ diff --git a/assets/effect/getSpine/starzha.spine.meta b/assets/effect/getSpine/starzha.spine.meta new file mode 100644 index 0000000..eb97c3f --- /dev/null +++ b/assets/effect/getSpine/starzha.spine.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "1c20dc53-6c05-4919-9cd8-55838568b25d", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/good.meta b/assets/effect/good.meta new file mode 100644 index 0000000..216e968 --- /dev/null +++ b/assets/effect/good.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "515bdb91-ddae-43df-aa2d-c51b6c703979", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/good/bang.anim b/assets/effect/good/bang.anim new file mode 100644 index 0000000..01ef9d4 --- /dev/null +++ b/assets/effect/good/bang.anim @@ -0,0 +1,922 @@ +[ + { + "__type__": "cc.AnimationClip", + "_name": "bang", + "_objFlags": 0, + "__editorExtras__": { + "embeddedPlayerGroups": [] + }, + "_native": "", + "sample": 60, + "speed": 1, + "wrapMode": 1, + "enableTrsBlending": false, + "_duration": 1.8, + "_hash": 500763545, + "_tracks": [ + { + "__id__": 1 + }, + { + "__id__": 11 + }, + { + "__id__": 21 + }, + { + "__id__": 32 + }, + { + "__id__": 37 + } + ], + "_exoticAnimation": null, + "_events": [], + "_embeddedPlayers": [], + "_additiveSettings": { + "__id__": 43 + }, + "_auxiliaryCurveEntries": [] + }, + { + "__type__": "cc.animation.VectorTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 2 + }, + "proxy": null + }, + "_channels": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + }, + { + "__id__": 9 + } + ], + "_nComponents": 3 + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + "scale" + ] + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 4 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.10000000149011612, + 0.20000000298023224, + 0.28333333134651184, + 0.36666667461395264, + 1.5499999523162842, + 1.7000000476837158, + 1.7999999523162842 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 2, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0.800000011920929, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1.2000000476837158, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1.7000000476837158, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 6 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.10000000149011612, + 0.20000000298023224, + 0.28333333134651184, + 0.36666667461395264, + 1.5499999523162842, + 1.7000000476837158, + 1.7999999523162842 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 2, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0.800000011920929, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1.2000000476837158, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1.7000000476837158, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 8 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.10000000149011612, + 0.20000000298023224, + 0.28333333134651184, + 0.36666667461395264, + 1.5499999523162842, + 1.7000000476837158, + 1.7999999523162842 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 1, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 10 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [], + "_values": [], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.VectorTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 12 + }, + "proxy": null + }, + "_channels": [ + { + "__id__": 13 + }, + { + "__id__": 15 + }, + { + "__id__": 17 + }, + { + "__id__": 19 + } + ], + "_nComponents": 3 + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + "position" + ] + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 14 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0.8999999761581421 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": -448.0639953613281, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 16 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0.8999999761581421 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": -216.23800659179688, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 18 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0.8999999761581421 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 20 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [], + "_values": [], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.ColorTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 22 + }, + "proxy": null + }, + "_channels": [ + { + "__id__": 24 + }, + { + "__id__": 26 + }, + { + "__id__": 28 + }, + { + "__id__": 30 + } + ] + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 23 + }, + "color" + ] + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.Sprite" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 25 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0.8999999761581421 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 27 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0.8999999761581421 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 29 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0.8999999761581421 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 31 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0.8999999761581421 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 255, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "broken": null + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.animation.ObjectTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 33 + }, + "proxy": null + }, + "_channel": { + "__id__": 35 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 34 + }, + "active" + ] + }, + { + "__type__": "cc.animation.HierarchyPath", + "path": "Node" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 36 + } + }, + { + "__type__": "cc.ObjectCurve", + "_times": [ + 0, + 1.55 + ], + "_values": [ + true, + true + ] + }, + { + "__type__": "cc.animation.RealTrack", + "_binding": { + "__type__": "cc.animation.TrackBinding", + "path": { + "__id__": 38 + }, + "proxy": null + }, + "_channel": { + "__id__": 41 + } + }, + { + "__type__": "cc.animation.TrackPath", + "_paths": [ + { + "__id__": 39 + }, + { + "__id__": 40 + }, + "emissionRate" + ] + }, + { + "__type__": "cc.animation.HierarchyPath", + "path": "Node" + }, + { + "__type__": "cc.animation.ComponentPath", + "component": "cc.ParticleSystem2D" + }, + { + "__type__": "cc.animation.Channel", + "_curve": { + "__id__": 42 + } + }, + { + "__type__": "cc.RealCurve", + "_times": [ + 0, + 0.13333334028720856, + 0.7166666388511658 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 4000, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + } + ], + "preExtrapolation": 1, + "postExtrapolation": 1 + }, + { + "__type__": "cc.AnimationClipAdditiveSettings", + "enabled": false, + "refClip": null + } +] \ No newline at end of file diff --git a/assets/effect/good/bang.anim.meta b/assets/effect/good/bang.anim.meta new file mode 100644 index 0000000..21303b2 --- /dev/null +++ b/assets/effect/good/bang.anim.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.1.2", + "uuid": "84e11f32-3c7c-4f05-8a5d-1777127f6370", + "importer": "animation-clip", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/good/bang.prefab b/assets/effect/good/bang.prefab new file mode 100644 index 0000000..8fcfc27 --- /dev/null +++ b/assets/effect/good/bang.prefab @@ -0,0 +1,337 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "bang", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + } + ], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Node", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 5 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem2D", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 1, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "duration": 0.05, + "emissionRate": 2000, + "life": 0.20000000298023224, + "lifeVar": 0.8, + "angle": 360, + "angleVar": 360, + "startSize": 20, + "startSizeVar": 50, + "endSize": 30.31999969482422, + "endSizeVar": 0, + "startSpin": -47.369998931884766, + "startSpinVar": 17.3, + "endSpin": -47.369998931884766, + "endSpinVar": -142.11000061035156, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 22.4, + "y": 15.6 + }, + "emitterMode": 1, + "gravity": { + "__type__": "cc.Vec2", + "x": 0.25, + "y": 0.8600000143051147 + }, + "speed": 0, + "speedVar": 190.7899932861328, + "tangentialAccel": -92.11000061035156, + "tangentialAccelVar": 65.79000091552734, + "radialAccel": -671.0499877929688, + "radialAccelVar": 65.79000091552734, + "rotationIsDir": false, + "startRadius": 6, + "startRadiusVar": 0, + "endRadius": 80, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "_preview": true, + "preview": true, + "_custom": true, + "_file": null, + "_spriteFrame": null, + "_totalParticles": 4000, + "_startColor": { + "__type__": "cc.Color", + "r": 203, + "g": 201, + "b": 86, + "a": 253 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 229, + "g": 255, + "b": 173, + "a": 243 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 174, + "g": 162, + "b": 20, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 107, + "g": 250, + "b": 250, + "a": 241 + }, + "_positionType": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ceVzQUvodJB5PkZZ+wbME2", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_defaultClip": null, + "_clips": [ + null + ], + "playOnLoad": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/effect/good/bang.prefab.meta b/assets/effect/good/bang.prefab.meta new file mode 100644 index 0000000..5365527 --- /dev/null +++ b/assets/effect/good/bang.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "59cd32c1-278f-4aba-a2b6-0e0c4f73e063", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/good/太棒了-.png b/assets/effect/good/太棒了-.png new file mode 100644 index 0000000..1daa5c4 Binary files /dev/null and b/assets/effect/good/太棒了-.png differ diff --git a/assets/effect/good/太棒了-.png.meta b/assets/effect/good/太棒了-.png.meta new file mode 100644 index 0000000..c9dc950 --- /dev/null +++ b/assets/effect/good/太棒了-.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "85a570c7-dd1e-40cd-89ac-a5a0de5429c8", + "importer": "image", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 202, + "height": 91, + "platformSettings": {}, + "subMetas": { + "太棒了-": { + "ver": "1.0.6", + "uuid": "85a570c7-dd1e-40cd-89ac-a5a0de5429c8@6c48a", + "importer": "texture", + "rawTextureUuid": "85a570c7-dd1e-40cd-89ac-a5a0de5429c8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1.5, + "offsetY": 16, + "trimX": 15, + "trimY": 3, + "width": 175, + "height": 53, + "rawWidth": 202, + "rawHeight": 91, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/hp.meta b/assets/effect/hp.meta new file mode 100644 index 0000000..22ead53 --- /dev/null +++ b/assets/effect/hp.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "6cf5ea5a-e66e-4b12-bb69-bb226ae3cc92", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/hp/light.atlas b/assets/effect/hp/light.atlas new file mode 100644 index 0000000..3c6c5da --- /dev/null +++ b/assets/effect/hp/light.atlas @@ -0,0 +1,447 @@ + +light.png +size: 1024,160 +format: RGBA8888 +filter: Linear,Linear +repeat: none +xulie/000 + rotate: false + xy: 1002, 31 + size: 19, 19 + orig: 440, 120 + offset: 78, 70 + index: -1 +xulie/001 + rotate: false + xy: 821, 2 + size: 24, 23 + orig: 440, 120 + offset: 73, 70 + index: -1 +xulie/002 + rotate: false + xy: 640, 62 + size: 28, 25 + orig: 440, 120 + offset: 68, 71 + index: -1 +xulie/003 + rotate: true + xy: 995, 126 + size: 33, 27 + orig: 440, 120 + offset: 62, 71 + index: -1 +xulie/004 + rotate: false + xy: 904, 22 + size: 38, 26 + orig: 440, 120 + offset: 56, 73 + index: -1 +xulie/005 + rotate: false + xy: 499, 0 + size: 42, 23 + orig: 440, 120 + offset: 49, 75 + index: -1 +xulie/006 + rotate: false + xy: 721, 7 + size: 46, 28 + orig: 440, 120 + offset: 43, 70 + index: -1 +xulie/007 + rotate: false + xy: 207, 10 + size: 44, 33 + orig: 440, 120 + offset: 41, 63 + index: -1 +xulie/008 + rotate: false + xy: 328, 23 + size: 39, 42 + orig: 440, 120 + offset: 41, 52 + index: -1 +xulie/009 + rotate: true + xy: 597, 18 + size: 32, 52 + orig: 440, 120 + offset: 42, 40 + index: -1 +xulie/010 + rotate: true + xy: 578, 52 + size: 35, 60 + orig: 440, 120 + offset: 44, 30 + index: -1 +xulie/011 + rotate: true + xy: 680, 90 + size: 43, 65 + orig: 440, 120 + offset: 46, 23 + index: -1 +xulie/012 + rotate: false + xy: 61, 94 + size: 53, 65 + orig: 440, 120 + offset: 48, 17 + index: -1 +xulie/013 + rotate: false + xy: 0, 99 + size: 59, 60 + orig: 440, 120 + offset: 49, 15 + index: -1 +xulie/014 + rotate: true + xy: 116, 88 + size: 71, 48 + orig: 440, 120 + offset: 52, 16 + index: -1 +xulie/015 + rotate: false + xy: 909, 123 + size: 84, 36 + orig: 440, 120 + offset: 58, 17 + index: -1 +xulie/016 + rotate: false + xy: 869, 73 + size: 95, 25 + orig: 440, 120 + offset: 67, 17 + index: -1 +xulie/017 + rotate: false + xy: 747, 68 + size: 105, 21 + orig: 440, 120 + offset: 77, 17 + index: -1 +xulie/018 + rotate: false + xy: 166, 88 + size: 112, 21 + orig: 440, 120 + offset: 89, 17 + index: -1 +xulie/019 + rotate: false + xy: 545, 89 + size: 125, 21 + orig: 440, 120 + offset: 96, 17 + index: -1 +xulie/020 + rotate: false + xy: 893, 100 + size: 130, 21 + orig: 440, 120 + offset: 110, 17 + index: -1 +xulie/021 + rotate: false + xy: 281, 115 + size: 131, 21 + orig: 440, 120 + offset: 129, 17 + index: -1 +xulie/022 + rotate: false + xy: 281, 92 + size: 130, 21 + orig: 440, 120 + offset: 149, 17 + index: -1 +xulie/023 + rotate: false + xy: 414, 115 + size: 131, 21 + orig: 440, 120 + offset: 168, 17 + index: -1 +xulie/024 + rotate: false + xy: 413, 92 + size: 130, 21 + orig: 440, 120 + offset: 188, 17 + index: -1 +xulie/025 + rotate: false + xy: 760, 115 + size: 131, 21 + orig: 440, 120 + offset: 207, 17 + index: -1 +xulie/026 + rotate: false + xy: 747, 91 + size: 120, 22 + orig: 440, 120 + offset: 227, 15 + index: -1 +xulie/027 + rotate: false + xy: 382, 69 + size: 107, 21 + orig: 440, 120 + offset: 246, 15 + index: -1 +xulie/028 + rotate: false + xy: 113, 64 + size: 93, 22 + orig: 440, 120 + offset: 266, 14 + index: -1 +xulie/029 + rotate: false + xy: 70, 40 + size: 81, 22 + orig: 440, 120 + offset: 285, 14 + index: -1 +xulie/030 + rotate: false + xy: 0, 16 + size: 67, 22 + orig: 440, 120 + offset: 305, 14 + index: -1 +xulie/031 + rotate: false + xy: 651, 3 + size: 54, 22 + orig: 440, 120 + offset: 324, 14 + index: -1 +xulie/032 + rotate: false + xy: 769, 3 + size: 50, 22 + orig: 440, 120 + offset: 335, 14 + index: -1 +xulie/033 + rotate: false + xy: 369, 7 + size: 52, 24 + orig: 440, 120 + offset: 341, 15 + index: -1 +xulie/034 + rotate: false + xy: 851, 18 + size: 51, 30 + orig: 440, 120 + offset: 348, 16 + index: -1 +xulie/035 + rotate: false + xy: 802, 27 + size: 47, 39 + orig: 440, 120 + offset: 354, 18 + index: -1 +xulie/036 + rotate: true + xy: 208, 45 + size: 41, 49 + orig: 440, 120 + offset: 360, 20 + index: -1 +xulie/037 + rotate: true + xy: 382, 33 + size: 34, 58 + orig: 440, 120 + offset: 367, 23 + index: -1 +xulie/038 + rotate: true + xy: 259, 37 + size: 28, 67 + orig: 440, 120 + offset: 373, 23 + index: -1 +xulie/039 + rotate: true + xy: 525, 25 + size: 25, 70 + orig: 440, 120 + offset: 375, 27 + index: -1 +xulie/040 + rotate: true + xy: 733, 37 + size: 29, 67 + orig: 440, 120 + offset: 370, 34 + index: -1 +xulie/041 + rotate: true + xy: 672, 52 + size: 36, 59 + orig: 440, 120 + offset: 361, 44 + index: -1 +xulie/042 + rotate: false + xy: 966, 52 + size: 44, 46 + orig: 440, 120 + offset: 351, 57 + index: -1 +xulie/043 + rotate: false + xy: 153, 28 + size: 52, 34 + orig: 440, 120 + offset: 341, 69 + index: -1 +xulie/044 + rotate: false + xy: 69, 14 + size: 61, 24 + orig: 440, 120 + offset: 331, 79 + index: -1 +xulie/045 + rotate: false + xy: 253, 14 + size: 61, 21 + orig: 440, 120 + offset: 326, 82 + index: -1 +xulie/046 + rotate: false + xy: 132, 5 + size: 58, 21 + orig: 440, 120 + offset: 324, 81 + index: -1 +xulie/047 + rotate: false + xy: 442, 12 + size: 55, 24 + orig: 440, 120 + offset: 319, 78 + index: -1 +xulie/048 + rotate: false + xy: 651, 27 + size: 68, 23 + orig: 440, 120 + offset: 296, 78 + index: -1 +xulie/049 + rotate: false + xy: 442, 38 + size: 81, 22 + orig: 440, 120 + offset: 273, 78 + index: -1 +xulie/050 + rotate: false + xy: 854, 50 + size: 94, 21 + orig: 440, 120 + offset: 250, 78 + index: -1 +xulie/051 + rotate: false + xy: 0, 71 + size: 111, 21 + orig: 440, 120 + offset: 227, 78 + index: -1 +xulie/052 + rotate: false + xy: 547, 112 + size: 131, 21 + orig: 440, 120 + offset: 204, 78 + index: -1 +xulie/053 + rotate: false + xy: 166, 138 + size: 152, 21 + orig: 440, 120 + offset: 181, 78 + index: -1 +xulie/054 + rotate: false + xy: 320, 138 + size: 152, 21 + orig: 440, 120 + offset: 158, 78 + index: -1 +xulie/055 + rotate: false + xy: 474, 138 + size: 152, 21 + orig: 440, 120 + offset: 135, 78 + index: -1 +xulie/056 + rotate: false + xy: 760, 138 + size: 147, 21 + orig: 440, 120 + offset: 117, 78 + index: -1 +xulie/057 + rotate: false + xy: 628, 135 + size: 130, 24 + orig: 440, 120 + offset: 111, 79 + index: -1 +xulie/058 + rotate: false + xy: 166, 111 + size: 113, 25 + orig: 440, 120 + offset: 105, 80 + index: -1 +xulie/059 + rotate: false + xy: 280, 67 + size: 100, 23 + orig: 440, 120 + offset: 95, 82 + index: -1 +xulie/060 + rotate: false + xy: 491, 62 + size: 85, 25 + orig: 440, 120 + offset: 87, 79 + index: -1 +xulie/061 + rotate: false + xy: 0, 40 + size: 68, 29 + orig: 440, 120 + offset: 81, 73 + index: -1 +xulie/062 + rotate: false + xy: 950, 19 + size: 50, 31 + orig: 440, 120 + offset: 78, 70 + index: -1 diff --git a/assets/effect/hp/light.atlas.meta b/assets/effect/hp/light.atlas.meta new file mode 100644 index 0000000..c383829 --- /dev/null +++ b/assets/effect/hp/light.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "d076133b-baba-4159-a75a-548ca30c09b2", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/hp/light.json b/assets/effect/hp/light.json new file mode 100644 index 0000000..495b30b --- /dev/null +++ b/assets/effect/hp/light.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"VvU6iTQnvKRpHhGlE6Ste6ElzQE","spine":"3.8.99","x":-222.31,"y":-60.31,"width":440,"height":120,"images":"","audio":"D:/work/block/做完的/体力冒星星"},"bones":[{"name":"root"},{"name":"light","parent":"root","x":-2.31,"y":-0.31}],"slots":[{"name":"xulie/000","bone":"light","color":"ffe493ff","attachment":"xulie/062","blend":"screen"}],"skins":[{"name":"default","attachments":{"xulie/000":{"xulie/000":{"width":440,"height":120},"xulie/001":{"width":440,"height":120},"xulie/002":{"width":440,"height":120},"xulie/003":{"width":440,"height":120},"xulie/004":{"width":440,"height":120},"xulie/005":{"width":440,"height":120},"xulie/006":{"width":440,"height":120},"xulie/007":{"width":440,"height":120},"xulie/008":{"width":440,"height":120},"xulie/009":{"width":440,"height":120},"xulie/010":{"width":440,"height":120},"xulie/011":{"width":440,"height":120},"xulie/012":{"width":440,"height":120},"xulie/013":{"width":440,"height":120},"xulie/014":{"width":440,"height":120},"xulie/015":{"width":440,"height":120},"xulie/016":{"width":440,"height":120},"xulie/017":{"width":440,"height":120},"xulie/018":{"width":440,"height":120},"xulie/019":{"width":440,"height":120},"xulie/020":{"width":440,"height":120},"xulie/021":{"width":440,"height":120},"xulie/022":{"width":440,"height":120},"xulie/023":{"width":440,"height":120},"xulie/024":{"width":440,"height":120},"xulie/025":{"width":440,"height":120},"xulie/026":{"width":440,"height":120},"xulie/027":{"width":440,"height":120},"xulie/028":{"width":440,"height":120},"xulie/029":{"width":440,"height":120},"xulie/030":{"width":440,"height":120},"xulie/031":{"width":440,"height":120},"xulie/032":{"width":440,"height":120},"xulie/033":{"width":440,"height":120},"xulie/034":{"width":440,"height":120},"xulie/035":{"width":440,"height":120},"xulie/036":{"width":440,"height":120},"xulie/037":{"width":440,"height":120},"xulie/038":{"width":440,"height":120},"xulie/039":{"width":440,"height":120},"xulie/040":{"width":440,"height":120},"xulie/041":{"width":440,"height":120},"xulie/042":{"width":440,"height":120},"xulie/043":{"width":440,"height":120},"xulie/044":{"width":440,"height":120},"xulie/045":{"width":440,"height":120},"xulie/046":{"width":440,"height":120},"xulie/047":{"width":440,"height":120},"xulie/048":{"width":440,"height":120},"xulie/049":{"width":440,"height":120},"xulie/050":{"width":440,"height":120},"xulie/051":{"width":440,"height":120},"xulie/052":{"width":440,"height":120},"xulie/053":{"width":440,"height":120},"xulie/054":{"width":440,"height":120},"xulie/055":{"width":440,"height":120},"xulie/056":{"width":440,"height":120},"xulie/057":{"width":440,"height":120},"xulie/058":{"width":440,"height":120},"xulie/059":{"width":440,"height":120},"xulie/060":{"width":440,"height":120},"xulie/061":{"width":440,"height":120},"xulie/062":{"width":440,"height":120}}}}],"animations":{"animation":{"slots":{"xulie/000":{"attachment":[{"name":"xulie/000"},{"time":0.0333,"name":"xulie/001"},{"time":0.0667,"name":"xulie/002"},{"time":0.1,"name":"xulie/003"},{"time":0.1333,"name":"xulie/004"},{"time":0.1667,"name":"xulie/005"},{"time":0.2,"name":"xulie/006"},{"time":0.2333,"name":"xulie/007"},{"time":0.2667,"name":"xulie/008"},{"time":0.3,"name":"xulie/009"},{"time":0.3333,"name":"xulie/010"},{"time":0.3667,"name":"xulie/011"},{"time":0.4,"name":"xulie/012"},{"time":0.4333,"name":"xulie/013"},{"time":0.4667,"name":"xulie/014"},{"time":0.5,"name":"xulie/015"},{"time":0.5333,"name":"xulie/016"},{"time":0.5667,"name":"xulie/017"},{"time":0.6,"name":"xulie/018"},{"time":0.6333,"name":"xulie/019"},{"time":0.6667,"name":"xulie/020"},{"time":0.7,"name":"xulie/021"},{"time":0.7333,"name":"xulie/022"},{"time":0.7667,"name":"xulie/023"},{"time":0.8,"name":"xulie/024"},{"time":0.8333,"name":"xulie/025"},{"time":0.8667,"name":"xulie/026"},{"time":0.9,"name":"xulie/027"},{"time":0.9333,"name":"xulie/028"},{"time":0.9667,"name":"xulie/029"},{"time":1,"name":"xulie/030"},{"time":1.0333,"name":"xulie/031"},{"time":1.0667,"name":"xulie/032"},{"time":1.1,"name":"xulie/033"},{"time":1.1333,"name":"xulie/034"},{"time":1.1667,"name":"xulie/035"},{"time":1.2,"name":"xulie/036"},{"time":1.2333,"name":"xulie/037"},{"time":1.2667,"name":"xulie/038"},{"time":1.3,"name":"xulie/039"},{"time":1.3333,"name":"xulie/040"},{"time":1.3667,"name":"xulie/041"},{"time":1.4,"name":"xulie/042"},{"time":1.4333,"name":"xulie/043"},{"time":1.4667,"name":"xulie/044"},{"time":1.5,"name":"xulie/045"},{"time":1.5333,"name":"xulie/046"},{"time":1.5667,"name":"xulie/047"},{"time":1.6,"name":"xulie/048"},{"time":1.6333,"name":"xulie/049"},{"time":1.6667,"name":"xulie/050"},{"time":1.7,"name":"xulie/051"},{"time":1.7333,"name":"xulie/052"},{"time":1.7667,"name":"xulie/053"},{"time":1.8,"name":"xulie/054"},{"time":1.8333,"name":"xulie/055"},{"time":1.8667,"name":"xulie/056"},{"time":1.9,"name":"xulie/057"},{"time":1.9333,"name":"xulie/058"},{"time":1.9667,"name":"xulie/059"},{"time":2,"name":"xulie/060"},{"time":2.0333,"name":"xulie/061"},{"time":2.0667,"name":"xulie/062"}]}}}}} \ No newline at end of file diff --git a/assets/effect/hp/light.json.meta b/assets/effect/hp/light.json.meta new file mode 100644 index 0000000..deacb09 --- /dev/null +++ b/assets/effect/hp/light.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "a1baaeba-23ec-42c0-ad56-f76655ebcb96", + "importer": "spine", + "textures": [ + "a7836302-b6b9-444e-abea-fb63bd9c4bff" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/hp/light.png b/assets/effect/hp/light.png new file mode 100644 index 0000000..63c5efd Binary files /dev/null and b/assets/effect/hp/light.png differ diff --git a/assets/effect/hp/light.png.meta b/assets/effect/hp/light.png.meta new file mode 100644 index 0000000..614ae1a --- /dev/null +++ b/assets/effect/hp/light.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a7836302-b6b9-444e-abea-fb63bd9c4bff", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1024, + "height": 160, + "platformSettings": {}, + "subMetas": { + "light": { + "ver": "1.0.6", + "uuid": "b50561c2-888d-4304-99d7-3e157cb65353", + "importer": "sprite-frame", + "rawTextureUuid": "a7836302-b6b9-444e-abea-fb63bd9c4bff", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 0.5, + "trimX": 0, + "trimY": 0, + "width": 1023, + "height": 159, + "rawWidth": 1024, + "rawHeight": 160, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/hp/tili.atlas b/assets/effect/hp/tili.atlas new file mode 100644 index 0000000..f1e9f57 --- /dev/null +++ b/assets/effect/hp/tili.atlas @@ -0,0 +1,20 @@ + +tili.png +size: 16,16 +format: RGBA8888 +filter: Linear,Linear +repeat: none +star + rotate: false + xy: 0, 6 + size: 9, 10 + orig: 9, 10 + offset: 0, 0 + index: -1 +yuan + rotate: false + xy: 0, 0 + size: 4, 4 + orig: 4, 4 + offset: 0, 0 + index: -1 diff --git a/assets/effect/hp/tili.atlas.meta b/assets/effect/hp/tili.atlas.meta new file mode 100644 index 0000000..6f85050 --- /dev/null +++ b/assets/effect/hp/tili.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "812be425-ba87-4171-9650-18f1a3e8cd65", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/hp/tili.json b/assets/effect/hp/tili.json new file mode 100644 index 0000000..a882eb5 --- /dev/null +++ b/assets/effect/hp/tili.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"6l6ofCtHnCYtoO4ybQBrUpWcu6g","spine":"3.8.99","x":-222.31,"y":-62.07,"width":440,"height":121.77,"images":"","audio":""},"bones":[{"name":"root"},{"name":"star","parent":"root","x":-37.28,"y":-23.63},{"name":"star2","parent":"root","x":71.25,"y":-23.63},{"name":"star3","parent":"root","x":-4.83,"y":-11.53},{"name":"star4","parent":"root","x":-95.65,"y":-25.33,"scaleX":0.5,"scaleY":0.5},{"name":"star5","parent":"root","x":28.29,"y":-23.63},{"name":"star6","parent":"root","x":-137.56,"y":-23.63},{"name":"star7","parent":"root","x":-76.5,"y":-29.33},{"name":"star8","parent":"root","x":-161.33,"y":-40.95},{"name":"star9","parent":"root","x":56.47,"y":-12.18,"scaleX":0.5,"scaleY":0.5},{"name":"star10","parent":"root","x":87.35,"y":-47.93},{"name":"star11","parent":"root","x":46.22,"y":-11.53},{"name":"star12","parent":"root","x":-152.94,"y":-35.34},{"name":"star13","parent":"root","x":123.43,"y":-35.34},{"name":"star14","parent":"root","x":154.32,"y":-31.54}],"slots":[{"name":"star","bone":"star","color":"fdff9cff","attachment":"star"},{"name":"star12","bone":"star12","color":"fdff9cff","attachment":"star"},{"name":"star13","bone":"star13","color":"fdff9cff","attachment":"star"},{"name":"star4","bone":"star4","color":"fdff9cff","attachment":"star"},{"name":"star9","bone":"star9","color":"fdff9cff","attachment":"star"},{"name":"star2","bone":"star2","color":"fdff9cff","attachment":"star"},{"name":"star5","bone":"star5","color":"fdff9cff","attachment":"star"},{"name":"star6","bone":"star6","color":"fdff9cff","attachment":"star"},{"name":"star3","bone":"star3","attachment":"yuan"},{"name":"star14","bone":"star14","attachment":"yuan"},{"name":"star11","bone":"star11","attachment":"yuan"},{"name":"star10","bone":"star10","attachment":"yuan"},{"name":"star7","bone":"star7","color":"fdff9cff","attachment":"yuan"},{"name":"star8","bone":"star8","color":"fdff9cff","attachment":"yuan"}],"skins":[{"name":"default","attachments":{"star":{"star":{"x":0.87,"y":-0.23,"width":48,"height":53}},"star2":{"star":{"x":0.87,"y":-0.23,"scaleX":0.6,"scaleY":0.6,"width":48,"height":53}},"star3":{"yuan":{"scaleX":0.5,"scaleY":0.5,"width":24,"height":24}},"star4":{"star":{"x":0.87,"y":-0.23,"width":48,"height":53}},"star5":{"star":{"x":0.87,"y":-0.23,"scaleX":0.6,"scaleY":0.6,"width":48,"height":53}},"star6":{"star":{"x":0.87,"y":-0.23,"scaleX":0.6,"scaleY":0.6,"width":48,"height":53}},"star7":{"yuan":{"scaleX":0.3,"scaleY":0.3,"width":24,"height":24}},"star8":{"yuan":{"scaleX":0.3,"scaleY":0.3,"width":24,"height":24}},"star9":{"star":{"x":0.87,"y":-0.23,"width":48,"height":53}},"star10":{"yuan":{"scaleX":0.5,"scaleY":0.5,"width":24,"height":24}},"star11":{"yuan":{"scaleX":0.5,"scaleY":0.5,"width":24,"height":24}},"star12":{"star":{"x":0.87,"y":-0.23,"width":48,"height":53}},"star13":{"star":{"x":0.87,"y":-0.23,"width":48,"height":53}},"star14":{"yuan":{"scaleX":0.5,"scaleY":0.5,"width":24,"height":24}}}}],"animations":{"animation":{"slots":{"star":{"color":[{"color":"ffffff00"},{"time":0.2,"color":"fdff9cff","curve":"stepped"},{"time":1.2667,"color":"fdff9cff"},{"time":1.4667,"color":"ffffff00"}]},"star2":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.2667,"color":"ffffff00"},{"time":0.4667,"color":"fdff9cff","curve":"stepped"},{"time":1.5,"color":"fdff9cff"},{"time":1.7,"color":"ffffff00"}]},"star3":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.3,"color":"ffffff00"},{"time":0.5,"color":"ffffffff","curve":"stepped"},{"time":1.5667,"color":"ffffffff"},{"time":1.7667,"color":"ffffff00"}]},"star4":{"color":[{"color":"ffffffff"},{"time":0.4,"color":"fdff9cff"},{"time":0.6,"color":"ffffff00","curve":"stepped"},{"time":1.6667,"color":"ffffff00"},{"time":1.8667,"color":"fdff9cff"}]},"star5":{"color":[{"time":0.1,"color":"fdff9cff"},{"time":0.3,"color":"ffffff00","curve":"stepped"},{"time":1.3667,"color":"ffffff00"},{"time":1.5667,"color":"fdff9cff"}]},"star6":{"color":[{"color":"ffffffff","curve":"stepped"},{"time":0.1,"color":"ffffffff"},{"time":0.3,"color":"ffffff00","curve":"stepped"},{"time":1.3667,"color":"ffffff00"},{"time":1.5667,"color":"ffffffff"}]},"star7":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.3,"color":"ffffff00"},{"time":0.5,"color":"ffffffff","curve":"stepped"},{"time":1.6667,"color":"ffffffff"},{"time":1.8667,"color":"ffffff00"}]},"star8":{"color":[{"color":"ffffffff","curve":"stepped"},{"time":0.0667,"color":"ffffffff"},{"time":0.2667,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00"},{"time":1.5333,"color":"ffffffff"}]},"star9":{"color":[{"time":0.4,"color":"fdff9cff"},{"time":0.6,"color":"ffffff00","curve":"stepped"},{"time":1.6667,"color":"ffffff00"},{"time":1.8667,"color":"fdff9cff"}]},"star10":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.3,"color":"ffffff00"},{"time":0.5,"color":"ffffffff","curve":"stepped"},{"time":1.7,"color":"ffffffff"},{"time":1.9,"color":"ffffff00"}]},"star11":{"color":[{"time":0.1333,"color":"ffffffff"},{"time":0.3333,"color":"ffffff00","curve":"stepped"},{"time":1.2333,"color":"ffffff00"},{"time":1.4333,"color":"ffffffff"}]},"star12":{"color":[{"time":0.2667,"color":"fdff9cff"},{"time":0.4667,"color":"fdff9c00"},{"time":1.0667,"color":"ffffff00"},{"time":1.2667,"color":"fdff9cff"}]},"star13":{"color":[{"color":"ffffffff"},{"time":0.2667,"color":"fdff9cff"},{"time":0.4667,"color":"ffffff00","curve":"stepped"},{"time":1.0667,"color":"ffffff00"},{"time":1.2667,"color":"fdff9cff"}]},"star14":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.3,"color":"ffffff00"},{"time":0.5,"color":"ffffffff","curve":"stepped"},{"time":1.6333,"color":"ffffffff"},{"time":1.8333,"color":"ffffff00"}]}},"bones":{"star":{"translate":[{"y":-4.65},{"time":1.5,"y":94.2}],"scale":[{"x":0,"y":0},{"time":1.3667,"x":1.2,"y":1.2}]},"star2":{"translate":[{"y":-4.65,"curve":"stepped"},{"time":0.2667,"y":-4.65},{"time":1.7333,"y":94.2}],"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2667,"x":0,"y":0},{"time":1.6333,"x":1.2,"y":1.2}]},"star3":{"translate":[{"y":-4.65,"curve":"stepped"},{"time":0.3,"y":-4.65},{"time":1.8,"y":94.2}],"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3,"x":0,"y":0},{"time":1.6667}]},"star4":{"translate":[{"x":-1.72,"y":31.89},{"time":0.6333,"y":94.2},{"time":1.6667,"y":-4.65},{"time":2.0667,"x":-1.72,"y":31.89}],"scale":[{"x":1.4,"y":1.4},{"time":0.5,"x":2,"y":2},{"time":1.6667},{"time":2.0667,"x":1.4,"y":1.4}]},"star5":{"translate":[{"y":62.31},{"time":0.3333,"y":94.2},{"time":1.3667,"y":-4.65},{"time":2.0667,"y":62.31}],"scale":[{"x":0.7,"y":0.7},{"time":0.2667},{"time":1.3667,"x":0,"y":0},{"time":2.0667,"x":0.7,"y":0.7}]},"star6":{"translate":[{"y":62.31},{"time":0.3333,"y":94.2},{"time":1.3667,"y":-4.65},{"time":2.0667,"y":62.31}],"scale":[{"x":0.7,"y":0.7},{"time":0.2667},{"time":1.3667,"x":0,"y":0},{"time":2.0667,"x":0.7,"y":0.7}]},"star7":{"translate":[{"y":-4.65,"curve":"stepped"},{"time":0.3,"y":-4.65},{"time":1.9,"y":94.2}],"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3,"x":0,"y":0},{"time":1.8}]},"star8":{"translate":[{"y":65.5},{"time":0.3,"y":94.2},{"time":1.3333,"y":-4.65},{"time":2.0667,"y":65.5}],"scale":[{"x":0.8,"y":0.8},{"time":0.2333},{"time":1.3333,"x":0,"y":0},{"time":2.0667,"x":0.8,"y":0.8}]},"star9":{"translate":[{"y":33.61},{"time":0.6333,"y":94.2},{"time":1.6667,"y":-4.65},{"time":2.0667,"y":33.61}],"scale":[{"x":0.4,"y":0.4},{"time":0.5},{"time":1.6667,"x":0,"y":0},{"time":2.0667,"x":0.4,"y":0.4}]},"star10":{"translate":[{"y":-4.65,"curve":"stepped"},{"time":0.3,"y":-4.65},{"time":1.9333,"y":94.2}],"scale":[{"time":0.3,"x":0,"y":0},{"time":1.8,"x":1.2,"y":1.2}]},"star11":{"translate":[{"y":64},{"time":0.3667,"y":94.2},{"time":1.2333,"y":-4.65},{"time":2.0667,"y":64}]},"star12":{"translate":[{"y":61.25},{"time":0.5,"y":94.2},{"time":1.0667,"y":-4.65},{"time":2.0667,"y":61.25}],"scale":[{"x":0.8,"y":0.8},{"time":0.3667},{"time":1.0667,"x":0,"y":0},{"time":2.0667,"x":0.8,"y":0.8}]},"star13":{"translate":[{"y":61.25},{"time":0.5,"y":94.2},{"time":1.0667,"y":-4.65},{"time":2.0667,"y":61.25}],"scale":[{"x":0.8,"y":0.8},{"time":0.3667},{"time":1.0667,"x":0,"y":0},{"time":2.0667,"x":0.8,"y":0.8}]},"star14":{"translate":[{"y":-4.65,"curve":"stepped"},{"time":0.3,"y":-4.65},{"time":1.8667,"y":94.2}],"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3,"x":0,"y":0},{"time":1.7667}]}}}}} \ No newline at end of file diff --git a/assets/effect/hp/tili.json.meta b/assets/effect/hp/tili.json.meta new file mode 100644 index 0000000..1a4e4aa --- /dev/null +++ b/assets/effect/hp/tili.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "0dec3546-fb91-46f1-8ef8-9689b3f561db", + "importer": "spine", + "textures": [ + "ba2acce8-140f-4fad-85f7-be49cb40d5e9" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/hp/tili.png b/assets/effect/hp/tili.png new file mode 100644 index 0000000..8bdf2f2 Binary files /dev/null and b/assets/effect/hp/tili.png differ diff --git a/assets/effect/hp/tili.png.meta b/assets/effect/hp/tili.png.meta new file mode 100644 index 0000000..8dd83de --- /dev/null +++ b/assets/effect/hp/tili.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "ba2acce8-140f-4fad-85f7-be49cb40d5e9", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 16, + "height": 16, + "platformSettings": {}, + "subMetas": { + "tili": { + "ver": "1.0.6", + "uuid": "98a53d3a-df59-4378-8ed5-1ac8d17dcf7a", + "importer": "sprite-frame", + "rawTextureUuid": "ba2acce8-140f-4fad-85f7-be49cb40d5e9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3.5, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 9, + "height": 16, + "rawWidth": 16, + "rawHeight": 16, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/lianjie_1.png b/assets/effect/lianjie_1.png new file mode 100644 index 0000000..850b47d Binary files /dev/null and b/assets/effect/lianjie_1.png differ diff --git a/assets/effect/lianjie_1.png.meta b/assets/effect/lianjie_1.png.meta new file mode 100644 index 0000000..77b4b17 --- /dev/null +++ b/assets/effect/lianjie_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "82acc72d-a7fc-4411-a357-fe2ea85ffd5c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 52, + "height": 50, + "platformSettings": {}, + "subMetas": { + "lianjie_1": { + "ver": "1.0.6", + "uuid": "9a4ed6f5-b2e2-45bc-beb5-bff252c47bf2", + "importer": "sprite-frame", + "rawTextureUuid": "82acc72d-a7fc-4411-a357-fe2ea85ffd5c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 52, + "height": 50, + "rawWidth": 52, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/lianjie_2.png b/assets/effect/lianjie_2.png new file mode 100644 index 0000000..b41752e Binary files /dev/null and b/assets/effect/lianjie_2.png differ diff --git a/assets/effect/lianjie_2.png.meta b/assets/effect/lianjie_2.png.meta new file mode 100644 index 0000000..e0df30e --- /dev/null +++ b/assets/effect/lianjie_2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e8f06cd0-a6df-473e-8c1c-c2dca70b1193", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 50, + "height": 52, + "platformSettings": {}, + "subMetas": { + "lianjie_2": { + "ver": "1.0.6", + "uuid": "e934896c-26fd-4141-8052-f82474be383f", + "importer": "sprite-frame", + "rawTextureUuid": "e8f06cd0-a6df-473e-8c1c-c2dca70b1193", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 50, + "height": 52, + "rawWidth": 50, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/load.meta b/assets/effect/load.meta new file mode 100644 index 0000000..2860f00 --- /dev/null +++ b/assets/effect/load.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "fb664eba-5060-4ce6-b405-1f291dbc4aef", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/load/skeleton.atlas b/assets/effect/load/skeleton.atlas new file mode 100644 index 0000000..6bedfac --- /dev/null +++ b/assets/effect/load/skeleton.atlas @@ -0,0 +1,69 @@ + +skeleton.png +size: 3260,3260 +format: RGBA8888 +filter: Linear,Linear +repeat: none +转场/aa + rotate: false + xy: 0, 611 + size: 304, 304 + orig: 304, 304 + offset: 0, 0 + index: -1 +转场/bg2 + rotate: false + xy: 0, 917 + size: 1080, 2340 + orig: 1080, 2340 + offset: 0, 0 + index: -1 +转场/fk1 + rotate: false + xy: 306, 0 + size: 303, 303 + orig: 304, 304 + offset: 0, 1 + index: -1 +转场/fk10 + rotate: true + xy: 0, 0 + size: 303, 304 + orig: 304, 304 + offset: 0, 0 + index: -1 +转场/fk2 + rotate: false + xy: 306, 611 + size: 304, 304 + orig: 304, 304 + offset: 0, 0 + index: -1 +转场/fk3 + rotate: false + xy: 612, 611 + size: 304, 304 + orig: 304, 304 + offset: 0, 0 + index: -1 +转场/fk4 + rotate: false + xy: 0, 305 + size: 304, 304 + orig: 304, 304 + offset: 0, 0 + index: -1 +转场/fk6 + rotate: false + xy: 306, 305 + size: 304, 304 + orig: 304, 304 + offset: 0, 0 + index: -1 +转场/fk7 + rotate: false + xy: 612, 305 + size: 304, 304 + orig: 304, 304 + offset: 0, 0 + index: -1 diff --git a/assets/effect/load/skeleton.atlas.meta b/assets/effect/load/skeleton.atlas.meta new file mode 100644 index 0000000..b921fc1 --- /dev/null +++ b/assets/effect/load/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "b8cbb874-456c-45e9-a26d-bcf67373d057", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/load/skeleton.json b/assets/effect/load/skeleton.json new file mode 100644 index 0000000..2061bb7 --- /dev/null +++ b/assets/effect/load/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"/v6OL9tNnPXr514ns0lNwnTg4t8","spine":"3.8.99","x":-818.21,"y":-1415.98,"width":1699.06,"height":2937.38,"images":"","audio":""},"bones":[{"name":"root"},{"name":"yiceng","parent":"root","x":1362.8,"y":0.2},{"name":"49","parent":"yiceng","x":-1269.44,"y":-997.49,"scaleX":1.4,"scaleY":1.4},{"name":"50","parent":"yiceng","x":-1942.11,"y":-573.99,"scaleX":1.4,"scaleY":1.4},{"name":"51","parent":"yiceng","x":-1195.39,"y":689.59,"scaleX":1.4,"scaleY":1.4},{"name":"52","parent":"yiceng","x":-758.67,"y":-1014.29,"scaleX":1.4,"scaleY":1.4},{"name":"54","parent":"yiceng","x":-1126.33,"y":-779.23,"scaleX":1.4,"scaleY":1.4},{"name":"55","parent":"yiceng","x":-1968.21,"y":-773.54,"scaleX":1.4,"scaleY":1.4},{"name":"56","parent":"yiceng","x":-1335.42,"y":-362.37,"scaleX":1.4,"scaleY":1.4},{"name":"57","parent":"yiceng","x":-750.1,"y":-155.88,"scaleX":1.4,"scaleY":1.4},{"name":"58","parent":"yiceng","x":-1755.23,"y":-1199.91,"scaleX":1.4,"scaleY":1.4},{"name":"59","parent":"yiceng","x":-909.11,"y":-1203.38,"scaleX":1.4,"scaleY":1.4},{"name":"62","parent":"yiceng","x":-1547.37,"y":883.69,"scaleX":1.4,"scaleY":1.4},{"name":"64","parent":"yiceng","x":-1548.92,"y":-774.67,"scaleX":1.4,"scaleY":1.4},{"name":"67","parent":"yiceng","x":-1331.21,"y":-1203.09,"scaleX":1.4,"scaleY":1.4},{"name":"68","parent":"yiceng","x":-1757.06,"y":-357.06,"scaleX":1.4,"scaleY":1.4},{"name":"69","parent":"yiceng","x":-953.66,"y":1090.23,"scaleX":1.4,"scaleY":1.4},{"name":"70","parent":"yiceng","x":-694.74,"y":-781.49,"scaleX":1.4,"scaleY":1.4},{"name":"71","parent":"yiceng","x":-1400.67,"y":263.74,"scaleX":1.4,"scaleY":1.4},{"name":"72","parent":"yiceng","x":-1121.63,"y":58.25,"scaleX":1.4,"scaleY":1.4},{"name":"73","parent":"yiceng","x":-1418.02,"y":1089.75,"scaleX":1.4,"scaleY":1.4},{"name":"76","parent":"yiceng","x":-1373.66,"y":-573.92,"scaleX":1.4,"scaleY":1.4},{"name":"79","parent":"yiceng","x":-1544.65,"y":60.78,"scaleX":1.4,"scaleY":1.4},{"name":"80","parent":"yiceng","x":-1903.69,"y":262.5,"scaleX":1.4,"scaleY":1.4},{"name":"82","parent":"yiceng","x":-914.18,"y":-362.21,"scaleX":1.4,"scaleY":1.4},{"name":"83","parent":"yiceng","x":-1562.07,"y":-148.87,"scaleX":1.4,"scaleY":1.4},{"name":"84","parent":"yiceng","x":-957.17,"y":263.55,"scaleX":1.4,"scaleY":1.4},{"name":"96","parent":"yiceng","x":-1961.89,"y":58.25,"scaleX":1.4,"scaleY":1.4},{"name":"60","parent":"yiceng","x":-1759.35,"y":483.05,"scaleX":1.4,"scaleY":1.4},{"name":"97","parent":"yiceng","x":-1330.38,"y":476.31,"scaleX":1.4,"scaleY":1.4},{"name":"98","parent":"yiceng","x":-1127.81,"y":890.15,"scaleX":1.4,"scaleY":1.4},{"name":"99","parent":"yiceng","x":-701.12,"y":887.02,"scaleX":1.4,"scaleY":1.4},{"name":"100","parent":"yiceng","x":-906.81,"y":480.52,"scaleX":1.4,"scaleY":1.4},{"name":"101","parent":"yiceng","x":-1963.4,"y":887.02,"scaleX":1.4,"scaleY":1.4},{"name":"102","parent":"yiceng","x":-1591.46,"y":-993.14,"scaleX":1.4,"scaleY":1.4},{"name":"81","parent":"yiceng","x":-1763.7,"y":1305.27,"scaleX":1.4,"scaleY":1.4},{"name":"103","parent":"yiceng","x":-1331.28,"y":1308.4,"scaleX":1.4,"scaleY":1.4},{"name":"104","parent":"yiceng","x":-905.87,"y":1303.09,"scaleX":1.4,"scaleY":1.4},{"name":"105","parent":"yiceng","x":-708.15,"y":60.78,"scaleX":1.4,"scaleY":1.4},{"name":"106","parent":"yiceng","x":-1923.04,"y":1101.86,"scaleX":1.4,"scaleY":1.4},{"name":"107","parent":"yiceng","x":-1189.04,"y":-148.87,"scaleX":1.4,"scaleY":1.4},{"name":"108","parent":"yiceng","x":-1680.8,"y":676.85,"scaleX":1.4,"scaleY":1.4},{"name":"109","parent":"yiceng","x":-946.7,"y":-583.99,"scaleX":1.4,"scaleY":1.4},{"name":"110","parent":"yiceng","x":-795.32,"y":676.85,"scaleX":1.4,"scaleY":1.4},{"name":"bone","parent":"root","x":-18.68,"y":57.15}],"slots":[{"name":"转场/bg2","bone":"bone","attachment":"转场/bg2"},{"name":"转场/fk69","bone":"69","attachment":"转场/fk4"},{"name":"转场/fk73","bone":"73","attachment":"转场/fk4"},{"name":"转场/fk106","bone":"106","attachment":"转场/fk1"},{"name":"转场/fk108","bone":"108","attachment":"转场/fk7"},{"name":"转场/fk110","bone":"110","attachment":"转场/fk7"},{"name":"转场/fk84","bone":"84","attachment":"转场/fk4"},{"name":"转场/fk71","bone":"71","attachment":"转场/fk7"},{"name":"转场/fk80","bone":"80","attachment":"转场/fk10"},{"name":"转场/fk83","bone":"83","attachment":"转场/fk4"},{"name":"转场/fk107","bone":"107","attachment":"转场/fk4"},{"name":"转场/fk51","bone":"51","attachment":"转场/aa"},{"name":"转场/fk109","bone":"109","attachment":"转场/aa"},{"name":"转场/fk76","bone":"76","attachment":"转场/fk10"},{"name":"转场/fk50","bone":"50","attachment":"转场/fk4"},{"name":"转场/fk52","bone":"52","attachment":"转场/fk7"},{"name":"转场/fk49","bone":"49","attachment":"转场/fk4"},{"name":"转场/fk102","bone":"102","attachment":"转场/fk1"},{"name":"转场/fk57","bone":"57","attachment":"转场/fk7"},{"name":"转场/fk58","bone":"58","attachment":"转场/fk10"},{"name":"转场/fk67","bone":"67","attachment":"转场/fk2"},{"name":"转场/fk59","bone":"59","attachment":"转场/fk3"},{"name":"转场/fk54","bone":"54","attachment":"转场/fk6"},{"name":"转场/fk60","bone":"60","attachment":"转场/fk6"},{"name":"转场/fk64","bone":"64","attachment":"转场/fk3"},{"name":"转场/fk81","bone":"81","attachment":"转场/fk3"},{"name":"转场/fk101","bone":"101","attachment":"转场/fk3"},{"name":"转场/fk99","bone":"99","attachment":"转场/fk3"},{"name":"转场/fk97","bone":"97","attachment":"转场/fk3"},{"name":"转场/fk55","bone":"55","attachment":"转场/fk3"},{"name":"转场/fk70","bone":"70","attachment":"转场/fk1"},{"name":"转场/fk68","bone":"68","attachment":"转场/fk4"},{"name":"转场/fk98","bone":"98","attachment":"转场/fk4"},{"name":"转场/fk103","bone":"103","attachment":"转场/fk4"},{"name":"转场/fk56","bone":"56","attachment":"转场/fk10"},{"name":"转场/fk104","bone":"104","attachment":"转场/fk10"},{"name":"转场/fk82","bone":"82","attachment":"转场/fk2"},{"name":"转场/fk79","bone":"79","attachment":"转场/aa"},{"name":"转场/fk105","bone":"105","attachment":"转场/aa"},{"name":"转场/fk72","bone":"72","attachment":"转场/fk7"},{"name":"转场/fk96","bone":"96","attachment":"转场/fk7"},{"name":"转场/fk62","bone":"62","attachment":"转场/aa"},{"name":"转场/fk100","bone":"100","attachment":"转场/aa"},{"name":"转场/anquankuang","bone":"root"}],"skins":[{"name":"default","attachments":{"转场/bg2":{"转场/bg2":{"x":17.91,"y":-57.31,"width":1080,"height":2340}},"转场/fk49":{"转场/fk4":{"width":304,"height":304}},"转场/fk50":{"转场/fk4":{"width":304,"height":304}},"转场/fk51":{"转场/aa":{"width":304,"height":304}},"转场/fk52":{"转场/fk7":{"width":304,"height":304}},"转场/fk54":{"转场/fk6":{"width":304,"height":304}},"转场/fk55":{"转场/fk3":{"width":304,"height":304}},"转场/fk56":{"转场/fk10":{"width":304,"height":304}},"转场/fk57":{"转场/fk7":{"width":304,"height":304}},"转场/fk58":{"转场/fk10":{"width":304,"height":304}},"转场/fk59":{"转场/fk3":{"width":304,"height":304}},"转场/fk60":{"转场/fk6":{"width":304,"height":304}},"转场/fk62":{"转场/aa":{"width":304,"height":304}},"转场/fk64":{"转场/fk3":{"width":304,"height":304}},"转场/fk67":{"转场/fk2":{"width":304,"height":304}},"转场/fk68":{"转场/fk4":{"width":304,"height":304}},"转场/fk69":{"转场/fk4":{"width":304,"height":304}},"转场/fk70":{"转场/fk1":{"width":304,"height":304}},"转场/fk71":{"转场/fk7":{"width":304,"height":304}},"转场/fk72":{"转场/fk7":{"width":304,"height":304}},"转场/fk73":{"转场/fk4":{"width":304,"height":304}},"转场/fk76":{"转场/fk10":{"width":304,"height":304}},"转场/fk79":{"转场/aa":{"x":2.69,"width":304,"height":304}},"转场/fk80":{"转场/fk10":{"width":304,"height":304}},"转场/fk81":{"转场/fk3":{"width":304,"height":304}},"转场/fk82":{"转场/fk2":{"width":304,"height":304}},"转场/fk83":{"转场/fk4":{"width":304,"height":304}},"转场/fk84":{"转场/fk4":{"width":304,"height":304}},"转场/fk96":{"转场/fk7":{"width":304,"height":304}},"转场/fk97":{"转场/fk3":{"width":304,"height":304}},"转场/fk98":{"转场/fk4":{"width":304,"height":304}},"转场/fk99":{"转场/fk3":{"width":304,"height":304}},"转场/fk100":{"转场/aa":{"width":304,"height":304}},"转场/fk101":{"转场/fk3":{"width":304,"height":304}},"转场/fk102":{"转场/fk1":{"width":304,"height":304}},"转场/fk103":{"转场/fk4":{"width":304,"height":304}},"转场/fk104":{"转场/fk10":{"width":304,"height":304}},"转场/fk105":{"转场/aa":{"x":2.69,"width":304,"height":304}},"转场/fk106":{"转场/fk1":{"width":304,"height":304}},"转场/fk107":{"转场/fk4":{"width":304,"height":304}},"转场/fk108":{"转场/fk7":{"width":304,"height":304}},"转场/fk109":{"转场/aa":{"width":304,"height":304}},"转场/fk110":{"转场/fk7":{"width":304,"height":304}}}}],"animations":{"down":{"bones":{"49":{"scale":[{"time":0.0667},{"time":0.1667,"x":1.2,"y":1.2},{"time":0.2667,"x":0,"y":0}]},"50":{"scale":[{"time":0.1333},{"time":0.2333,"x":1.2,"y":1.2},{"time":0.3333,"x":0,"y":0}]},"51":{"scale":[{"time":0.3333},{"time":0.4333,"x":1.2,"y":1.2},{"time":0.5333,"x":0,"y":0}]},"52":{"scale":[{"time":0.0667},{"time":0.1667,"x":1.2,"y":1.2},{"time":0.2667,"x":0,"y":0}]},"54":{"scale":[{"time":0.1},{"time":0.2,"x":1.2,"y":1.2},{"time":0.3,"x":0,"y":0}]},"55":{"scale":[{"time":0.1},{"time":0.2,"x":1.2,"y":1.2},{"time":0.3,"x":0,"y":0}]},"56":{"scale":[{"time":0.1667},{"time":0.2667,"x":1.2,"y":1.2},{"time":0.3667,"x":0,"y":0}]},"57":{"scale":[{"time":0.2},{"time":0.3,"x":1.2,"y":1.2},{"time":0.4,"x":0,"y":0}]},"58":{"scale":[{"time":0.0333},{"time":0.1333,"x":1.2,"y":1.2},{"time":0.2333,"x":0,"y":0}]},"59":{"scale":[{"time":0.0333},{"time":0.1333,"x":1.2,"y":1.2},{"time":0.2333,"x":0,"y":0}]},"62":{"scale":[{"time":0.3667},{"time":0.4667,"x":1.2,"y":1.2},{"time":0.5667,"x":0,"y":0}]},"64":{"scale":[{"time":0.1},{"time":0.2,"x":1.2,"y":1.2},{"time":0.3,"x":0,"y":0}]},"67":{"scale":[{"time":0.0333},{"time":0.1333,"x":1.2,"y":1.2},{"time":0.2667,"x":0,"y":0}]},"68":{"scale":[{"time":0.1667},{"time":0.2667,"x":1.2,"y":1.2},{"time":0.3667,"x":0,"y":0}]},"69":{"scale":[{"time":0.4},{"time":0.5,"x":1.2,"y":1.2},{"time":0.6,"x":0,"y":0}]},"70":{"scale":[{"time":0.1},{"time":0.2,"x":1.2,"y":1.2},{"time":0.3,"x":0,"y":0}]},"71":{"scale":[{"time":0.2667},{"time":0.3667,"x":1.2,"y":1.2},{"time":0.4667,"x":0,"y":0}]},"72":{"scale":[{"time":0.2333},{"time":0.3333,"x":1.2,"y":1.2},{"time":0.4333,"x":0,"y":0}]},"73":{"scale":[{"time":0.4},{"time":0.5,"x":1.2,"y":1.2},{"time":0.6,"x":0,"y":0}]},"76":{"scale":[{"time":0.1333},{"time":0.2333,"x":1.2,"y":1.2},{"time":0.3333,"x":0,"y":0}]},"79":{"scale":[{"time":0.2333},{"time":0.3333,"x":1.2,"y":1.2},{"time":0.4333,"x":0,"y":0}]},"80":{"scale":[{"time":0.2667},{"time":0.3667,"x":1.2,"y":1.2},{"time":0.4667,"x":0,"y":0}]},"82":{"scale":[{"time":0.1667},{"time":0.2667,"x":1.2,"y":1.2},{"time":0.3667,"x":0,"y":0}]},"83":{"scale":[{"time":0.2},{"time":0.3,"x":1.2,"y":1.2},{"time":0.4,"x":0,"y":0}]},"84":{"scale":[{"time":0.2667},{"time":0.3667,"x":1.2,"y":1.2},{"time":0.4667,"x":0,"y":0}]},"96":{"scale":[{"time":0.2333},{"time":0.3333,"x":1.2,"y":1.2},{"time":0.4333,"x":0,"y":0}]},"60":{"scale":[{"time":0.3},{"time":0.4,"x":1.2,"y":1.2},{"time":0.5,"x":0,"y":0}]},"97":{"scale":[{"time":0.3},{"time":0.4,"x":1.2,"y":1.2},{"time":0.5,"x":0,"y":0}]},"98":{"scale":[{"time":0.3667},{"time":0.4667,"x":1.2,"y":1.2},{"time":0.5667,"x":0,"y":0}]},"99":{"scale":[{"time":0.3667},{"time":0.4667,"x":1.2,"y":1.2},{"time":0.5667,"x":0,"y":0}]},"100":{"scale":[{"time":0.3},{"time":0.4,"x":1.2,"y":1.2},{"time":0.5,"x":0,"y":0}]},"101":{"scale":[{"time":0.3667},{"time":0.4667,"x":1.2,"y":1.2},{"time":0.5667,"x":0,"y":0}]},"102":{"scale":[{"time":0.0667},{"time":0.1667,"x":1.2,"y":1.2},{"time":0.2667,"x":0,"y":0}]},"81":{"scale":[{"time":0.4333},{"time":0.5333,"x":1.2,"y":1.2},{"time":0.6333,"x":0,"y":0}]},"103":{"scale":[{"time":0.4333},{"time":0.5333,"x":1.2,"y":1.2},{"time":0.6333,"x":0,"y":0}]},"104":{"scale":[{"time":0.4333},{"time":0.5333,"x":1.2,"y":1.2},{"time":0.6333,"x":0,"y":0}]},"105":{"scale":[{"time":0.2333},{"time":0.3333,"x":1.2,"y":1.2},{"time":0.4333,"x":0,"y":0}]},"106":{"scale":[{"time":0.4},{"time":0.5,"x":1.2,"y":1.2},{"time":0.6,"x":0,"y":0}]},"107":{"scale":[{"time":0.2},{"time":0.3,"x":1.2,"y":1.2},{"time":0.4,"x":0,"y":0}]},"109":{"scale":[{"time":0.1333},{"time":0.2333,"x":1.2,"y":1.2},{"time":0.3333,"x":0,"y":0}]},"108":{"scale":[{"time":0.3333},{"time":0.4333,"x":1.2,"y":1.2},{"time":0.5333,"x":0,"y":0}]},"110":{"scale":[{"time":0.3333},{"time":0.4333,"x":1.2,"y":1.2},{"time":0.5333,"x":0,"y":0}]},"bone":{"translate":[{},{"time":0.5667,"y":2346}]}}},"up":{"bones":{"49":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.0667,"x":0,"y":0},{"time":0.1667,"x":2,"y":2},{"time":0.2667,"x":0.8,"y":0.8},{"time":0.3667,"x":1.5,"y":1.5},{"time":0.4667,"x":0.9,"y":0.9},{"time":0.5667,"x":1.2,"y":1.2},{"time":0.6667}]},"50":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0},{"time":0.2333,"x":2,"y":2},{"time":0.3333,"x":0.8,"y":0.8},{"time":0.4333,"x":1.5,"y":1.5},{"time":0.5333,"x":0.9,"y":0.9},{"time":0.6333,"x":1.2,"y":1.2},{"time":0.7333}]},"51":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3333,"x":0,"y":0},{"time":0.4333,"x":2,"y":2},{"time":0.5333,"x":0.8,"y":0.8},{"time":0.6333,"x":1.5,"y":1.5},{"time":0.7333,"x":0.9,"y":0.9},{"time":0.8333,"x":1.2,"y":1.2},{"time":0.9333}]},"52":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.0667,"x":0,"y":0},{"time":0.1667,"x":2,"y":2},{"time":0.2667,"x":0.8,"y":0.8},{"time":0.3667,"x":1.5,"y":1.5},{"time":0.4667,"x":0.9,"y":0.9},{"time":0.5667,"x":1.2,"y":1.2},{"time":0.6667}]},"54":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0},{"time":0.2,"x":2,"y":2},{"time":0.3,"x":0.8,"y":0.8},{"time":0.4,"x":1.5,"y":1.5},{"time":0.5,"x":0.9,"y":0.9},{"time":0.6,"x":1.2,"y":1.2},{"time":0.7}]},"55":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0},{"time":0.2,"x":0.8,"y":0.8},{"time":0.3,"x":1.5,"y":1.5},{"time":0.4,"x":0.9,"y":0.9},{"time":0.5,"x":1.2,"y":1.2},{"time":0.6}]},"56":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1667,"x":0,"y":0},{"time":0.2667,"x":2,"y":2},{"time":0.3667,"x":0.8,"y":0.8},{"time":0.4667,"x":1.5,"y":1.5},{"time":0.5667,"x":0.9,"y":0.9},{"time":0.6667,"x":1.2,"y":1.2},{"time":0.7667}]},"57":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2,"x":0,"y":0},{"time":0.3,"x":2,"y":2},{"time":0.4,"x":0.8,"y":0.8},{"time":0.5,"x":1.5,"y":1.5},{"time":0.6,"x":0.9,"y":0.9},{"time":0.7,"x":1.2,"y":1.2},{"time":0.8}]},"58":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.0333,"x":0,"y":0},{"time":0.1333,"x":2,"y":2},{"time":0.2333,"x":0.8,"y":0.8},{"time":0.3333,"x":1.5,"y":1.5},{"time":0.4333,"x":0.9,"y":0.9},{"time":0.5333,"x":1.2,"y":1.2},{"time":0.6333}]},"59":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.0333,"x":0,"y":0},{"time":0.1333,"x":0.8,"y":0.8},{"time":0.2333,"x":1.5,"y":1.5},{"time":0.3333,"x":0.9,"y":0.9},{"time":0.4333,"x":1.2,"y":1.2},{"time":0.5333}]},"62":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3667,"x":0,"y":0},{"time":0.4667,"x":2,"y":2},{"time":0.5667,"x":0.8,"y":0.8},{"time":0.6667,"x":1.5,"y":1.5},{"time":0.7667,"x":0.9,"y":0.9},{"time":0.8667,"x":1.2,"y":1.2},{"time":0.9667}]},"64":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0},{"time":0.2,"x":0.8,"y":0.8},{"time":0.3,"x":1.5,"y":1.5},{"time":0.4,"x":0.9,"y":0.9},{"time":0.5,"x":1.2,"y":1.2},{"time":0.6}]},"67":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.0333,"x":0,"y":0},{"time":0.1333,"x":2,"y":2},{"time":0.2333,"x":0.8,"y":0.8},{"time":0.3333,"x":1.5,"y":1.5},{"time":0.4333,"x":0.9,"y":0.9},{"time":0.5333,"x":1.2,"y":1.2},{"time":0.6333}]},"68":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1667,"x":0,"y":0},{"time":0.2667,"x":2,"y":2},{"time":0.3667,"x":0.8,"y":0.8},{"time":0.4667,"x":1.5,"y":1.5},{"time":0.5667,"x":0.9,"y":0.9},{"time":0.6667,"x":1.2,"y":1.2},{"time":0.7667}]},"69":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.4,"x":0,"y":0},{"time":0.5,"x":2,"y":2},{"time":0.6,"x":0.8,"y":0.8},{"time":0.7,"x":1.5,"y":1.5},{"time":0.8,"x":0.9,"y":0.9},{"time":0.9,"x":1.2,"y":1.2},{"time":1}]},"70":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0},{"time":0.2,"x":2,"y":2},{"time":0.3,"x":0.8,"y":0.8},{"time":0.4,"x":1.5,"y":1.5},{"time":0.5,"x":0.9,"y":0.9},{"time":0.6,"x":1.2,"y":1.2},{"time":0.7}]},"71":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2667,"x":0,"y":0},{"time":0.3667,"x":2,"y":2},{"time":0.4667,"x":0.8,"y":0.8},{"time":0.5667,"x":1.5,"y":1.5},{"time":0.6667,"x":0.9,"y":0.9},{"time":0.7667,"x":1.2,"y":1.2},{"time":0.8667}]},"72":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2333,"x":0,"y":0},{"time":0.3333,"x":2,"y":2},{"time":0.4333,"x":0.8,"y":0.8},{"time":0.5333,"x":1.5,"y":1.5},{"time":0.6333,"x":0.9,"y":0.9},{"time":0.7333,"x":1.2,"y":1.2},{"time":0.8333}]},"73":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.4,"x":0,"y":0},{"time":0.5,"x":2,"y":2},{"time":0.6,"x":0.8,"y":0.8},{"time":0.7,"x":1.5,"y":1.5},{"time":0.8,"x":0.9,"y":0.9},{"time":0.9,"x":1.2,"y":1.2},{"time":1}]},"76":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0},{"time":0.2333,"x":2,"y":2},{"time":0.3333,"x":0.8,"y":0.8},{"time":0.4333,"x":1.5,"y":1.5},{"time":0.5333,"x":0.9,"y":0.9},{"time":0.6333,"x":1.2,"y":1.2},{"time":0.7333}]},"79":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2333,"x":0,"y":0},{"time":0.3333,"x":2,"y":2},{"time":0.4333,"x":0.8,"y":0.8},{"time":0.5333,"x":1.5,"y":1.5},{"time":0.6333,"x":0.9,"y":0.9},{"time":0.7333,"x":1.2,"y":1.2},{"time":0.8333}]},"80":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2667,"x":0,"y":0},{"time":0.3667,"x":2,"y":2},{"time":0.4667,"x":0.8,"y":0.8},{"time":0.5667,"x":1.5,"y":1.5},{"time":0.6667,"x":0.9,"y":0.9},{"time":0.7667,"x":1.2,"y":1.2},{"time":0.8667}]},"82":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1667,"x":0,"y":0},{"time":0.2667,"x":2,"y":2},{"time":0.3667,"x":0.8,"y":0.8},{"time":0.4667,"x":1.5,"y":1.5},{"time":0.5667,"x":0.9,"y":0.9},{"time":0.6667,"x":1.2,"y":1.2},{"time":0.7667}]},"83":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2,"x":0,"y":0},{"time":0.3,"x":2,"y":2},{"time":0.4,"x":0.8,"y":0.8},{"time":0.5,"x":1.5,"y":1.5},{"time":0.6,"x":0.9,"y":0.9},{"time":0.7,"x":1.2,"y":1.2},{"time":0.8}]},"84":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2667,"x":0,"y":0},{"time":0.3667,"x":2,"y":2},{"time":0.4667,"x":0.8,"y":0.8},{"time":0.5667,"x":1.5,"y":1.5},{"time":0.6667,"x":0.9,"y":0.9},{"time":0.7667,"x":1.2,"y":1.2},{"time":0.8667}]},"96":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2333,"x":0,"y":0},{"time":0.3333,"x":2,"y":2},{"time":0.4333,"x":0.8,"y":0.8},{"time":0.5333,"x":1.5,"y":1.5},{"time":0.6333,"x":0.9,"y":0.9},{"time":0.7333,"x":1.2,"y":1.2},{"time":0.8333}]},"60":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3,"x":0,"y":0},{"time":0.4,"x":2,"y":2},{"time":0.5,"x":0.8,"y":0.8},{"time":0.6,"x":1.5,"y":1.5},{"time":0.7,"x":0.9,"y":0.9},{"time":0.8,"x":1.2,"y":1.2},{"time":0.9}]},"97":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3,"x":0,"y":0},{"time":0.4,"x":0.8,"y":0.8},{"time":0.5,"x":1.5,"y":1.5},{"time":0.6,"x":0.9,"y":0.9},{"time":0.7,"x":1.2,"y":1.2},{"time":0.8}]},"98":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3667,"x":0,"y":0},{"time":0.4667,"x":2,"y":2},{"time":0.5667,"x":0.8,"y":0.8},{"time":0.6667,"x":1.5,"y":1.5},{"time":0.7667,"x":0.9,"y":0.9},{"time":0.8667,"x":1.2,"y":1.2},{"time":0.9667}]},"99":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3667,"x":0,"y":0},{"time":0.4667,"x":0.8,"y":0.8},{"time":0.5667,"x":1.5,"y":1.5},{"time":0.6667,"x":0.9,"y":0.9},{"time":0.7667,"x":1.2,"y":1.2},{"time":0.8667}]},"100":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3,"x":0,"y":0},{"time":0.4,"x":2,"y":2},{"time":0.5,"x":0.8,"y":0.8},{"time":0.6,"x":1.5,"y":1.5},{"time":0.7,"x":0.9,"y":0.9},{"time":0.8,"x":1.2,"y":1.2},{"time":0.9}]},"101":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3667,"x":0,"y":0},{"time":0.4667,"x":0.8,"y":0.8},{"time":0.5667,"x":1.5,"y":1.5},{"time":0.6667,"x":0.9,"y":0.9},{"time":0.7667,"x":1.2,"y":1.2},{"time":0.8667}]},"102":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.0667,"x":0,"y":0},{"time":0.1667,"x":2,"y":2},{"time":0.2667,"x":0.8,"y":0.8},{"time":0.3667,"x":1.5,"y":1.5},{"time":0.4667,"x":0.9,"y":0.9},{"time":0.5667,"x":1.2,"y":1.2},{"time":0.6667}]},"81":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.4333,"x":0,"y":0},{"time":0.5333,"x":0.8,"y":0.8},{"time":0.6333,"x":1.5,"y":1.5},{"time":0.7333,"x":0.9,"y":0.9},{"time":0.8333,"x":1.2,"y":1.2},{"time":0.9333}]},"103":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.4333,"x":0,"y":0},{"time":0.5333,"x":2,"y":2},{"time":0.6333,"x":0.8,"y":0.8},{"time":0.7333,"x":1.5,"y":1.5},{"time":0.8333,"x":0.9,"y":0.9},{"time":0.9333,"x":1.2,"y":1.2},{"time":1.0333}]},"104":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.4333,"x":0,"y":0},{"time":0.5333,"x":2,"y":2},{"time":0.6333,"x":0.8,"y":0.8},{"time":0.7333,"x":1.5,"y":1.5},{"time":0.8333,"x":0.9,"y":0.9},{"time":0.9333,"x":1.2,"y":1.2},{"time":1.0333}]},"105":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2333,"x":0,"y":0},{"time":0.3333,"x":2,"y":2},{"time":0.4333,"x":0.8,"y":0.8},{"time":0.5333,"x":1.5,"y":1.5},{"time":0.6333,"x":0.9,"y":0.9},{"time":0.7333,"x":1.2,"y":1.2},{"time":0.8333}]},"106":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.4,"x":0,"y":0},{"time":0.5,"x":2,"y":2},{"time":0.6,"x":0.8,"y":0.8},{"time":0.7,"x":1.5,"y":1.5},{"time":0.8,"x":0.9,"y":0.9},{"time":0.9,"x":1.2,"y":1.2},{"time":1}]},"107":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.2,"x":0,"y":0},{"time":0.3,"x":2,"y":2},{"time":0.4,"x":0.8,"y":0.8},{"time":0.5,"x":1.5,"y":1.5},{"time":0.6,"x":0.9,"y":0.9},{"time":0.7,"x":1.2,"y":1.2},{"time":0.8}]},"109":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0},{"time":0.2333,"x":2,"y":2},{"time":0.3333,"x":0.8,"y":0.8},{"time":0.4333,"x":1.5,"y":1.5},{"time":0.5333,"x":0.9,"y":0.9},{"time":0.6333,"x":1.2,"y":1.2},{"time":0.7333}]},"108":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3333,"x":0,"y":0},{"time":0.4333,"x":2,"y":2},{"time":0.5333,"x":0.8,"y":0.8},{"time":0.6333,"x":1.5,"y":1.5},{"time":0.7333,"x":0.9,"y":0.9},{"time":0.8333,"x":1.2,"y":1.2},{"time":0.9333}]},"110":{"scale":[{"x":0,"y":0,"curve":"stepped"},{"time":0.3333,"x":0,"y":0},{"time":0.4333,"x":2,"y":2},{"time":0.5333,"x":0.8,"y":0.8},{"time":0.6333,"x":1.5,"y":1.5},{"time":0.7333,"x":0.9,"y":0.9},{"time":0.8333,"x":1.2,"y":1.2},{"time":0.9333}]},"bone":{"translate":[{"y":-2340},{"time":0.2,"y":-1542.92},{"time":0.4333,"y":24}]}}}}} \ No newline at end of file diff --git a/assets/effect/load/skeleton.json.meta b/assets/effect/load/skeleton.json.meta new file mode 100644 index 0000000..5551289 --- /dev/null +++ b/assets/effect/load/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "83fdf834-580f-49fa-ab44-3f234c89d1c2", + "importer": "spine", + "textures": [ + "904053d8-a235-4912-a613-9c55b49a1fcf" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/load/skeleton.png b/assets/effect/load/skeleton.png new file mode 100644 index 0000000..f21634c Binary files /dev/null and b/assets/effect/load/skeleton.png differ diff --git a/assets/effect/load/skeleton.png.meta b/assets/effect/load/skeleton.png.meta new file mode 100644 index 0000000..956530e --- /dev/null +++ b/assets/effect/load/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "904053d8-a235-4912-a613-9c55b49a1fcf", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 3260, + "height": 3260, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "61a62292-1ee0-4f91-ba73-ade0d4c96e17", + "importer": "sprite-frame", + "rawTextureUuid": "904053d8-a235-4912-a613-9c55b49a1fcf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1090, + "offsetY": 1.5, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 3257, + "rawWidth": 3260, + "rawHeight": 3260, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/magic.meta b/assets/effect/magic.meta new file mode 100644 index 0000000..7a58e58 --- /dev/null +++ b/assets/effect/magic.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "9ecf33ff-c969-4fec-abd0-12b243dc28a9", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/magic/mofabang_baozha.atlas b/assets/effect/magic/mofabang_baozha.atlas new file mode 100644 index 0000000..6ef4747 --- /dev/null +++ b/assets/effect/magic/mofabang_baozha.atlas @@ -0,0 +1,209 @@ + +mofabang_baozha.png +size: 2040,2040 +format: RGBA8888 +filter: Linear,Linear +repeat: none +images/effects/Glow1 + rotate: false + xy: 862, 1516 + size: 216, 216 + orig: 256, 256 + offset: 20, 19 + index: -1 +images/effects/hit/hit_00 + rotate: true + xy: 1379, 1762 + size: 276, 272 + orig: 400, 400 + offset: 61, 64 + index: -1 +images/effects/hit/hit_01 + rotate: false + xy: 1395, 1520 + size: 248, 240 + orig: 400, 400 + offset: 76, 80 + index: -1 +images/effects/hit/hit_02 + rotate: false + xy: 2, 1734 + size: 332, 304 + orig: 400, 400 + offset: 39, 51 + index: -1 +images/effects/hit/hit_03 + rotate: true + xy: 604, 1726 + size: 312, 252 + orig: 400, 400 + offset: 50, 83 + index: -1 +images/effects/hit/hit_04 + rotate: false + xy: 270, 1524 + size: 272, 208 + orig: 400, 400 + offset: 78, 108 + index: -1 +images/effects/hit/hit_05 + rotate: false + xy: 2, 1512 + size: 266, 220 + orig: 400, 400 + offset: 79, 103 + index: -1 +images/effects/hit/hit_06 + rotate: false + xy: 1117, 1496 + size: 276, 240 + orig: 400, 400 + offset: 73, 94 + index: -1 +images/effects/hit/hit_07 + rotate: true + xy: 1117, 1738 + size: 300, 260 + orig: 400, 400 + offset: 67, 85 + index: -1 +images/effects/hit/hit_08 + rotate: true + xy: 858, 1734 + size: 304, 257 + orig: 400, 400 + offset: 69, 82 + index: -1 +images/effects/hit/hit_09 + rotate: true + xy: 336, 1738 + size: 300, 266 + orig: 400, 400 + offset: 70, 74 + index: -1 +images/effects/hit/hit_10 + rotate: true + xy: 1645, 1380 + size: 162, 230 + orig: 400, 400 + offset: 95, 114 + index: -1 +images/effects/hit/hit_11 + rotate: false + xy: 1148, 1399 + size: 101, 95 + orig: 400, 400 + offset: 99, 119 + index: -1 +images/effects/hit/hit_12 + rotate: false + xy: 2037, 2037 + size: 1, 1 + orig: 400, 400 + offset: 198, 213 + index: -1 +images/lizi/shoujibaodian_34 + rotate: false + xy: 1653, 1719 + size: 211, 319 + orig: 1136, 640 + offset: 696, 201 + index: -1 +images/lizi/shoujibaodian_35 + rotate: true + xy: 544, 1546 + size: 178, 316 + orig: 1136, 640 + offset: 694, 201 + index: -1 +images/lizi/shoujibaodian_36 + rotate: true + xy: 1645, 1544 + size: 173, 313 + orig: 1136, 640 + offset: 696, 200 + index: -1 +images/lizi/shoujibaodian_37 + rotate: false + xy: 1866, 1810 + size: 169, 228 + orig: 1136, 640 + offset: 698, 233 + index: -1 +images/lizi/shoujibaodian_38 + rotate: true + xy: 544, 1378 + size: 166, 228 + orig: 1136, 640 + offset: 702, 235 + index: -1 +images/lizi/shoujibaodian_39 + rotate: true + xy: 270, 1358 + size: 164, 219 + orig: 1136, 640 + offset: 703, 241 + index: -1 +images/lizi/shoujibaodian_40 + rotate: true + xy: 1395, 1361 + size: 157, 208 + orig: 1136, 640 + offset: 710, 249 + index: -1 +images/lizi/shoujibaodian_41 + rotate: true + xy: 774, 1396 + size: 118, 189 + orig: 1136, 640 + offset: 749, 266 + index: -1 +images/lizi/shoujibaodian_42 + rotate: true + xy: 2, 1430 + size: 80, 187 + orig: 1136, 640 + offset: 751, 268 + index: -1 +images/lizi/shoujibaodian_43 + rotate: true + xy: 965, 1418 + size: 76, 181 + orig: 1136, 640 + offset: 752, 269 + index: -1 +images/lizi/shoujibaodian_44 + rotate: false + xy: 1960, 1665 + size: 72, 143 + orig: 1136, 640 + offset: 753, 305 + index: -1 +images/lizi/shoujibaodian_45 + rotate: false + xy: 1960, 1520 + size: 69, 143 + orig: 1136, 640 + offset: 754, 304 + index: -1 +images/lizi/shoujibaodian_46 + rotate: false + xy: 1947, 1376 + size: 67, 142 + orig: 1136, 640 + offset: 755, 304 + index: -1 +images/lizi/shoujibaodian_47 + rotate: false + xy: 191, 1369 + size: 67, 141 + orig: 1136, 640 + offset: 755, 304 + index: -1 +images/lizi/shoujibaodian_48 + rotate: false + xy: 1877, 1400 + size: 68, 142 + orig: 1136, 640 + offset: 754, 303 + index: -1 diff --git a/assets/effect/magic/mofabang_baozha.atlas.meta b/assets/effect/magic/mofabang_baozha.atlas.meta new file mode 100644 index 0000000..89e8bbd --- /dev/null +++ b/assets/effect/magic/mofabang_baozha.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "94d219c4-f6f5-4afb-9a95-370850366448", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/magic/mofabang_baozha.json b/assets/effect/magic/mofabang_baozha.json new file mode 100644 index 0000000..238f931 --- /dev/null +++ b/assets/effect/magic/mofabang_baozha.json @@ -0,0 +1,167 @@ +{ +"skeleton": { + "hash": "hZHGx+scAEPxWQrFsM0GBbRcUg0", + "spine": "3.8.99", + "x": -273.93, + "y": -795.48, + "width": 640, + "height": 1136, + "images": "", + "audio": "C:\\Users\\EDY\\Desktop\\common\\battle\\特效\\300970_skill_hit" +}, +"bones": [ + { "name": "root" }, + { "name": "all", "parent": "root" }, + { "name": "hit", "parent": "all" }, + { "name": "hit2", "parent": "all" }, + { "name": "glow", "parent": "all" }, + { "name": "lizi2", "parent": "root", "rotation": 90, "x": 1.13, "y": -2.39 } +], +"slots": [ + { "name": "images/bg", "bone": "root" }, + { "name": "images/effects/hit/hit_00", "bone": "hit", "attachment": "images/effects/hit/hit_00", "blend": "screen" }, + { "name": "images/effects/hit/hit_0", "bone": "hit2" }, + { "name": "images/effects/Glow1", "bone": "glow", "blend": "additive" }, + { "name": "images/lizi/shoujibaodian_34", "bone": "lizi2", "attachment": "images/lizi/shoujibaodian_34", "blend": "additive" } +], +"skins": [ + { + "name": "default", + "attachments": { + "images/effects/Glow1": { + "images/effects/Glow1": { "width": 256, "height": 256 } + }, + "images/effects/hit/hit_0": { + "images/effects/hit/hit_02": { "width": 400, "height": 400 }, + "images/effects/hit/hit_03": { "width": 400, "height": 400 }, + "images/effects/hit/hit_04": { "width": 400, "height": 400 }, + "images/effects/hit/hit_05": { "width": 400, "height": 400 }, + "images/effects/hit/hit_06": { "width": 400, "height": 400 }, + "images/effects/hit/hit_07": { "width": 400, "height": 400 }, + "images/effects/hit/hit_08": { "width": 400, "height": 400 }, + "images/effects/hit/hit_09": { "width": 400, "height": 400 }, + "images/effects/hit/hit_10": { "width": 400, "height": 400 }, + "images/effects/hit/hit_11": { "width": 400, "height": 400 }, + "images/effects/hit/hit_12": { "width": 400, "height": 400 }, + "images/effects/hit/hit_13": { "width": 400, "height": 400 }, + "images/effects/hit/hit_14": { "width": 1, "height": 1 } + }, + "images/effects/hit/hit_00": { + "images/effects/hit/hit_00": { "width": 400, "height": 400 }, + "images/effects/hit/hit_01": { "width": 400, "height": 400 } + }, + "images/lizi/shoujibaodian_34": { + "images/lizi/shoujibaodian_34": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_35": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_36": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_37": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_38": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_39": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_40": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_41": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_42": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_43": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_44": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_45": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_46": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_47": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_48": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 } + } + } + } +], +"animations": { + "play": { + "slots": { + "images/effects/Glow1": { + "color": [ + { "time": 0.0333, "color": "5a05ffff" }, + { "time": 0.4667, "color": "bd00ff00" } + ], + "attachment": [ + { "time": 0.0333, "name": "images/effects/Glow1" } + ] + }, + "images/effects/hit/hit_0": { + "attachment": [ + { "time": 0.1333, "name": "images/effects/hit/hit_02" }, + { "time": 0.1667, "name": "images/effects/hit/hit_03" }, + { "time": 0.2, "name": "images/effects/hit/hit_04" }, + { "time": 0.2333, "name": "images/effects/hit/hit_05" }, + { "time": 0.2667, "name": "images/effects/hit/hit_06" }, + { "time": 0.3, "name": "images/effects/hit/hit_07" }, + { "time": 0.3333, "name": "images/effects/hit/hit_08" }, + { "time": 0.3667, "name": "images/effects/hit/hit_09" }, + { "time": 0.4, "name": "images/effects/hit/hit_10" }, + { "time": 0.4333, "name": "images/effects/hit/hit_11" }, + { "time": 0.4667, "name": "images/effects/hit/hit_12" }, + { "time": 0.5, "name": "images/effects/hit/hit_13" }, + { "time": 0.5333, "name": "images/effects/hit/hit_14" }, + { "time": 0.5667, "name": null } + ] + }, + "images/effects/hit/hit_00": { + "color": [ + { "color": "ffffff00" }, + { "time": 0.0333, "color": "ffffffff" } + ], + "attachment": [ + { "time": 0.0667, "name": "images/effects/hit/hit_01" }, + { "time": 0.1, "name": null } + ] + }, + "images/lizi/shoujibaodian_34": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.3333, "color": "ffffff00" }, + { "time": 0.3667, "color": "ffffffff", "curve": "stepped" }, + { "time": 1.3, "color": "ffffffff" }, + { "time": 1.3667, "color": "ffffff00" } + ], + "attachment": [ + { "time": 0.4333, "name": "images/lizi/shoujibaodian_35" }, + { "time": 0.5, "name": "images/lizi/shoujibaodian_36" }, + { "time": 0.5667, "name": "images/lizi/shoujibaodian_37" }, + { "time": 0.6333, "name": "images/lizi/shoujibaodian_38" }, + { "time": 0.7, "name": "images/lizi/shoujibaodian_39" }, + { "time": 0.7667, "name": "images/lizi/shoujibaodian_40" }, + { "time": 0.8333, "name": "images/lizi/shoujibaodian_41" }, + { "time": 0.9, "name": "images/lizi/shoujibaodian_42" }, + { "time": 0.9667, "name": "images/lizi/shoujibaodian_43" }, + { "time": 1.0333, "name": "images/lizi/shoujibaodian_44" }, + { "time": 1.1, "name": "images/lizi/shoujibaodian_45" }, + { "time": 1.1667, "name": "images/lizi/shoujibaodian_46" }, + { "time": 1.2333, "name": "images/lizi/shoujibaodian_47" }, + { "time": 1.3, "name": "images/lizi/shoujibaodian_48" } + ] + } + }, + "bones": { + "glow": { + "scale": [ + { "time": 0.0333, "x": 0.5, "y": 0.5 }, + { "time": 0.1333, "x": 2, "y": 2 }, + { "time": 0.4667, "x": 3, "y": 3 } + ] + }, + "hit": { + "scale": [ + { "time": 0.0333, "x": 1.5, "y": 1.5 } + ] + }, + "lizi2": { + "translate": [ + { "time": 0.3667 }, + { "time": 0.7667, "y": 6 }, + { "time": 1.3, "y": -20.01 } + ], + "scale": [ + { "x": 0.7, "y": 0.7, "curve": "stepped" }, + { "time": 0.3667, "x": 0.7, "y": 0.7 }, + { "time": 1.3 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/effect/magic/mofabang_baozha.json.meta b/assets/effect/magic/mofabang_baozha.json.meta new file mode 100644 index 0000000..07d467f --- /dev/null +++ b/assets/effect/magic/mofabang_baozha.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "303417e6-891a-4bda-950c-4d2a04a1f4aa", + "importer": "spine", + "textures": [ + "48588bbe-3361-44a5-b782-53ef975a9355" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/magic/mofabang_baozha.png b/assets/effect/magic/mofabang_baozha.png new file mode 100644 index 0000000..17e06ee Binary files /dev/null and b/assets/effect/magic/mofabang_baozha.png differ diff --git a/assets/effect/magic/mofabang_baozha.png.meta b/assets/effect/magic/mofabang_baozha.png.meta new file mode 100644 index 0000000..48d1fdd --- /dev/null +++ b/assets/effect/magic/mofabang_baozha.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "48588bbe-3361-44a5-b782-53ef975a9355", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2040, + "height": 2040, + "platformSettings": {}, + "subMetas": { + "mofabang_baozha": { + "ver": "1.0.6", + "uuid": "4dd6a97b-2613-4fd0-9ed0-ea9eb324c6eb", + "importer": "sprite-frame", + "rawTextureUuid": "48588bbe-3361-44a5-b782-53ef975a9355", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -678, + "trimX": 2, + "trimY": 1358, + "width": 2036, + "height": 680, + "rawWidth": 2040, + "rawHeight": 2040, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/magic/mofabang_texiao.atlas b/assets/effect/magic/mofabang_texiao.atlas new file mode 100644 index 0000000..ead6b3b --- /dev/null +++ b/assets/effect/magic/mofabang_texiao.atlas @@ -0,0 +1,104 @@ + +mofabang_texiao.png +size: 1000,1000 +format: RGBA8888 +filter: Linear,Linear +repeat: none +images/effects/chixu/chixu_00 + rotate: false + xy: 2, 334 + size: 151, 124 + orig: 200, 200 + offset: 12, 44 + index: -1 +images/effects/chixu/chixu_01 + rotate: true + xy: 159, 567 + size: 148, 132 + orig: 200, 200 + offset: 12, 37 + index: -1 +images/effects/chixu/chixu_02 + rotate: false + xy: 2, 460 + size: 153, 125 + orig: 200, 200 + offset: 15, 37 + index: -1 +images/effects/chixu/chixu_03 + rotate: false + xy: 2, 587 + size: 155, 128 + orig: 200, 200 + offset: 15, 36 + index: -1 +images/effects/chixu/chixu_04 + rotate: true + xy: 157, 416 + size: 149, 126 + orig: 200, 200 + offset: 21, 36 + index: -1 +images/effects/chixu/chixu_05 + rotate: true + xy: 155, 265 + size: 149, 123 + orig: 200, 200 + offset: 21, 36 + index: -1 +images/effects/chixu/chixu_06 + rotate: false + xy: 148, 143 + size: 147, 120 + orig: 200, 200 + offset: 23, 38 + index: -1 +images/effects/chixu/chixu_07 + rotate: true + xy: 2, 61 + size: 145, 119 + orig: 200, 200 + offset: 24, 39 + index: -1 +images/effects/chixu/chixu_08 + rotate: false + xy: 2, 208 + size: 144, 124 + orig: 200, 200 + offset: 23, 41 + index: -1 +images/effects/chixu/chixu_09 + rotate: false + xy: 123, 23 + size: 140, 118 + orig: 200, 200 + offset: 23, 43 + index: -1 +images/effects/chixu/chixu_10 + rotate: true + xy: 265, 2 + size: 139, 117 + orig: 200, 200 + offset: 23, 43 + index: -1 +images/effects/guangdian + rotate: false + xy: 2, 54 + size: 5, 5 + orig: 5, 5 + offset: 0, 0 + index: -1 +images/effects/huiguang + rotate: false + xy: 2, 717 + size: 278, 278 + orig: 311, 310 + offset: 17, 16 + index: -1 +images/effects/微信图片_20250515181822 + rotate: false + xy: 280, 305 + size: 93, 109 + orig: 93, 109 + offset: 0, 0 + index: -1 diff --git a/assets/effect/magic/mofabang_texiao.atlas.meta b/assets/effect/magic/mofabang_texiao.atlas.meta new file mode 100644 index 0000000..2b6e084 --- /dev/null +++ b/assets/effect/magic/mofabang_texiao.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "ba473983-3802-46d5-965d-b3cd59b7f66e", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/magic/mofabang_texiao.json b/assets/effect/magic/mofabang_texiao.json new file mode 100644 index 0000000..f8d8a47 --- /dev/null +++ b/assets/effect/magic/mofabang_texiao.json @@ -0,0 +1,269 @@ +{ +"skeleton": { + "hash": "KwnUpLoFTPi0z5vmLJV6Z4zmnmE", + "spine": "3.8.99", + "x": -152.76, + "y": -158.93, + "width": 316.61, + "height": 310, + "images": "", + "audio": "C:\\Users\\EDY\\Desktop\\common\\battle\\特效\\500210_skill1" +}, +"bones": [ + { "name": "root" }, + { "name": "all", "parent": "root" }, + { "name": "shifa", "parent": "all", "scaleX": 1.5, "scaleY": 1.5 }, + { "name": "chixu", "parent": "shifa" }, + { "name": "chixu1", "parent": "chixu" }, + { "name": "chixu2", "parent": "chixu", "scaleX": -1 }, + { "name": "bone", "parent": "root", "x": 0.19, "y": -0.13 }, + { "name": "bone2", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone3", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone4", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone5", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone6", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone7", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone8", "parent": "root", "x": -2.4, "y": -1.65 } +], +"slots": [ + { "name": "images/effects/bg", "bone": "root" }, + { "name": "images/effects/chixu/chixu_0", "bone": "chixu2", "color": "d120a1ca", "blend": "additive" }, + { "name": "images/effects/微信图片_20250515181822", "bone": "bone", "attachment": "images/effects/微信图片_20250515181822" }, + { "name": "images/effects/chixu/chixu_00", "bone": "chixu1", "blend": "additive" }, + { "name": "images/effects/huiguang", "bone": "all", "attachment": "images/effects/huiguang", "blend": "additive" }, + { "name": "images/effects/guangdian", "bone": "bone2", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian2", "bone": "bone3", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian4", "bone": "bone5", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian7", "bone": "bone8", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian5", "bone": "bone6", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian3", "bone": "bone4", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian6", "bone": "bone7", "attachment": "images/effects/guangdian", "blend": "additive" } +], +"skins": [ + { + "name": "default", + "attachments": { + "images/effects/chixu/chixu_0": { + "images/effects/chixu/chixu_00": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_01": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_02": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_03": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_04": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_05": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_06": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_07": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_08": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_09": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_10": { "width": 200, "height": 200 } + }, + "images/effects/chixu/chixu_00": { + "images/effects/chixu/chixu_00": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_01": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_02": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_03": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_04": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_05": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_06": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_07": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_08": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_09": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_10": { "width": 200, "height": 200 } + }, + "images/effects/guangdian": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian2": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian3": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian4": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian5": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian6": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian7": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/huiguang": { + "images/effects/huiguang": { "x": 2.74, "y": -3.93, "rotation": 180, "width": 311, "height": 310 } + }, + "images/effects/微信图片_20250515181822": { + "images/effects/微信图片_20250515181822": { + "x": 36.11, + "y": -31.15, + "scaleX": 2, + "scaleY": 2, + "rotation": 76.63, + "width": 93, + "height": 109 + } + } + } + } +], +"animations": { + "play": { + "slots": { + "images/effects/chixu/chixu_0": { + "attachment": [ + { "time": 0.1333, "name": "images/effects/chixu/chixu_00" }, + { "time": 0.2, "name": "images/effects/chixu/chixu_01" }, + { "time": 0.2667, "name": "images/effects/chixu/chixu_02" }, + { "time": 0.3333, "name": "images/effects/chixu/chixu_03" }, + { "time": 0.4, "name": "images/effects/chixu/chixu_04" }, + { "time": 0.4667, "name": "images/effects/chixu/chixu_05" }, + { "time": 0.5333, "name": "images/effects/chixu/chixu_06" }, + { "time": 0.6, "name": "images/effects/chixu/chixu_07" }, + { "time": 0.6667, "name": "images/effects/chixu/chixu_08" }, + { "time": 0.7333, "name": "images/effects/chixu/chixu_09" }, + { "time": 0.8, "name": "images/effects/chixu/chixu_10" }, + { "time": 0.8667, "name": null } + ] + }, + "images/effects/chixu/chixu_00": { + "attachment": [ + { "name": "images/effects/chixu/chixu_06" }, + { "time": 0.0667, "name": "images/effects/chixu/chixu_07" }, + { "time": 0.1333, "name": "images/effects/chixu/chixu_08" }, + { "time": 0.2, "name": "images/effects/chixu/chixu_09" }, + { "time": 0.2667, "name": "images/effects/chixu/chixu_10" }, + { "time": 0.3333, "name": null }, + { "time": 0.6, "name": "images/effects/chixu/chixu_00" }, + { "time": 0.6667, "name": "images/effects/chixu/chixu_01" }, + { "time": 0.7333, "name": "images/effects/chixu/chixu_02" }, + { "time": 0.8, "name": "images/effects/chixu/chixu_03" }, + { "time": 0.8667, "name": "images/effects/chixu/chixu_04" }, + { "time": 0.9333, "name": "images/effects/chixu/chixu_05" } + ] + }, + "images/effects/guangdian": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.1333, "color": "ffffff00" }, + { "time": 0.1667, "color": "ffffffff" }, + { "time": 0.2667, "color": "ffffff00" }, + { "time": 0.3667, "color": "ffffffed" }, + { "time": 0.4333, "color": "fffffff5" }, + { "time": 0.5333, "color": "ffffff33" }, + { "time": 0.5667, "color": "ffffffff", "curve": "stepped" }, + { "time": 0.6667, "color": "ffffffff" }, + { "time": 0.8333, "color": "ffffff00" } + ] + }, + "images/effects/guangdian2": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.5333, "color": "ffffff00", "curve": "stepped" }, + { "time": 0.9, "color": "ffffff00" }, + { "time": 0.9333, "color": "ffffffff" } + ] + }, + "images/effects/guangdian3": { + "color": [ + { "time": 0.2333, "color": "ffffffff" }, + { "time": 0.4, "color": "ffffff00", "curve": "stepped" }, + { "time": 0.6333, "color": "ffffff00" }, + { "time": 0.6667, "color": "ffffffff" } + ] + }, + "images/effects/guangdian4": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.2, "color": "ffffff00" }, + { "time": 0.2333, "color": "ffffffff", "curve": "stepped" }, + { "time": 0.7333, "color": "ffffffff" }, + { "time": 0.9, "color": "ffffff00" } + ] + }, + "images/effects/guangdian5": { + "color": [ + { "color": "ffffff00" }, + { "time": 0.0333, "color": "ffffffff", "curve": "stepped" }, + { "time": 0.5333, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "images/effects/guangdian6": { + "color": [ + { "time": 0.2333, "color": "ffffffff" }, + { "time": 0.4, "color": "ffffff00", "curve": "stepped" }, + { "time": 0.6333, "color": "ffffff00" }, + { "time": 0.6667, "color": "ffffffff" } + ] + }, + "images/effects/guangdian7": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.1333, "color": "ffffff00" }, + { "time": 0.1667, "color": "ffffffff", "curve": "stepped" }, + { "time": 0.6667, "color": "ffffffff" }, + { "time": 0.8333, "color": "ffffff00" } + ] + }, + "images/effects/huiguang": { + "color": [ + { "color": "ffffffff" }, + { "time": 0.4667, "color": "ffffff71" }, + { "time": 0.9333, "color": "ffffffff" } + ] + } + }, + "bones": { + "bone2": { + "translate": [ + { "time": 0.1667 }, + { "time": 0.8333, "x": 18.29, "y": 73.14 } + ] + }, + "bone3": { + "translate": [ + { "x": 34.13, "y": -4.63 }, + { "time": 0.5333, "x": 170.66, "y": -23.16, "curve": "stepped" }, + { "time": 0.8667, "x": 170.66, "y": -23.16 }, + { "time": 0.9333 } + ] + }, + "bone4": { + "translate": [ + { "x": 33.29, "y": 31.52 }, + { "time": 0.4, "x": -69.48, "y": -142.62 }, + { "time": 0.6667 }, + { "time": 0.9333, "x": 33.29, "y": 31.52 } + ] + }, + "bone5": { + "translate": [ + { "time": 0.2333 }, + { "time": 0.9, "x": -128.62, "y": -19.54 } + ] + }, + "bone6": { + "translate": [ + { "time": 0.0333 }, + { "time": 0.7, "x": -57.7, "y": 131.91 } + ] + }, + "bone7": { + "translate": [ + { "x": 18.08, "y": 13.84 }, + { "time": 0.4, "x": 98.49, "y": 94.57 }, + { "time": 0.6667 }, + { "time": 0.9333, "x": 18.08, "y": 13.84 } + ] + }, + "bone8": { + "translate": [ + { "time": 0.1667 }, + { "time": 0.8333, "x": 97.32, "y": 76.27 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/effect/magic/mofabang_texiao.json.meta b/assets/effect/magic/mofabang_texiao.json.meta new file mode 100644 index 0000000..59cd40a --- /dev/null +++ b/assets/effect/magic/mofabang_texiao.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "0fb8590a-1468-4e6a-8ba6-c595642e4880", + "importer": "spine", + "textures": [ + "b11462e5-9624-4020-98f8-6418dfebaa5c" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/magic/mofabang_texiao.png b/assets/effect/magic/mofabang_texiao.png new file mode 100644 index 0000000..7cc05c8 Binary files /dev/null and b/assets/effect/magic/mofabang_texiao.png differ diff --git a/assets/effect/magic/mofabang_texiao.png.meta b/assets/effect/magic/mofabang_texiao.png.meta new file mode 100644 index 0000000..bccd302 --- /dev/null +++ b/assets/effect/magic/mofabang_texiao.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b11462e5-9624-4020-98f8-6418dfebaa5c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1000, + "height": 1000, + "platformSettings": {}, + "subMetas": { + "mofabang_texiao": { + "ver": "1.0.6", + "uuid": "e0966f59-90b1-42bf-92d9-bdfe2c36af61", + "importer": "sprite-frame", + "rawTextureUuid": "b11462e5-9624-4020-98f8-6418dfebaa5c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -308, + "offsetY": 1.5, + "trimX": 2, + "trimY": 2, + "width": 380, + "height": 993, + "rawWidth": 1000, + "rawHeight": 1000, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/mohu.effect b/assets/effect/mohu.effect new file mode 100644 index 0000000..ca757cb --- /dev/null +++ b/assets/effect/mohu.effect @@ -0,0 +1,83 @@ + +CCEffect %{ + techniques: + - passes: + - vert: vs + frag: fs + blendState: + targets: + - blend: true + rasterizerState: + cullMode: none + properties: + texture: { value: white } + alphaThreshold: { value: 0.5 } + noiseAmount: { value: 0.1 } // 噪点强度,可在属性面板调整 +}% + +CCProgram vs %{ + precision highp float; + #include + #include + + in vec3 a_position; + in vec4 a_color; + out vec4 v_color; + + #if USE_TEXTURE + in vec2 a_uv0; + out vec2 v_uv0; + #endif + + void main () { + vec4 pos = vec4(a_position, 1); + + #if CC_USE_MODEL + pos = cc_matViewProj * cc_matWorld * pos; + #else + pos = cc_matViewProj * pos; + #endif + + #if USE_TEXTURE + v_uv0 = a_uv0; + #endif + + v_color = a_color; + gl_Position = pos; + } +}% + +CCProgram fs %{ + precision highp float; + #include + #include + + in vec4 v_color; + + #if USE_TEXTURE + in vec2 v_uv0; + uniform sampler2D texture; + #endif + + uniform EffectProperties { + float noiseAmount; + }; + + float random(vec2 st) { + return fract(sin(dot(st.xy, vec2(12.9898,78.233))) * 43758.5453123); + } + + void main () { + vec4 col = v_color; + #if USE_TEXTURE + col *= texture2D(texture, v_uv0); + #endif + + float noise = random(v_uv0); + col.rgb += noise * noiseAmount; + + ALPHA_TEST(col); + gl_FragColor = col; + } +}% + \ No newline at end of file diff --git a/assets/effect/mohu.effect.meta b/assets/effect/mohu.effect.meta new file mode 100644 index 0000000..3d3e8bd --- /dev/null +++ b/assets/effect/mohu.effect.meta @@ -0,0 +1,18 @@ +{ + "ver": "1.0.27", + "uuid": "edf0e3d4-4233-4e7b-a725-a1a37209b53a", + "importer": "effect", + "compiledShaders": [ + { + "glsl1": { + "vert": "\nprecision highp float;\nuniform mat4 cc_matViewProj;\nuniform mat4 cc_matWorld;\nattribute vec3 a_position;\nattribute vec4 a_color;\nvarying vec4 v_color;\n#if USE_TEXTURE\nattribute vec2 a_uv0;\nvarying vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform float alphaThreshold;\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nvarying vec4 v_color;\n#if USE_TEXTURE\nvarying vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nuniform float noiseAmount;\nfloat random(vec2 st) {\n return fract(sin(dot(st.xy, vec2(12.9898,78.233))) * 43758.5453123);\n}\nvoid main () {\n vec4 col = v_color;\n #if USE_TEXTURE\n col *= texture2D(texture, v_uv0);\n #endif\n float noise = random(v_uv0);\n col.rgb += noise * noiseAmount;\n ALPHA_TEST(col);\n gl_FragColor = col;\n}" + }, + "glsl3": { + "vert": "\nprecision highp float;\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nuniform CCLocal {\n mat4 cc_matWorld;\n mat4 cc_matWorldIT;\n};\nin vec3 a_position;\nin vec4 a_color;\nout vec4 v_color;\n#if USE_TEXTURE\nin vec2 a_uv0;\nout vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nin vec4 v_color;\n#if USE_TEXTURE\nin vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nuniform EffectProperties {\n float noiseAmount;\n};\nfloat random(vec2 st) {\n return fract(sin(dot(st.xy, vec2(12.9898,78.233))) * 43758.5453123);\n}\nvoid main () {\n vec4 col = v_color;\n #if USE_TEXTURE\n col *= texture2D(texture, v_uv0);\n #endif\n float noise = random(v_uv0);\n col.rgb += noise * noiseAmount;\n ALPHA_TEST(col);\n gl_FragColor = col;\n}" + } + } + ], + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/nianhe.meta b/assets/effect/nianhe.meta new file mode 100644 index 0000000..ed9a6b3 --- /dev/null +++ b/assets/effect/nianhe.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "f3e6bd15-b228-457b-a153-3c060d0ed521", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/nianhe/jiekou_heng.atlas b/assets/effect/nianhe/jiekou_heng.atlas new file mode 100644 index 0000000..7d03cdc --- /dev/null +++ b/assets/effect/nianhe/jiekou_heng.atlas @@ -0,0 +1,34 @@ + +jiekou_heng.png +size: 144,144 +format: RGBA8888 +filter: Linear,Linear +repeat: none +连接块/kou1 + rotate: false + xy: 0, 119 + size: 52, 24 + orig: 52, 24 + offset: 0, 0 + index: -1 +连接块/kou2 + rotate: false + xy: 54, 119 + size: 52, 24 + orig: 52, 24 + offset: 0, 0 + index: -1 +连接块/luosi + rotate: true + xy: 108, 120 + size: 23, 21 + orig: 23, 21 + offset: 0, 0 + index: -1 +连接块/luosi2 + rotate: false + xy: 131, 131 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 diff --git a/assets/effect/nianhe/jiekou_heng.atlas.meta b/assets/effect/nianhe/jiekou_heng.atlas.meta new file mode 100644 index 0000000..59b37e9 --- /dev/null +++ b/assets/effect/nianhe/jiekou_heng.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "d1e47425-52fd-46a4-b2e0-ca7eb4035219", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/nianhe/jiekou_heng.json b/assets/effect/nianhe/jiekou_heng.json new file mode 100644 index 0000000..379a5ef --- /dev/null +++ b/assets/effect/nianhe/jiekou_heng.json @@ -0,0 +1,264 @@ +{ +"skeleton": { + "hash": "U0Y1j5E+l0mKoM8MR3lk0Ss8c7I", + "spine": "3.8.99", + "x": -34.31, + "y": -18.72, + "width": 52, + "height": 50.44, + "images": "", + "audio": "" +}, +"bones": [ + { "name": "root" }, + { "name": "bone3", "parent": "root", "x": -11.52, "y": 52.57 }, + { "name": "kou1", "parent": "bone3", "x": 17.41, "y": -32.85 }, + { "name": "bone", "parent": "bone3", "x": -10.72, "y": -32.17 }, + { "name": "luosi", "parent": "bone", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 }, + { "name": "bone2", "parent": "bone3", "x": 17.3, "y": -32.17 }, + { "name": "luosi2", "parent": "bone2", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 }, + { "name": "bone4", "parent": "root", "x": -11.52, "y": 26.13 }, + { "name": "kou2", "parent": "bone4", "x": 17.41, "y": -32.85 }, + { "name": "bone5", "parent": "bone4", "x": -10.72, "y": -32.17 }, + { "name": "luosi3", "parent": "bone5", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 }, + { "name": "bone6", "parent": "bone4", "x": 17.3, "y": -32.17 }, + { "name": "luosi4", "parent": "bone6", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 } +], +"slots": [ + { "name": "连接块/连接块", "bone": "root" }, + { "name": "连接块/kou1", "bone": "kou1", "attachment": "连接块/kou2" }, + { "name": "连接块/kou2", "bone": "kou2", "attachment": "连接块/kou2" }, + { "name": "连接块/luosi", "bone": "luosi", "attachment": "连接块/luosi" }, + { "name": "连接块/luosi6", "bone": "luosi3", "attachment": "连接块/luosi" }, + { "name": "连接块/luosi4", "bone": "luosi2", "attachment": "连接块/luosi" }, + { "name": "连接块/luosi8", "bone": "luosi4", "attachment": "连接块/luosi" }, + { "name": "连接块/luosi2", "bone": "bone", "attachment": "连接块/luosi2" }, + { "name": "连接块/luosi5", "bone": "bone5", "attachment": "连接块/luosi2" }, + { "name": "连接块/luosi3", "bone": "bone2", "attachment": "连接块/luosi2" }, + { "name": "连接块/luosi7", "bone": "bone6", "attachment": "连接块/luosi2" } +], +"skins": [ + { + "name": "default", + "attachments": { + "连接块/kou1": { + "连接块/kou1": { "x": 13.89, "width": 52, "height": 24 }, + "连接块/kou2": { "x": -14.21, "width": 52, "height": 24 } + }, + "连接块/kou2": { + "连接块/kou1": { "x": 13.89, "width": 52, "height": 24 }, + "连接块/kou2": { "x": -14.21, "width": 52, "height": 24 } + }, + "连接块/luosi": { + "连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 } + }, + "连接块/luosi2": { + "连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 } + }, + "连接块/luosi3": { + "连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 } + }, + "连接块/luosi4": { + "连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 } + }, + "连接块/luosi5": { + "连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 } + }, + "连接块/luosi6": { + "连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 } + }, + "连接块/luosi7": { + "连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 } + }, + "连接块/luosi8": { + "连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 } + } + } + } +], +"animations": { + "animation": { + "slots": { + "连接块/kou1": { + "color": [ + { "time": 0.3333, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "连接块/kou2": { + "color": [ + { "time": 0.6667, "color": "ffffffff" }, + { "time": 0.9333, "color": "ffffff00" } + ] + }, + "连接块/luosi": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.3333, "color": "ffffff00" }, + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "连接块/luosi2": { + "color": [ + { "time": 0.3333, "color": "ffffffff" }, + { "time": 0.3667, "color": "ffffff00" } + ] + }, + "连接块/luosi3": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.5, "color": "ffffff00" } + ] + }, + "连接块/luosi4": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.4667, "color": "ffffff00" }, + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.8, "color": "ffffff00" } + ] + }, + "连接块/luosi5": { + "color": [ + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.5333, "color": "ffffff00" } + ] + }, + "连接块/luosi6": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.3333, "color": "ffffff00" }, + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "连接块/luosi7": { + "color": [ + { "time": 0.6333, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "连接块/luosi8": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.4667, "color": "ffffff00" }, + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.8, "color": "ffffff00" } + ] + } + }, + "bones": { + "kou1": { + "rotate": [ + { "time": 0.3333 }, + { "time": 0.4667, "angle": 35.85 }, + { "time": 0.6, "angle": -136.48 } + ], + "translate": [ + { "time": 0.3333 }, + { "time": 0.6, "x": 160.21, "y": -504.28 } + ] + }, + "luosi": { + "rotate": [ + { "time": 0.3667 }, + { "time": 0.6667, "angle": -120.91 } + ] + }, + "bone": { + "rotate": [ + {}, + { "time": 0.1667, "angle": -177 }, + { "time": 0.3333, "angle": 81.64 } + ], + "translate": [ + { "time": 0.3333 }, + { "time": 0.6667, "x": -231.71, "y": 365.51 } + ], + "scale": [ + {}, + { "time": 0.3333, "x": 1.1, "y": 1.1 }, + { "time": 0.6667, "x": 3, "y": 3 } + ] + }, + "bone2": { + "rotate": [ + { "time": 0.1333 }, + { "time": 0.3, "angle": -177 }, + { "time": 0.4667, "angle": 81.64 } + ], + "translate": [ + { "time": 0.4667 }, + { "time": 0.8, "x": 258.57, "y": 206.19 } + ], + "scale": [ + { "time": 0.1333 }, + { "time": 0.4667, "x": 1.1, "y": 1.1 }, + { "time": 0.8, "x": 3, "y": 3 } + ] + }, + "luosi2": { + "rotate": [ + { "time": 0.5 }, + { "time": 0.8, "angle": -120.91 } + ] + }, + "kou2": { + "rotate": [ + { "time": 0.6667 }, + { "time": 0.9333, "angle": -136.48 } + ], + "translate": [ + { "time": 0.6667 }, + { "time": 0.9333, "x": -410.73, "y": -378.57 } + ] + }, + "bone5": { + "rotate": [ + { "time": 0.1667 }, + { "time": 0.3333, "angle": -177 }, + { "time": 0.5, "angle": 81.64 } + ], + "translate": [ + { "time": 0.5 }, + { "time": 0.8333, "x": -351.46, "y": -250.38 } + ], + "scale": [ + { "time": 0.1667 }, + { "time": 0.5, "x": 1.1, "y": 1.1 }, + { "time": 0.8333, "x": 3, "y": 3 } + ] + }, + "luosi3": { + "rotate": [ + { "time": 0.3667 }, + { "time": 0.6667, "angle": -120.91 } + ] + }, + "bone6": { + "rotate": [ + { "time": 0.3 }, + { "time": 0.4667, "angle": -177 }, + { "time": 0.6333, "angle": 81.64 } + ], + "translate": [ + { "time": 0.6333 }, + { "time": 0.9667, "x": 173.03, "y": -292.38 } + ], + "scale": [ + { "time": 0.3 }, + { "time": 0.6333, "x": 1.1, "y": 1.1 }, + { "time": 0.9667, "x": 3, "y": 3 } + ] + }, + "luosi4": { + "rotate": [ + { "time": 0.5 }, + { "time": 0.8, "angle": -120.91 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/effect/nianhe/jiekou_heng.json.meta b/assets/effect/nianhe/jiekou_heng.json.meta new file mode 100644 index 0000000..f5827ed --- /dev/null +++ b/assets/effect/nianhe/jiekou_heng.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "8b100987-aed3-4feb-ba02-557888c6784e", + "importer": "spine", + "textures": [ + "4811f779-3bd2-4074-b313-6b217df626ad" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/nianhe/jiekou_heng.png b/assets/effect/nianhe/jiekou_heng.png new file mode 100644 index 0000000..ae35908 Binary files /dev/null and b/assets/effect/nianhe/jiekou_heng.png differ diff --git a/assets/effect/nianhe/jiekou_heng.png.meta b/assets/effect/nianhe/jiekou_heng.png.meta new file mode 100644 index 0000000..8aeadb3 --- /dev/null +++ b/assets/effect/nianhe/jiekou_heng.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4811f779-3bd2-4074-b313-6b217df626ad", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 144, + "height": 144, + "platformSettings": {}, + "subMetas": { + "jiekou_heng": { + "ver": "1.0.6", + "uuid": "657e5ffe-4128-4897-9125-7d066f9dd6fd", + "importer": "sprite-frame", + "rawTextureUuid": "4811f779-3bd2-4074-b313-6b217df626ad", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": -59, + "trimX": 0, + "trimY": 119, + "width": 143, + "height": 24, + "rawWidth": 144, + "rawHeight": 144, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/nianhe/skeleton.atlas b/assets/effect/nianhe/skeleton.atlas new file mode 100644 index 0000000..534b0d0 --- /dev/null +++ b/assets/effect/nianhe/skeleton.atlas @@ -0,0 +1,27 @@ + +skeleton.png +size: 96,96 +format: RGBA8888 +filter: Linear,Linear +repeat: none +连接块/kou2shu + rotate: false + xy: 2, 39 + size: 24, 52 + orig: 24, 52 + offset: 0, 0 + index: -1 +连接块/luosi + rotate: false + xy: 2, 16 + size: 23, 21 + orig: 23, 21 + offset: 0, 0 + index: -1 +连接块/luosi2 + rotate: false + xy: 2, 2 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 diff --git a/assets/effect/nianhe/skeleton.atlas.meta b/assets/effect/nianhe/skeleton.atlas.meta new file mode 100644 index 0000000..cfc92a6 --- /dev/null +++ b/assets/effect/nianhe/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "71c185fc-f396-4366-8375-c40af9c2fd99", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/nianhe/skeleton.json b/assets/effect/nianhe/skeleton.json new file mode 100644 index 0000000..16eba30 --- /dev/null +++ b/assets/effect/nianhe/skeleton.json @@ -0,0 +1,262 @@ +{ +"skeleton": { + "hash": "8JO/UTer3ajOZPnOtjA7VMfz2+I", + "spine": "3.8.99", + "x": -476.91, + "y": -152.86, + "width": 795, + "height": 728, + "images": "", + "audio": "D:/work/block/做完的/解扣" +}, +"bones": [ + { "name": "root", "x": 8.64, "y": -17.49 }, + { "name": "bone3", "parent": "root", "x": -11.52, "y": 52.57 }, + { "name": "kou1", "parent": "bone3", "x": 17.41, "y": -32.85 }, + { "name": "bone", "parent": "bone3", "x": 16.62, "y": -45.84 }, + { "name": "luosi", "parent": "bone", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 }, + { "name": "bone2", "parent": "bone3", "x": 16.9, "y": -19.1 }, + { "name": "luosi2", "parent": "bone2", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 }, + { "name": "bone4", "parent": "root", "x": -40.06, "y": 52.8 }, + { "name": "kou2", "parent": "bone4", "x": 17.41, "y": -32.85 }, + { "name": "bone5", "parent": "bone4", "x": 16.42, "y": -45.84 }, + { "name": "luosi3", "parent": "bone5", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 }, + { "name": "bone6", "parent": "bone4", "x": 16.5, "y": -18.9 }, + { "name": "luosi4", "parent": "bone6", "x": 0.3, "y": 0.82, "scaleX": 0.6, "scaleY": 0.6 } +], +"slots": [ + { "name": "连接块/连接块", "bone": "root" }, + { "name": "连接块/kou1", "bone": "kou1", "attachment": "连接块/kou2shu" }, + { "name": "连接块/kou2", "bone": "kou2", "attachment": "连接块/kou2shu" }, + { "name": "连接块/luosi", "bone": "luosi", "attachment": "连接块/luosi" }, + { "name": "连接块/luosi6", "bone": "luosi3", "attachment": "连接块/luosi" }, + { "name": "连接块/luosi4", "bone": "luosi2", "attachment": "连接块/luosi" }, + { "name": "连接块/luosi8", "bone": "luosi4", "attachment": "连接块/luosi" }, + { "name": "连接块/luosi2", "bone": "bone", "attachment": "连接块/luosi2" }, + { "name": "连接块/luosi5", "bone": "bone5", "attachment": "连接块/luosi2" }, + { "name": "连接块/luosi3", "bone": "bone2", "attachment": "连接块/luosi2" }, + { "name": "连接块/luosi7", "bone": "bone6", "attachment": "连接块/luosi2" } +], +"skins": [ + { + "name": "default", + "attachments": { + "连接块/kou1": { + "连接块/kou2shu": { "width": 24, "height": 52 } + }, + "连接块/kou2": { + "连接块/kou2shu": { "width": 24, "height": 52 } + }, + "连接块/luosi": { + "连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 } + }, + "连接块/luosi2": { + "连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 } + }, + "连接块/luosi3": { + "连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 } + }, + "连接块/luosi4": { + "连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 } + }, + "连接块/luosi5": { + "连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 } + }, + "连接块/luosi6": { + "连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 } + }, + "连接块/luosi7": { + "连接块/luosi2": { "x": -0.06, "y": -0.22, "width": 12, "height": 12 } + }, + "连接块/luosi8": { + "连接块/luosi": { "x": -0.28, "y": -3.1, "width": 23, "height": 21 } + } + } + } +], +"animations": { + "animation": { + "slots": { + "连接块/kou1": { + "color": [ + { "time": 0.3333, "color": "ffffffff" }, + { "time": 0.6, "color": "ffffff00" } + ] + }, + "连接块/kou2": { + "color": [ + { "time": 0.6667, "color": "ffffffff" }, + { "time": 0.9333, "color": "ffffff00" } + ] + }, + "连接块/luosi": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.3333, "color": "ffffff00" }, + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "连接块/luosi2": { + "color": [ + { "time": 0.3333, "color": "ffffffff" }, + { "time": 0.3667, "color": "ffffff00" } + ] + }, + "连接块/luosi3": { + "color": [ + { "time": 0.4667, "color": "ffffffff" }, + { "time": 0.5, "color": "ffffff00" } + ] + }, + "连接块/luosi4": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.4667, "color": "ffffff00" }, + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.8, "color": "ffffff00" } + ] + }, + "连接块/luosi5": { + "color": [ + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.5333, "color": "ffffff00" } + ] + }, + "连接块/luosi6": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.3333, "color": "ffffff00" }, + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "连接块/luosi7": { + "color": [ + { "time": 0.6333, "color": "ffffffff" }, + { "time": 0.6667, "color": "ffffff00" } + ] + }, + "连接块/luosi8": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.4667, "color": "ffffff00" }, + { "time": 0.5, "color": "ffffffff" }, + { "time": 0.8, "color": "ffffff00" } + ] + } + }, + "bones": { + "kou1": { + "rotate": [ + { "time": 0.3333 }, + { "time": 0.4667, "angle": 35.85 }, + { "time": 0.6, "angle": -136.48 } + ], + "translate": [ + { "time": 0.3333 }, + { "time": 0.6, "x": 160.21, "y": -504.28 } + ] + }, + "luosi": { + "rotate": [ + { "time": 0.3667 }, + { "time": 0.6667, "angle": -120.91 } + ] + }, + "bone": { + "rotate": [ + {}, + { "time": 0.1667, "angle": -177 }, + { "time": 0.3333, "angle": 81.64 } + ], + "translate": [ + { "time": 0.3333 }, + { "time": 0.6667, "x": -231.71, "y": 365.51 } + ], + "scale": [ + {}, + { "time": 0.3333, "x": 1.1, "y": 1.1 }, + { "time": 0.6667, "x": 3, "y": 3 } + ] + }, + "bone2": { + "rotate": [ + { "time": 0.1333 }, + { "time": 0.3, "angle": -177 }, + { "time": 0.4667, "angle": 81.64 } + ], + "translate": [ + { "time": 0.4667 }, + { "time": 0.8, "x": 258.57, "y": 206.19 } + ], + "scale": [ + { "time": 0.1333 }, + { "time": 0.4667, "x": 1.1, "y": 1.1 }, + { "time": 0.8, "x": 3, "y": 3 } + ] + }, + "luosi2": { + "rotate": [ + { "time": 0.5 }, + { "time": 0.8, "angle": -120.91 } + ] + }, + "kou2": { + "rotate": [ + { "time": 0.6667 }, + { "time": 0.9333, "angle": -112.36 } + ], + "translate": [ + { "time": 0.6667 }, + { "time": 0.9333, "x": -410.73, "y": -378.57 } + ] + }, + "bone5": { + "rotate": [ + { "time": 0.1667 }, + { "time": 0.3333, "angle": -177 }, + { "time": 0.5, "angle": 81.64 } + ], + "translate": [ + { "time": 0.5 }, + { "time": 0.8333, "x": -351.46, "y": -250.38 } + ], + "scale": [ + { "time": 0.1667 }, + { "time": 0.5, "x": 1.1, "y": 1.1 }, + { "time": 0.8333, "x": 3, "y": 3 } + ] + }, + "luosi3": { + "rotate": [ + { "time": 0.3667 }, + { "time": 0.6667, "angle": -120.91 } + ] + }, + "bone6": { + "rotate": [ + { "time": 0.3 }, + { "time": 0.4667, "angle": -177 }, + { "time": 0.6333, "angle": 81.64 } + ], + "translate": [ + { "time": 0.6333 }, + { "time": 0.9667, "x": 173.03, "y": -292.38 } + ], + "scale": [ + { "time": 0.3 }, + { "time": 0.6333, "x": 1.1, "y": 1.1 }, + { "time": 0.9667, "x": 3, "y": 3 } + ] + }, + "luosi4": { + "rotate": [ + { "time": 0.5 }, + { "time": 0.8, "angle": -120.91 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/effect/nianhe/skeleton.json.meta b/assets/effect/nianhe/skeleton.json.meta new file mode 100644 index 0000000..b0426c2 --- /dev/null +++ b/assets/effect/nianhe/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "e47e7785-a214-441f-8ecb-dfbec124ab29", + "importer": "spine", + "textures": [ + "27f94295-c1af-4dae-a599-ec9e97060967" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/nianhe/skeleton.png b/assets/effect/nianhe/skeleton.png new file mode 100644 index 0000000..c6f8e15 Binary files /dev/null and b/assets/effect/nianhe/skeleton.png differ diff --git a/assets/effect/nianhe/skeleton.png.meta b/assets/effect/nianhe/skeleton.png.meta new file mode 100644 index 0000000..25b0244 --- /dev/null +++ b/assets/effect/nianhe/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "27f94295-c1af-4dae-a599-ec9e97060967", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 96, + "height": 96, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "b6e42533-9e34-432f-b379-2eefd098cf5f", + "importer": "sprite-frame", + "rawTextureUuid": "27f94295-c1af-4dae-a599-ec9e97060967", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -34, + "offsetY": 1.5, + "trimX": 2, + "trimY": 2, + "width": 24, + "height": 89, + "rawWidth": 96, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/ronghua.effect b/assets/effect/ronghua.effect new file mode 100644 index 0000000..472052c --- /dev/null +++ b/assets/effect/ronghua.effect @@ -0,0 +1,85 @@ +// Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + +CCEffect %{ + techniques: + - passes: + - vert: vs + frag: fs + blendState: + targets: + - blend: true + rasterizerState: + cullMode: none + properties: + texture2: { value: white } + alphaThreshold: { value: 0.5 } +}% + + +CCProgram vs %{ + precision highp float; + + #include + #include + + in vec3 a_position; + in vec4 a_color; + out vec4 v_color; + + #if USE_TEXTURE + in vec2 a_uv0; + out vec2 v_uv0; + #endif + + void main () { + vec4 pos = vec4(a_position, 1); + + #if CC_USE_MODEL + pos = cc_matViewProj * cc_matWorld * pos; + #else + pos = cc_matViewProj * pos; + #endif + + #if USE_TEXTURE + v_uv0 = a_uv0; + #endif + + v_color = a_color; + + gl_Position = pos; + } +}% + + +CCProgram fs %{ + precision highp float; + + #include + #include + #include + + in vec4 v_color; + + #if USE_TEXTURE + in vec2 v_uv0; + uniform sampler2D texture; + uniform sampler2D texture2; + #endif + + void main () { + vec4 o = vec4(1, 1, 1, 1); + vec4 o2 = vec4(1, 1, 1, 1); + + #if USE_TEXTURE + CCTexture(texture, v_uv0, o); + CCTexture(texture2, v_uv0, o2); + #endif + + o *= v_color; + + ALPHA_TEST(o); + + o.a -= (o2.r*o2.r+0.1)*cc_time.x*0.5; + gl_FragColor = o; + } +}% diff --git a/assets/effect/ronghua.effect.meta b/assets/effect/ronghua.effect.meta new file mode 100644 index 0000000..f624148 --- /dev/null +++ b/assets/effect/ronghua.effect.meta @@ -0,0 +1,18 @@ +{ + "ver": "1.0.27", + "uuid": "6970f0a1-4487-4ec7-9623-cfabdaeab39c", + "importer": "effect", + "compiledShaders": [ + { + "glsl1": { + "vert": "\nprecision highp float;\nuniform mat4 cc_matViewProj;\nuniform mat4 cc_matWorld;\nattribute vec3 a_position;\nattribute vec4 a_color;\nvarying vec4 v_color;\n#if USE_TEXTURE\nattribute vec2 a_uv0;\nvarying vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform float alphaThreshold;\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nuniform vec4 cc_time;\nvarying vec4 v_color;\n#if USE_TEXTURE\nvarying vec2 v_uv0;\nuniform sampler2D texture;\nuniform sampler2D texture2;\n#endif\nvoid main () {\n vec4 o = vec4(1, 1, 1, 1);\n vec4 o2 = vec4(1, 1, 1, 1);\n #if USE_TEXTURE\n vec4 texture_tmp = texture2D(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture\n texture_tmp.a *= texture2D(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o.rgb *= (texture_tmp.rgb * texture_tmp.rgb);\n o.a *= texture_tmp.a;\n #else\n o *= texture_tmp;\n #endif\n vec4 texture2_tmp = texture2D(texture2, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture2\n texture2_tmp.a *= texture2D(texture2, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o2.rgb *= (texture2_tmp.rgb * texture2_tmp.rgb);\n o2.a *= texture2_tmp.a;\n #else\n o2 *= texture2_tmp;\n #endif\n #endif\n o *= v_color;\n ALPHA_TEST(o);\n o.a -= (o2.r*o2.r+0.1)*cc_time.x*0.5;\n gl_FragColor = o;\n}" + }, + "glsl3": { + "vert": "\nprecision highp float;\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nuniform CCLocal {\n mat4 cc_matWorld;\n mat4 cc_matWorldIT;\n};\nin vec3 a_position;\nin vec4 a_color;\nout vec4 v_color;\n#if USE_TEXTURE\nin vec2 a_uv0;\nout vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nin vec4 v_color;\n#if USE_TEXTURE\nin vec2 v_uv0;\nuniform sampler2D texture;\nuniform sampler2D texture2;\n#endif\nvoid main () {\n vec4 o = vec4(1, 1, 1, 1);\n vec4 o2 = vec4(1, 1, 1, 1);\n #if USE_TEXTURE\n vec4 texture_tmp = texture(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture\n texture_tmp.a *= texture(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o.rgb *= (texture_tmp.rgb * texture_tmp.rgb);\n o.a *= texture_tmp.a;\n #else\n o *= texture_tmp;\n #endif\n vec4 texture2_tmp = texture(texture2, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture2\n texture2_tmp.a *= texture(texture2, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o2.rgb *= (texture2_tmp.rgb * texture2_tmp.rgb);\n o2.a *= texture2_tmp.a;\n #else\n o2 *= texture2_tmp;\n #endif\n #endif\n o *= v_color;\n ALPHA_TEST(o);\n o.a -= (o2.r*o2.r+0.1)*cc_time.x*0.5;\n gl_FragColor = o;\n}" + } + } + ], + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/star.meta b/assets/effect/star.meta new file mode 100644 index 0000000..b360799 --- /dev/null +++ b/assets/effect/star.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "4521acf8-e934-426e-b598-0e3130cff6e4", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/star/taopao.atlas b/assets/effect/star/taopao.atlas new file mode 100644 index 0000000..363d440 --- /dev/null +++ b/assets/effect/star/taopao.atlas @@ -0,0 +1,69 @@ + +taopao.png +size: 992,992 +format: RGBA8888 +filter: Linear,Linear +repeat: none +wujiaoxing + rotate: false + xy: 879, 927 + size: 58, 62 + orig: 58, 62 + offset: 0, 0 + index: -1 +xu_lv/t_2_0015 + rotate: false + xy: 976, 975 + size: 13, 14 + orig: 720, 1280 + offset: 347, 634 + index: -1 +xu_lv/t_3 + rotate: true + xy: 819, 467 + size: 227, 170 + orig: 720, 1280 + offset: 248, 557 + index: -1 +xu_lv/t_4_0024 + rotate: false + xy: 0, 642 + size: 448, 347 + orig: 720, 1280 + offset: 123, 450 + index: -1 +xu_lv/t_4_0025 + rotate: false + xy: 0, 642 + size: 448, 347 + orig: 720, 1280 + offset: 123, 450 + index: -1 +xu_lv/t_4_0026 + rotate: false + xy: 450, 368 + size: 367, 326 + orig: 720, 1280 + offset: 162, 472 + index: -1 +xu_lv/t_4_0027 + rotate: false + xy: 0, 346 + size: 398, 294 + orig: 720, 1280 + offset: 144, 466 + index: -1 +xu_lv/t_4_0028 + rotate: false + xy: 450, 696 + size: 427, 293 + orig: 720, 1280 + offset: 128, 462 + index: -1 +xu_lv/t_4_0029 + rotate: false + xy: 939, 954 + size: 35, 35 + orig: 720, 1280 + offset: 381, 453 + index: -1 diff --git a/assets/effect/star/taopao.atlas.meta b/assets/effect/star/taopao.atlas.meta new file mode 100644 index 0000000..624a914 --- /dev/null +++ b/assets/effect/star/taopao.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "1c573e47-78cc-4fdb-a80b-970b2e06f16b", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/star/taopao.json b/assets/effect/star/taopao.json new file mode 100644 index 0000000..db0cd76 --- /dev/null +++ b/assets/effect/star/taopao.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"8abr4EUJnmNLVpZWmckSXuN8Zdg","spine":"3.8.99","x":-211.29,"y":-375.17,"width":432,"height":768,"images":"","audio":""},"bones":[{"name":"root"},{"name":"bone5","parent":"root","x":115.45,"y":86.84},{"name":"star","parent":"bone5","x":-102.15,"y":-77.8},{"name":"star2","parent":"bone5","x":-120.33,"y":-77.8},{"name":"star3","parent":"bone5","x":-120.33,"y":-77.8},{"name":"star4","parent":"bone5","x":-102.15,"y":-77.8},{"name":"star5","parent":"bone5","x":-102.15,"y":-77.8},{"name":"star6","parent":"bone5","x":-102.15,"y":-77.8},{"name":"star7","parent":"bone5","x":-120.33,"y":-77.8},{"name":"bone2","parent":"root","x":4.71,"y":8.83,"scaleX":0.6,"scaleY":0.6}],"slots":[{"name":"wujiaoxing","bone":"star","attachment":"wujiaoxing"},{"name":"wujiaoxing6","bone":"star6","attachment":"wujiaoxing"},{"name":"wujiaoxing4","bone":"star4","attachment":"wujiaoxing"},{"name":"wujiaoxing5","bone":"star5","attachment":"wujiaoxing"},{"name":"wujiaoxing2","bone":"star2","attachment":"wujiaoxing"},{"name":"wujiaoxing7","bone":"star7","attachment":"wujiaoxing"},{"name":"wujiaoxing3","bone":"star3","attachment":"wujiaoxing"},{"name":"xu/t_2_15","bone":"bone2","attachment":"xu_lv/t_4_0029","blend":"additive"}],"skins":[{"name":"default","attachments":{"wujiaoxing":{"wujiaoxing":{"x":-2.17,"y":0.25,"scaleX":0.7,"scaleY":0.7,"width":58,"height":62}},"wujiaoxing2":{"wujiaoxing":{"x":-2.17,"y":0.25,"scaleX":0.5,"scaleY":0.5,"rotation":-73.86,"width":58,"height":62}},"wujiaoxing3":{"wujiaoxing":{"x":-2.17,"y":0.25,"scaleX":0.5,"scaleY":0.5,"rotation":-128.11,"width":58,"height":62}},"wujiaoxing4":{"wujiaoxing":{"x":-2.17,"y":0.25,"scaleX":0.9,"scaleY":0.9,"rotation":56.35,"width":58,"height":62}},"wujiaoxing5":{"wujiaoxing":{"x":-2.17,"y":0.25,"scaleX":0.9,"scaleY":0.9,"rotation":23.2,"width":58,"height":62}},"wujiaoxing6":{"wujiaoxing":{"x":-2.17,"y":0.25,"scaleX":0.4,"scaleY":0.4,"rotation":-66.86,"width":58,"height":62}},"wujiaoxing7":{"wujiaoxing":{"x":-2.17,"y":0.25,"scaleX":0.5,"scaleY":0.5,"rotation":-73.86,"width":58,"height":62}},"xu/t_2_15":{"xu_lv/t_2_0015":{"width":720,"height":1280},"xu_lv/t_3":{"width":720,"height":1280},"xu_lv/t_4_0024":{"width":720,"height":1280},"xu_lv/t_4_0025":{"width":720,"height":1280},"xu_lv/t_4_0026":{"width":720,"height":1280},"xu_lv/t_4_0027":{"width":720,"height":1280},"xu_lv/t_4_0028":{"width":720,"height":1280},"xu_lv/t_4_0029":{"width":720,"height":1280}}}}],"animations":{"taopao1":{"slots":{"wujiaoxing":{"color":[{"time":0.2333,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"wujiaoxing2":{"color":[{"time":0.2333,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"wujiaoxing3":{"color":[{"time":0.2333,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"wujiaoxing4":{"color":[{"time":0.2333,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"wujiaoxing5":{"color":[{"time":0.2333,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"wujiaoxing6":{"color":[{"time":0.2333,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"wujiaoxing7":{"color":[{"time":0.2333,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"xu/t_2_15":{"color":[{"time":0.3333,"color":"ffffffff"},{"time":0.3667,"color":"ffffff00"}],"attachment":[{"name":"xu_lv/t_2_0015"},{"time":0.0667,"name":"xu_lv/t_3"},{"time":0.1333,"name":"xu_lv/t_4_0026"},{"time":0.2,"name":"xu_lv/t_4_0027"},{"time":0.2667,"name":"xu_lv/t_4_0028"},{"time":0.3333,"name":"xu_lv/t_4_0029"}]}},"bones":{"star":{"rotate":[{},{"time":0.6,"angle":-136.97}],"translate":[{"x":-4.58,"y":-6.87},{"time":0.2333,"x":105.94,"y":79.87},{"time":0.6,"x":128.33,"y":98.06}],"scale":[{"x":0,"y":0},{"time":0.2333}]},"star2":{"rotate":[{},{"time":0.6,"angle":-67.67}],"translate":[{"x":-4.58,"y":-6.87},{"time":0.2333,"x":-108.1,"y":-62.83},{"time":0.6,"x":-150.07,"y":-102}],"scale":[{"x":0,"y":0},{"time":0.2333}]},"star3":{"rotate":[{},{"time":0.6,"angle":-117.19}],"translate":[{"x":-4.58,"y":-6.87},{"time":0.2333,"x":-16.2,"y":-123.66},{"time":0.6,"x":-25.13,"y":-149.56}],"scale":[{"x":0,"y":0},{"time":0.2333}]},"star4":{"rotate":[{},{"time":0.6,"angle":-123.56}],"translate":[{"x":-4.58,"y":-6.87},{"time":0.2333,"x":-114.42,"y":100.33},{"time":0.6,"x":-178.95,"y":145.98}],"scale":[{"x":0,"y":0},{"time":0.2333}]},"star5":{"rotate":[{},{"time":0.6,"angle":-157.59}],"translate":[{"x":-4.58,"y":-6.87},{"time":0.2333,"x":-110.49,"y":-133.95},{"time":0.6,"x":-142.13,"y":-195.26}],"scale":[{"x":0,"y":0},{"time":0.2333}]},"star6":{"rotate":[{},{"time":0.6,"angle":-27.53}],"translate":[{"x":-4.58,"y":-6.87},{"time":0.2333,"x":105.94,"y":-50.08},{"time":0.6,"x":120.22,"y":-72.93}],"scale":[{"x":0,"y":0},{"time":0.2333}]},"star7":{"rotate":[{},{"time":0.6,"angle":-64.21}],"translate":[{"x":-4.58,"y":-6.87},{"time":0.2333,"x":155.37,"y":-1.32},{"time":0.6,"x":183.52,"y":-1.32}],"scale":[{"x":0,"y":0},{"time":0.2333}]}}}}} \ No newline at end of file diff --git a/assets/effect/star/taopao.json.meta b/assets/effect/star/taopao.json.meta new file mode 100644 index 0000000..9549f93 --- /dev/null +++ b/assets/effect/star/taopao.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "90e4657e-f478-47b1-91df-c5ac8b836069", + "importer": "spine", + "textures": [ + "d853d588-0e29-4488-a9f9-8be43e2a8bd6" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/star/taopao.png b/assets/effect/star/taopao.png new file mode 100644 index 0000000..266a2a9 Binary files /dev/null and b/assets/effect/star/taopao.png differ diff --git a/assets/effect/star/taopao.png.meta b/assets/effect/star/taopao.png.meta new file mode 100644 index 0000000..69c723b --- /dev/null +++ b/assets/effect/star/taopao.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d853d588-0e29-4488-a9f9-8be43e2a8bd6", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 992, + "height": 992, + "platformSettings": {}, + "subMetas": { + "taopao": { + "ver": "1.0.6", + "uuid": "3aa101f7-39be-49da-8e2f-9d4807ba9eb7", + "importer": "sprite-frame", + "rawTextureUuid": "d853d588-0e29-4488-a9f9-8be43e2a8bd6", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1.5, + "offsetY": -171.5, + "trimX": 0, + "trimY": 346, + "width": 989, + "height": 643, + "rawWidth": 992, + "rawHeight": 992, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/texture.png b/assets/effect/texture.png new file mode 100644 index 0000000..63c010d Binary files /dev/null and b/assets/effect/texture.png differ diff --git a/assets/effect/texture.png.meta b/assets/effect/texture.png.meta new file mode 100644 index 0000000..c790fc7 --- /dev/null +++ b/assets/effect/texture.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a546d6f3-5346-4f7c-b2cb-e369cab36b48", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1024, + "height": 1024, + "platformSettings": {}, + "subMetas": { + "texture": { + "ver": "1.0.6", + "uuid": "4e860315-17d5-49ec-a0ce-6bc8c75fc65b", + "importer": "sprite-frame", + "rawTextureUuid": "a546d6f3-5346-4f7c-b2cb-e369cab36b48", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1024, + "height": 1024, + "rawWidth": 1024, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/touch.meta b/assets/effect/touch.meta new file mode 100644 index 0000000..7fb8c24 --- /dev/null +++ b/assets/effect/touch.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "fb8c4ca9-3797-49ea-9e0b-aba6bf29a72c", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/touch/fankui.atlas b/assets/effect/touch/fankui.atlas new file mode 100644 index 0000000..6da35b9 --- /dev/null +++ b/assets/effect/touch/fankui.atlas @@ -0,0 +1,13 @@ + +fankui.png +size: 136,136 +format: RGBA8888 +filter: Linear,Linear +repeat: none +20250523-155951/白1 + rotate: false + xy: 0, 1 + size: 126, 134 + orig: 126, 134 + offset: 0, 0 + index: -1 diff --git a/assets/effect/touch/fankui.atlas.meta b/assets/effect/touch/fankui.atlas.meta new file mode 100644 index 0000000..09933e3 --- /dev/null +++ b/assets/effect/touch/fankui.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "8a50cadc-e025-4bd4-bf6e-9a8a87b63c36", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/touch/fankui.json b/assets/effect/touch/fankui.json new file mode 100644 index 0000000..fc77a24 --- /dev/null +++ b/assets/effect/touch/fankui.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"my5vobOhXv+T+MYmOvAqj7AD0Oc","spine":"3.8.99","x":-62.18,"y":-71.35,"width":126.34,"height":134.45,"images":"","audio":""},"bones":[{"name":"root"},{"name":"bone2","parent":"root","length":33.08,"rotation":-136.05,"x":42.21,"y":29.99},{"name":"bone3","parent":"bone2","length":43.29,"rotation":0.77,"x":33.08},{"name":"bone4","parent":"bone3","length":32.64,"rotation":-0.78,"x":43.29}],"slots":[{"name":"20250523-155951/白1","bone":"bone4","attachment":"20250523-155951/白1"}],"skins":[{"name":"default","attachments":{"20250523-155951/白1":{"20250523-155951/白1":{"type":"mesh","uvs":[0.14642,0,0.25742,0.00122,0.44947,0,0.60452,0,0.76485,0,0.86352,0.01945,0.92871,0.06252,0.96571,0.10394,0.9939,0.16192,0.99566,0.19837,1,0.30274,1,0.40049,1,0.51149,1,0.62415,1,0.70036,1,0.77822,1,0.86603,0.99037,0.91573,0.96747,0.96212,0.92871,0.98365,0.87761,1,0.78776,1,0.66266,1,0.54637,1,0.43538,1,0.33495,1,0.26271,1,0.17285,0.99691,0.09709,0.98531,0.05304,0.97206,0.02838,0.95052,0.00723,0.90579,1.9E-4,0.85774,0.00195,0.76828,0,0.70698,0,0.61089,0,0.52806,0,0.45682,0,0.34913,0,0.25304,0,0.18346,0,0.14204,0.01076,0.09897,0.03719,0.06252,0.06361,0.03436,0.10238,0.01116,0.20104,0.21991,0.50233,0.21163,0.83885,0.21825,0.16757,0.54463,0.51642,0.53137,0.88642,0.5496,0.14995,0.82627,0.50761,0.83786,0.90933,0.83621],"triangles":[51,13,14,54,51,14,52,33,34,19,20,54,54,20,21,54,21,22,24,53,23,54,22,53,22,23,53,24,25,53,53,25,52,52,25,26,28,52,27,26,27,52,28,29,52,19,54,18,29,30,52,18,54,17,30,31,52,17,54,16,31,32,52,54,15,16,32,33,52,52,49,53,53,51,54,15,54,14,49,52,34,34,35,49,49,37,38,51,48,11,53,49,50,53,50,51,50,49,46,51,12,13,35,36,49,50,48,51,12,51,11,49,36,37,38,46,49,46,1,47,1,2,47,48,47,3,3,4,48,48,10,11,38,39,46,48,9,10,39,40,46,46,41,42,42,43,46,43,44,46,44,45,46,45,0,46,46,0,1,48,8,9,48,7,8,48,6,7,48,5,6,48,4,5,47,2,3,46,40,41,46,47,50,48,50,47],"vertices":[1,1,38.5,-83.11,1,1,1,28.59,-73.23,1,2,1,11.14,-56.47,0.99895,2,-22.7,-56.17,0.00105,2,1,-2.86,-42.84,0.9999,2,-36.51,-42.36,1.0E-4,1,1,-17.34,-28.75,1,1,1,-24.43,-18.21,1,1,1,-26.28,-8.35,1,2,1,-25.75,-1.12,0.99971,3,-102.12,-1.72,2.9E-4,2,1,-22.88,6.93,0.99724,3,-99.25,6.33,0.00276,2,1,-19.63,10.58,0.99356,3,-96,9.98,0.00644,3,1,-10.27,20.98,0.50707,2,-43.06,21.56,0.46937,3,-86.64,20.39,0.02356,2,1,-1.13,30.37,0.28677,2,-33.8,30.83,0.71323,1,2,-23.28,41.34,1,2,2,-12.61,52.02,0.49804,3,-56.6,51.25,0.50196,1,3,-49.48,58.57,1,1,3,-42.2,66.05,1,1,3,-34,74.48,1,1,3,-28.48,78.41,1,1,3,-22.08,80.85,1,1,3,-16.57,79.51,1,1,3,-10.42,76.59,1,1,3,-2.31,68.7,1,1,3,8.99,57.7,1,1,3,19.49,47.48,1,1,3,29.51,37.73,1,1,3,38.58,28.91,1,1,3,45.1,22.56,1,1,3,52.93,14.36,1,1,3,58.68,6.59,1,1,3,61.42,1.45,1,1,3,61.64,-2.79,1,1,3,59.37,-8.94,1,1,3,55.51,-14.17,1,1,3,46.99,-22.61,1,1,3,41.44,-28.67,1,2,2,75.23,-38.33,0.46325,3,32.46,-37.9,0.53676,1,2,67.38,-46.18,1,1,2,60.63,-52.93,1,2,1,84.35,-62.45,0.51257,2,50.43,-63.14,0.48743,2,1,75.37,-71.68,0.752,2,41.32,-72.24,0.248,2,1,68.87,-78.36,0.98267,3,-7.49,-78.94,0.01733,2,1,65,-82.34,0.9906,3,-11.36,-82.92,0.0094,2,1,60,-85.53,0.99519,3,-16.35,-86.11,0.00481,2,1,54.2,-86.7,0.99787,3,-22.15,-87.29,0.00213,3,1,49.19,-87.09,0.98464,2,14.93,-87.29,0.01457,3,-27.16,-87.67,7.9E-4,2,1,43.52,-85.91,0.99988,3,-32.83,-86.49,1.2E-4,2,1,54.12,-57.19,0.98506,3,-22.23,-57.78,0.01494,1,1,26.15,-31.51,1,2,1,-3.62,-1.29,0.99557,3,-79.98,-1.89,0.00443,1,2,54.02,-29.68,1,1,2,21.69,0.14,1,1,2,-9.55,34.83,1,1,3,39.05,-4.04,1,1,3,7.83,28.51,1,1,3,-28.6,63.65,1],"hull":46,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,52,52,54,54,56,56,58,58,60,60,62,62,64,64,66,66,68,68,70,70,72,72,74,74,76,76,78,78,80,80,82,82,84,84,86,86,88,88,90,0,90],"width":126,"height":134}}}}],"animations":{"fangkuai":{"bones":{"bone4":{"scale":[{},{"time":0.1667,"y":0.9},{"time":0.2667},{"time":0.3667,"y":0.95},{"time":0.4667,"y":1.01},{"time":0.5667}]},"bone3":{"scale":[{"time":0.1},{"time":0.1667,"y":0.95},{"time":0.2333,"y":1.05},{"time":0.3,"y":0.95},{"time":0.3667,"y":1.03},{"time":0.4667}]},"bone2":{"scale":[{},{"time":0.1,"y":1.05},{"time":0.2,"y":0.95},{"time":0.3,"y":1.03},{"time":0.4,"x":1.03,"y":0.98},{"time":0.5}]}}}}} \ No newline at end of file diff --git a/assets/effect/touch/fankui.json.meta b/assets/effect/touch/fankui.json.meta new file mode 100644 index 0000000..18d9709 --- /dev/null +++ b/assets/effect/touch/fankui.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "4e6cd31e-a247-42dd-bae5-376b5be4059d", + "importer": "spine", + "textures": [ + "10b3c05c-cb90-4a2e-8872-2a8b3e890ab5" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/touch/fankui.png b/assets/effect/touch/fankui.png new file mode 100644 index 0000000..8479c6e Binary files /dev/null and b/assets/effect/touch/fankui.png differ diff --git a/assets/effect/touch/fankui.png.meta b/assets/effect/touch/fankui.png.meta new file mode 100644 index 0000000..e22f951 --- /dev/null +++ b/assets/effect/touch/fankui.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "10b3c05c-cb90-4a2e-8872-2a8b3e890ab5", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 136, + "height": 136, + "platformSettings": {}, + "subMetas": { + "fankui": { + "ver": "1.0.6", + "uuid": "de3e7a22-0918-4ca1-8619-92287b017800", + "importer": "sprite-frame", + "rawTextureUuid": "10b3c05c-cb90-4a2e-8872-2a8b3e890ab5", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -4.5, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 125, + "height": 134, + "rawWidth": 136, + "rawHeight": 136, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/tuowei.meta b/assets/effect/tuowei.meta new file mode 100644 index 0000000..16ea813 --- /dev/null +++ b/assets/effect/tuowei.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "6cbb4c39-cc05-40b9-ade7-d861892eec7d", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/tuowei/2D and UI trailing effects.meta b/assets/effect/tuowei/2D and UI trailing effects.meta new file mode 100644 index 0000000..d6e063f --- /dev/null +++ b/assets/effect/tuowei/2D and UI trailing effects.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "7edcbf54-d8ee-4027-950d-7d5e0086d76d", + "importer": "directory", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x.meta b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x.meta new file mode 100644 index 0000000..a27e278 --- /dev/null +++ b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "b7dfc157-1e68-4278-a452-23541de3bab7", + "importer": "directory", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures.meta b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures.meta new file mode 100644 index 0000000..ccdfbde --- /dev/null +++ b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "9d39798c-3312-4cfe-b597-73c0057c8e99", + "importer": "directory", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle.meta b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle.meta new file mode 100644 index 0000000..f8639c7 --- /dev/null +++ b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "e0b3973d-fd82-4d03-a0db-8ec2dd56271a", + "importer": "directory", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/LiZi1.png b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/LiZi1.png new file mode 100644 index 0000000..28f3855 Binary files /dev/null and b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/LiZi1.png differ diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/LiZi1.png.meta b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/LiZi1.png.meta new file mode 100644 index 0000000..f109eda --- /dev/null +++ b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/LiZi1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4728bb0d-1617-4105-b140-fcfc14969a6b", + "importer": "image", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 192, + "height": 192, + "platformSettings": {}, + "subMetas": { + "LiZi1": { + "ver": "1.0.6", + "uuid": "d10edf1c-a10f-4544-8e7a-bd80fae9dce6", + "importer": "sprite-frame", + "rawTextureUuid": "4728bb0d-1617-4105-b140-fcfc14969a6b", + "trimType": "none", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 192, + "height": 192, + "rawWidth": 192, + "rawHeight": 192, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/circle_00.png b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/circle_00.png new file mode 100644 index 0000000..0e01bbe Binary files /dev/null and b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/circle_00.png differ diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/circle_00.png.meta b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/circle_00.png.meta new file mode 100644 index 0000000..b45e7b7 --- /dev/null +++ b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/circle_00.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "05875bd1-0240-40cc-b2d9-0166038382ba", + "importer": "image", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 200, + "height": 200, + "platformSettings": {}, + "subMetas": { + "circle_00": { + "ver": "1.0.6", + "uuid": "8f9466ae-3e85-4994-b04b-be783917a209", + "importer": "sprite-frame", + "rawTextureUuid": "05875bd1-0240-40cc-b2d9-0166038382ba", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 200, + "height": 200, + "rawWidth": 200, + "rawHeight": 200, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/flash.png b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/flash.png new file mode 100644 index 0000000..c261a22 Binary files /dev/null and b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/flash.png differ diff --git a/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/flash.png.meta b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/flash.png.meta new file mode 100644 index 0000000..44e4c03 --- /dev/null +++ b/assets/effect/tuowei/2D and UI trailing effects/2D和UI的拖尾效果3.x/textures/particle/flash.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b706673f-e777-40bc-af87-422aec7626a4", + "importer": "image", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 73, + "height": 73, + "platformSettings": {}, + "subMetas": { + "flash": { + "ver": "1.0.6", + "uuid": "8f4e5027-d995-4ac1-b222-f560d9364ae8", + "importer": "sprite-frame", + "rawTextureUuid": "b706673f-e777-40bc-af87-422aec7626a4", + "trimType": "none", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 73, + "height": 73, + "rawWidth": 73, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/tuowei/bang.png b/assets/effect/tuowei/bang.png new file mode 100644 index 0000000..d9598e1 Binary files /dev/null and b/assets/effect/tuowei/bang.png differ diff --git a/assets/effect/tuowei/bang.png.meta b/assets/effect/tuowei/bang.png.meta new file mode 100644 index 0000000..a1d0ad9 --- /dev/null +++ b/assets/effect/tuowei/bang.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "89eea05d-23f3-4c5b-a6ce-28a491b1ed8b", + "importer": "image", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 186, + "height": 218, + "platformSettings": {}, + "subMetas": { + "bang": { + "ver": "1.0.6", + "uuid": "2f8ebf3a-bace-40c5-aecb-7b6868c6156a", + "importer": "texture", + "rawTextureUuid": "89eea05d-23f3-4c5b-a6ce-28a491b1ed8b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 186, + "height": 218, + "rawWidth": 186, + "rawHeight": 218, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/effect/tuowei/tuowei1.prefab b/assets/effect/tuowei/tuowei1.prefab new file mode 100644 index 0000000..f8db6b1 --- /dev/null +++ b/assets/effect/tuowei/tuowei1.prefab @@ -0,0 +1,976 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "tuowei1", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "tuowei1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 8 + }, + { + "__id__": 14 + }, + { + "__id__": 20 + } + ], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 28 + } + ], + "_prefab": { + "__id__": 30 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 368.365, + "y": 119.47800000000007, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "", + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + } + }, + { + "__type__": "cc.Node", + "_name": "bang", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 7 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 24.637, + "y": -44.506, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "", + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + } + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 186, + "height": 218 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cdWk0F6LtP+JZwDprvKxmV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "071c697b-6b3e-4294-a6bb-e433ef19e445@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f1svzuVr5Ek4L0JQ6gVnR0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "41GQWZ2a5Ex6CABo1VEgRM", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "tailing", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 13 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "", + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + } + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 8 + }, + "_enabled": true, + "__prefab": { + "__id__": 10 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f2Tw/3NDdLoLhwO87Ntg5/" + }, + { + "__type__": "cc.MotionStreak", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 8 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 128, + "b": 0, + "a": 255 + }, + "_preview": true, + "_fadeTime": 0.3, + "_minSeg": 1, + "_stroke": 20, + "_texture": { + "__uuid__": "c88c6283-3de7-4606-b65a-fa3e18c95049@6c48a", + "__expectedType__": "cc.Texture2D" + }, + "_fastMode": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6eMtdlXtxMZ6pJ12SfzsaD" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d7Nu2TAIxA4b0/kSUg8bAf", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "em_flash_particle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 15 + }, + { + "__id__": 17 + } + ], + "_prefab": { + "__id__": 19 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "", + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + } + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 14 + }, + "_enabled": true, + "__prefab": { + "__id__": 16 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "81tLRN38lLaYloZwaXQYU9" + }, + { + "__type__": "cc.ParticleSystem2D", + "_name": "Node", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 14 + }, + "_enabled": true, + "__prefab": { + "__id__": 18 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 1, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "duration": -1, + "emissionRate": 224.9, + "life": 1, + "lifeVar": 0.5, + "angle": 0, + "angleVar": 360, + "startSize": 100, + "startSizeVar": 30, + "endSize": 1, + "endSizeVar": 0, + "startSpin": 50, + "startSpinVar": 20, + "endSpin": 20, + "endSpinVar": 0, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "speed": 112.1, + "speedVar": 0, + "tangentialAccel": 0, + "tangentialAccelVar": 0, + "radialAccel": -88.8, + "radialAccelVar": 50, + "rotationIsDir": false, + "startRadius": 100, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "_preview": true, + "preview": true, + "_custom": true, + "_file": null, + "_spriteFrame": { + "__uuid__": "727ab669-af95-43be-9818-2065a98b84a5@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_totalParticles": 100, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_positionType": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "29Yg0IzqxLXpg3WEEEA8rx" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "79oTbIHqZP55cNO2Plw9CS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "em_flash_0001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 21 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 25 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "", + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + } + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 20 + }, + "_enabled": true, + "__prefab": { + "__id__": 22 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "63jpn9vu9KgJrVSe3VGxEH" + }, + { + "__type__": "cc.ParticleSystem2D", + "_name": "Node", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 20 + }, + "_enabled": true, + "__prefab": { + "__id__": 24 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 1, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "duration": -1, + "emissionRate": 100, + "life": 0.2, + "lifeVar": 0.5, + "angle": 0, + "angleVar": 360, + "startSize": 50, + "startSizeVar": 50, + "endSize": 0, + "endSizeVar": 0, + "startSpin": 0, + "startSpinVar": 0, + "endSpin": 0, + "endSpinVar": 0, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "speed": 100, + "speedVar": 0, + "tangentialAccel": 0, + "tangentialAccelVar": 0, + "radialAccel": -100, + "radialAccelVar": 50, + "rotationIsDir": false, + "startRadius": 100, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "_preview": true, + "preview": true, + "_custom": true, + "_file": null, + "_spriteFrame": { + "__uuid__": "118d4d54-d313-4f52-b49f-593effa13423@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_totalParticles": 100, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_positionType": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d6zZxSYVRKao65R/JgmRQm" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "12615JbA9PJ4FPoMzO8C6x", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 27 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bdEhcD5ulM9ZomwM3XdABi" + }, + { + "__type__": "cc.ParticleSystem2D", + "_name": "Node", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 29 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 1, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "duration": -1, + "emissionRate": 999.999985098839, + "life": 0.20000000298023224, + "lifeVar": 0.5, + "angle": 360, + "angleVar": 360, + "startSize": 3.369999885559082, + "startSizeVar": 50, + "endSize": 30.31999969482422, + "endSizeVar": 0, + "startSpin": -47.369998931884766, + "startSpinVar": 0, + "endSpin": -47.369998931884766, + "endSpinVar": -142.11000061035156, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 7, + "y": 7 + }, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0.25, + "y": 0.8600000143051147 + }, + "speed": 0, + "speedVar": 190.7899932861328, + "tangentialAccel": -92.11000061035156, + "tangentialAccelVar": 65.79000091552734, + "radialAccel": -671.0499877929688, + "radialAccelVar": 65.79000091552734, + "rotationIsDir": false, + "startRadius": 100, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "_preview": true, + "preview": true, + "_custom": false, + "_file": { + "__uuid__": "e17b4526-57a2-48d3-acc9-cf09f30aa138", + "__expectedType__": "cc.ParticleAsset" + }, + "_spriteFrame": { + "__uuid__": "24c419ea-63a8-4ea1-a9d0-7fc469489bbc@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_totalParticles": 200, + "_startColor": { + "__type__": "cc.Color", + "r": 203, + "g": 201, + "b": 86, + "a": 163 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 174, + "g": 162, + "b": 20, + "a": 214 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_positionType": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0bZtCWyVpB6rYhwnVfPfEd" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2aAPYQxm1P2KXFrtMmSuR+", + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/effect/tuowei/tuowei1.prefab.meta b/assets/effect/tuowei/tuowei1.prefab.meta new file mode 100644 index 0000000..027179d --- /dev/null +++ b/assets/effect/tuowei/tuowei1.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a13dd92f-bf7e-4b75-ab24-d443ea0a0221", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/融化.effect b/assets/effect/融化.effect new file mode 100644 index 0000000..912a3b4 --- /dev/null +++ b/assets/effect/融化.effect @@ -0,0 +1,90 @@ +// Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + +CCEffect %{ + techniques: + - passes: + - vert: vs + frag: fs + blendState: + targets: + - blend: true + rasterizerState: + cullMode: none + properties: + texture2: { value: white } + u_time: { value: 0 } + alphaThreshold: { value: 0.5 } +}% + + +CCProgram vs %{ + precision highp float; + + #include + #include + + in vec3 a_position; + in vec4 a_color; + out vec4 v_color; + + #if USE_TEXTURE + in vec2 a_uv0; + out vec2 v_uv0; + #endif + + void main () { + vec4 pos = vec4(a_position, 1); + + #if CC_USE_MODEL + pos = cc_matViewProj * cc_matWorld * pos; + #else + pos = cc_matViewProj * pos; + #endif + + #if USE_TEXTURE + v_uv0 = a_uv0; + #endif + + v_color = a_color; + + gl_Position = pos; + } +}% + + +CCProgram fs %{ + precision highp float; + + #include + #include + #include + + in vec4 v_color; + + #if USE_TEXTURE + in vec2 v_uv0; + uniform sampler2D texture; + uniform sampler2D texture2; + + uniform ARGS { + float u_time; + }; + #endif + + void main () { + vec4 o = vec4(1, 1, 1, 1); + vec4 o2 = vec4(1, 1, 1, 1); + + #if USE_TEXTURE + CCTexture(texture, v_uv0, o); + CCTexture(texture2, v_uv0, o2); + #endif + + o *= v_color; + + ALPHA_TEST(o); + + o.a -= (o2.r*o2.r)*u_time*2.0; + gl_FragColor = o; + } +}% diff --git a/assets/effect/融化.effect.meta b/assets/effect/融化.effect.meta new file mode 100644 index 0000000..870cf99 --- /dev/null +++ b/assets/effect/融化.effect.meta @@ -0,0 +1,18 @@ +{ + "ver": "1.0.27", + "uuid": "5a2ab061-e5f5-4caa-b4ee-4a27ff8e7db7", + "importer": "effect", + "compiledShaders": [ + { + "glsl1": { + "vert": "\nprecision highp float;\nuniform mat4 cc_matViewProj;\nuniform mat4 cc_matWorld;\nattribute vec3 a_position;\nattribute vec4 a_color;\nvarying vec4 v_color;\n#if USE_TEXTURE\nattribute vec2 a_uv0;\nvarying vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform float alphaThreshold;\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nvarying vec4 v_color;\n#if USE_TEXTURE\nvarying vec2 v_uv0;\nuniform sampler2D texture;\nuniform sampler2D texture2;\nuniform float u_time;\n#endif\nvoid main () {\n vec4 o = vec4(1, 1, 1, 1);\n vec4 o2 = vec4(1, 1, 1, 1);\n #if USE_TEXTURE\n vec4 texture_tmp = texture2D(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture\n texture_tmp.a *= texture2D(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o.rgb *= (texture_tmp.rgb * texture_tmp.rgb);\n o.a *= texture_tmp.a;\n #else\n o *= texture_tmp;\n #endif\n vec4 texture2_tmp = texture2D(texture2, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture2\n texture2_tmp.a *= texture2D(texture2, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o2.rgb *= (texture2_tmp.rgb * texture2_tmp.rgb);\n o2.a *= texture2_tmp.a;\n #else\n o2 *= texture2_tmp;\n #endif\n #endif\n o *= v_color;\n ALPHA_TEST(o);\n o.a -= (o2.r*o2.r)*u_time*2.0;\n gl_FragColor = o;\n}" + }, + "glsl3": { + "vert": "\nprecision highp float;\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nuniform CCLocal {\n mat4 cc_matWorld;\n mat4 cc_matWorldIT;\n};\nin vec3 a_position;\nin vec4 a_color;\nout vec4 v_color;\n#if USE_TEXTURE\nin vec2 a_uv0;\nout vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}", + "frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nin vec4 v_color;\n#if USE_TEXTURE\nin vec2 v_uv0;\nuniform sampler2D texture;\nuniform sampler2D texture2;\nuniform ARGS {\n float u_time;\n};\n#endif\nvoid main () {\n vec4 o = vec4(1, 1, 1, 1);\n vec4 o2 = vec4(1, 1, 1, 1);\n #if USE_TEXTURE\n vec4 texture_tmp = texture(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture\n texture_tmp.a *= texture(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o.rgb *= (texture_tmp.rgb * texture_tmp.rgb);\n o.a *= texture_tmp.a;\n #else\n o *= texture_tmp;\n #endif\n vec4 texture2_tmp = texture(texture2, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture2\n texture2_tmp.a *= texture(texture2, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o2.rgb *= (texture2_tmp.rgb * texture2_tmp.rgb);\n o2.a *= texture2_tmp.a;\n #else\n o2 *= texture2_tmp;\n #endif\n #endif\n o *= v_color;\n ALPHA_TEST(o);\n o.a -= (o2.r*o2.r)*u_time*2.0;\n gl_FragColor = o;\n}" + } + } + ], + "subMetas": {} +} \ No newline at end of file diff --git a/assets/effect/融化.ts b/assets/effect/融化.ts new file mode 100644 index 0000000..4df20c8 --- /dev/null +++ b/assets/effect/融化.ts @@ -0,0 +1,33 @@ +// IceMelt.ts + + + +const { ccclass, property } = cc._decorator; + +@ccclass() +export class IceMelt extends cc.Component { + + speed: number = 1; + + //是否融化 + private _isMelt: boolean = false; + private _time: number = 0; + private _material: cc.MaterialVariant; + + start() { + this._material = this.node.getComponent(cc.Sprite).getMaterial(0); + } + + update(dt) { + if (this._material && this._isMelt) { + this._material.setProperty('u_time', this._time); + this._time += dt * this.speed; + } + } + + //开始融化 + startMelt() { + this._isMelt = true; + this._time = 0; + } +} \ No newline at end of file diff --git a/assets/effect/融化.ts.meta b/assets/effect/融化.ts.meta new file mode 100644 index 0000000..ce81bf6 --- /dev/null +++ b/assets/effect/融化.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "341aecd6-8bf0-4219-adaa-dbc54ef22a32", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/libs.meta b/assets/libs.meta new file mode 100644 index 0000000..ba7dfdb --- /dev/null +++ b/assets/libs.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "f307257e-fd8b-4b22-88e1-40d22df34759", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/libs/GravityAnalyticsSDK.d.ts b/assets/libs/GravityAnalyticsSDK.d.ts new file mode 100644 index 0000000..13e8cf4 --- /dev/null +++ b/assets/libs/GravityAnalyticsSDK.d.ts @@ -0,0 +1,144 @@ +declare class GravityAnalyticsAPI { + constructor(config: any); + setupAndStart(options?: { clientId?: string; openId?: string }): void; + track(eventName: string): void; + preInit(): void; + track(eventName: string, properties: any): void; + track(eventName: string, properties: any, time: any): void; + track(eventName: string, properties: any, time: any, onComplete: any): void; + track(taEvent: any): void; + timeEvent(eventName: string): void; + login(accoundId: string): void; + logout(): void; + setSuperProperties(properties: any): void; + unsetSuperProperty(properties: any): void; + clearSuperProperties(): void; + getSuperProperties(): any; + getSendProperties(): any; + registerEvent(): void; + loginEvent(): void; + logoutEvent(): void; + payEvent( + pay_amount: number, + pay_type: string, + order_id: string, + pay_reason: string, + pay_method: string + ): void; + payEventToTencent(pay_amount: number): void; + tryPayEventDryRun(pay_amount: number): void; + tryTutorialFinishEventDryRun(): void; + tryRegisterEventDryRun(): void; + tryCreateRoleEventDryRun(role_name: string): void; + adShowEvent(ad_type: string, ad_unit_id: string, otherProperties: any): void; + bindTAThirdPlatform(taAccountId: string, taDistinctId: string): void; + initialize(data: any): any; + initializeWithHistoryUserInfo( + data: any, + history_info: { + company: string; + create_time: number; + } + ): any; + userSet(properties: any): void; + userSetOnce(properties: any): void; + userAppend(properties: any): void; + userUniqAppend(properties: any): void; + userAdd(properties: any): void; + userUnset(property: string): void; + userDel(): void; + authorizeOpenID(distinctId: string): void; + identify(distinctId: string): void; + initInstance(name: string): GravityAnalyticsAPI; + initInstance(name: string, config: any): GravityAnalyticsAPI; + lightInstance(name: string): any; + setDynamicSuperProperties(properties: any): void; + getDeviceId(callback?: any): string; + getDistinctId(callback?: any): string; + getAccountId(callback?: any): string; + getPresetProperties(callback?: any): any; + getWechatOpenId( + code: string + ): Promise<{ session_key: string; openid: string; unionid: string }>; + + sendDryRunResult( + traceId: string, + action: string + ): Promise<{ + extra: { + error: string; + }; + code: number; + msg: string; + }>; + + onPayEvent( + pay_amount: number, + pay_type: string, + order_id: string, + pay_reason: string, + pay_method: string + ): void; + onRegisterEvent(): void; + onCreateRoleEvent(role_name: string): void; + onCreateRoleEventWithParams(role_name: string, params: any): void; + onTutorialFinishEvent(): void; + onTutorialFinishEventWithParams(params: any): void; + onViewMallContentEvent(): void; + onViewMallContentEventWithParams(params: any): void; + onViewActivityContentEvent(): void; + onViewActivityContentEventWithParams(params: any): void; + onAddToWishListEvent(wishType: string): void; + onAddToWishListEventWithParams(wishType: string, params: any): void; + onShareEvent(shareType: "APP_MESSAGE" | "TIME_LINE"): void; + onShareEventWithParams( + shareType: "APP_MESSAGE" | "TIME_LINE", + params: any + ): void; + onUpdateLevelEvent(userLevel: number, userPower: number): void; + onUpdateLevelEventWithParams( + userLevel: number, + userPower: number, + params: any + ): void; + + getKuaishouOpenId( + code: string + ): Promise<{ session_key: string; openid: string; unionid: string }>; + getDouyinOpenId( + code: string + ): Promise<{ session_key: string; openid: string; unionid: string }>; + getBilibiliOpenId( + code: string + ): Promise<{ session_key: string; openid: string; unionid: string }>; + /** + * 暂停/开启上报 + * @param {bool} enabled YES:开启上报 NO:暂停上报 + * @deprecated This method is deprecated, use setTrackStatus() instand. + */ + enableTracking(enabled: boolean): void; + /** + * 停止上报,后续的上报和设置都无效,数据将清空 + * @deprecated This method is deprecated, use setTrackStatus() instand. + */ + optOutTracking(): void; + /** + * 停止上报,后续的上报和设置都无效,数据将清空,并且发送 user_del + * @deprecated This method is deprecated, use setTrackStatus() instand. + */ + optOutTrackingAndDeleteUser(): void; + /** + * 允许上报 + * @deprecated This method is deprecated, use setTrackStatus() instand. + */ + optInTracking(): void; + /** + * 设置数据上报状态 + * PAUSE 暂停数据上报 + * STOP 停止数据上报,并清除缓存 + * SAVE_ONLY 数据入库,但不上报 (接入Native原生可支持,JS暂不支持此状态,默认等同 NORMAL) + * NORMAL 恢复数据上报 + * @param {string} status 上报状态 + */ + setTrackStatus(status: string): void; +} diff --git a/assets/libs/GravityAnalyticsSDK.d.ts.meta b/assets/libs/GravityAnalyticsSDK.d.ts.meta new file mode 100644 index 0000000..82f28da --- /dev/null +++ b/assets/libs/GravityAnalyticsSDK.d.ts.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.2", + "uuid": "3133d8a4-37df-4a5f-8b47-9cc1a74bd339", + "importer": "text", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/libs/ThinkingAnalyticsSDK.d.ts b/assets/libs/ThinkingAnalyticsSDK.d.ts new file mode 100644 index 0000000..3837d81 --- /dev/null +++ b/assets/libs/ThinkingAnalyticsSDK.d.ts @@ -0,0 +1,68 @@ + +declare class ThinkingAnalyticsAPI { + constructor(config:any); + init(): void; + track(eventName:string): void; + track(eventName:string, properties:any): void; + track(eventName:string, properties:any, time:any): void; + track(eventName:string, properties:any, time:any, onComplete:any): void; + track(taEvent:any): void; + trackUpdate(taEvent:any): void; + trackFirstEvent(taEvent:any): void; + trackOverwrite(taEvent:any): void; + timeEvent(eventName:string): void; + login(accoundId:string): void; + logout(): void; + setSuperProperties(properties:any): void; + unsetSuperProperty(properties:any): void; + clearSuperProperties(): void; + userSet(properties:any): void; + userSetOnce(properties:any): void; + userAppend(properties:any): void; + userUniqAppend(properties:any): void; + userAdd(properties:any): void; + userUnset(property:string): void; + userDel(): void; + flush(): void; + authorizeOpenID(distinctId:string): void; + identify(distinctId:string): void; + initInstance(name:string): ThinkingAnalyticsAPI; + initInstance(name:string, config:any): ThinkingAnalyticsAPI; + lightInstance(name:string): any; + setDynamicSuperProperties(properties: any): void; + getDeviceId(callback?: any): string; + getDistinctId(callback?: any): string; + getAccountId(callback?: any): string; + getPresetProperties(callback?: any): any; + getSuperProperties(callback?: any): any; + /** + * Pause/Resume reporting event data + * @param {bool} enabled:true is Resume, false is Pause + * @deprecated This method is deprecated, use setTrackStatus() instand. + */ + enableTracking(enabled:boolean): void; + /** + * Stop reporting event data, and cache data will be cleared + * @deprecated This method is deprecated, use setTrackStatus() instand. + */ + optOutTracking(): void; + /** + * Stop reporting event data, and cache data will be cleared, and flush a user_del + * @deprecated This method is deprecated, use setTrackStatus() instand. + */ + optOutTrackingAndDeleteUser(): void; + /** + * Allow reporting event data + * @deprecated This method is deprecated, use setTrackStatus() instand. + */ + optInTracking(): void; + /** + * Set status for events reporting + * PAUSE, pause events reporting + * STOP, stop events reporting, and cache data will be cleared + * SAVE_ONLY, event data stores in the cache, but not be reported (native support, js equal to NORMAL) + * NORMAL, resume event reporting + * @param {string} status, events reporting status + */ + setTrackStatus(status: string): void; +} diff --git a/assets/libs/ThinkingAnalyticsSDK.d.ts.meta b/assets/libs/ThinkingAnalyticsSDK.d.ts.meta new file mode 100644 index 0000000..f7622b7 --- /dev/null +++ b/assets/libs/ThinkingAnalyticsSDK.d.ts.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.2", + "uuid": "07f20dc4-bce8-41f5-94b8-896b4ab7fbaf", + "importer": "text", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/migration.meta b/assets/migration.meta new file mode 100644 index 0000000..6f25837 --- /dev/null +++ b/assets/migration.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "2e3d6223-9889-4122-8121-c6d837f5367e", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js b/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js new file mode 100644 index 0000000..0750b46 --- /dev/null +++ b/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js @@ -0,0 +1,17 @@ +/* + * This script is automatically generated by Cocos Creator and is only used for projects compatible with the v2.1.0 ~ 2.2.1 version. + * You do not need to manually add this script in any other project. + * If you don't use cc.Toggle in your project, you can delete this script directly. + * If your project is hosted in VCS such as git, submit this script together. + * + * 此脚本由 Cocos Creator 自动生成,仅用于兼容 v2.1.0 ~ 2.2.1 版本的工程, + * 你无需在任何其它项目中手动添加此脚本。 + * 如果你的项目中没用到 Toggle,可直接删除该脚本。 + * 如果你的项目有托管于 git 等版本库,请将此脚本一并上传。 + */ + +if (cc.Toggle) { + // Whether to trigger 'toggle' and 'checkEvents' events when modifying 'toggle.isChecked' in the code + // 在代码中修改 'toggle.isChecked' 时是否触发 'toggle' 与 'checkEvents' 事件 + cc.Toggle._triggerEventInScript_isChecked = true; +} diff --git a/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js.meta b/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js.meta new file mode 100644 index 0000000..1906e0d --- /dev/null +++ b/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "7a231473-d1df-4b05-8620-6376c36252c1", + "importer": "javascript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/migration/use_v2.1-2.2.1_cc.Toggle_event_1.js b/assets/migration/use_v2.1-2.2.1_cc.Toggle_event_1.js new file mode 100644 index 0000000..0750b46 --- /dev/null +++ b/assets/migration/use_v2.1-2.2.1_cc.Toggle_event_1.js @@ -0,0 +1,17 @@ +/* + * This script is automatically generated by Cocos Creator and is only used for projects compatible with the v2.1.0 ~ 2.2.1 version. + * You do not need to manually add this script in any other project. + * If you don't use cc.Toggle in your project, you can delete this script directly. + * If your project is hosted in VCS such as git, submit this script together. + * + * 此脚本由 Cocos Creator 自动生成,仅用于兼容 v2.1.0 ~ 2.2.1 版本的工程, + * 你无需在任何其它项目中手动添加此脚本。 + * 如果你的项目中没用到 Toggle,可直接删除该脚本。 + * 如果你的项目有托管于 git 等版本库,请将此脚本一并上传。 + */ + +if (cc.Toggle) { + // Whether to trigger 'toggle' and 'checkEvents' events when modifying 'toggle.isChecked' in the code + // 在代码中修改 'toggle.isChecked' 时是否触发 'toggle' 与 'checkEvents' 事件 + cc.Toggle._triggerEventInScript_isChecked = true; +} diff --git a/assets/migration/use_v2.1-2.2.1_cc.Toggle_event_1.js.meta b/assets/migration/use_v2.1-2.2.1_cc.Toggle_event_1.js.meta new file mode 100644 index 0000000..bc06de1 --- /dev/null +++ b/assets/migration/use_v2.1-2.2.1_cc.Toggle_event_1.js.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "c9ad1894-4c1d-4fca-a277-726b4c189df5", + "importer": "javascript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music.meta b/assets/music.meta new file mode 100644 index 0000000..e951004 --- /dev/null +++ b/assets/music.meta @@ -0,0 +1,21 @@ +{ + "ver": "1.1.3", + "uuid": "6ebfe2d9-539a-4853-8b16-fca5c89cf2ce", + "importer": "folder", + "isBundle": true, + "bundleName": "music", + "priority": 9, + "compressionType": { + "wechatgame": "subpackage" + }, + "optimizeHotUpdate": { + "wechatgame": false + }, + "inlineSpriteFrames": { + "wechatgame": false + }, + "isRemoteBundle": { + "wechatgame": false + }, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/anniu_Big.mp3 b/assets/music/anniu_Big.mp3 new file mode 100644 index 0000000..2d30023 Binary files /dev/null and b/assets/music/anniu_Big.mp3 differ diff --git a/assets/music/anniu_Big.mp3.meta b/assets/music/anniu_Big.mp3.meta new file mode 100644 index 0000000..a103ce5 --- /dev/null +++ b/assets/music/anniu_Big.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "7362cac7-12b5-4704-af6d-5b110c5e9fcf", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 0.12, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/anniu_little.mp3 b/assets/music/anniu_little.mp3 new file mode 100644 index 0000000..6ef9572 Binary files /dev/null and b/assets/music/anniu_little.mp3 differ diff --git a/assets/music/anniu_little.mp3.meta b/assets/music/anniu_little.mp3.meta new file mode 100644 index 0000000..143ca4e --- /dev/null +++ b/assets/music/anniu_little.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "a5518b0f-7ed3-46f0-aa78-93f02f4579cc", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 0.096, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/down.mp3 b/assets/music/down.mp3 new file mode 100644 index 0000000..0aa21ff Binary files /dev/null and b/assets/music/down.mp3 differ diff --git a/assets/music/down.mp3.meta b/assets/music/down.mp3.meta new file mode 100644 index 0000000..f006d68 --- /dev/null +++ b/assets/music/down.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "ec293610-1767-46e8-b6b6-4a9a79ef2233", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 0.384, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/hit.mp3 b/assets/music/hit.mp3 new file mode 100644 index 0000000..65fc9dd Binary files /dev/null and b/assets/music/hit.mp3 differ diff --git a/assets/music/hit.mp3.meta b/assets/music/hit.mp3.meta new file mode 100644 index 0000000..360c1f9 --- /dev/null +++ b/assets/music/hit.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "7575a6bd-a21d-491e-aad2-e40a189683e9", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 0.155997, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/main_bgm.mp3 b/assets/music/main_bgm.mp3 new file mode 100644 index 0000000..0ab1f02 Binary files /dev/null and b/assets/music/main_bgm.mp3 differ diff --git a/assets/music/main_bgm.mp3.meta b/assets/music/main_bgm.mp3.meta new file mode 100644 index 0000000..eb35b90 --- /dev/null +++ b/assets/music/main_bgm.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "75b4f368-70b5-452d-9afd-ca7a6f1e2e60", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 173.064, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/tanchuang.mp3 b/assets/music/tanchuang.mp3 new file mode 100644 index 0000000..afdbc4d Binary files /dev/null and b/assets/music/tanchuang.mp3 differ diff --git a/assets/music/tanchuang.mp3.meta b/assets/music/tanchuang.mp3.meta new file mode 100644 index 0000000..41a0cca --- /dev/null +++ b/assets/music/tanchuang.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "1301aea4-4351-40d8-b4c4-e428613b3681", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 0.216, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/win.mp3 b/assets/music/win.mp3 new file mode 100644 index 0000000..f100a47 Binary files /dev/null and b/assets/music/win.mp3 differ diff --git a/assets/music/win.mp3.meta b/assets/music/win.mp3.meta new file mode 100644 index 0000000..d41e697 --- /dev/null +++ b/assets/music/win.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "9f2906df-601d-4dfa-a561-31745b62c9dd", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 5.04, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/xiaochu.mp3 b/assets/music/xiaochu.mp3 new file mode 100644 index 0000000..c0bb2ad Binary files /dev/null and b/assets/music/xiaochu.mp3 differ diff --git a/assets/music/xiaochu.mp3.meta b/assets/music/xiaochu.mp3.meta new file mode 100644 index 0000000..5ec48db --- /dev/null +++ b/assets/music/xiaochu.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "8d67c864-c7f4-4305-8b3b-2d66eb69e349", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 1.032, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/zhuan1.mp3 b/assets/music/zhuan1.mp3 new file mode 100644 index 0000000..6bfda8b Binary files /dev/null and b/assets/music/zhuan1.mp3 differ diff --git a/assets/music/zhuan1.mp3.meta b/assets/music/zhuan1.mp3.meta new file mode 100644 index 0000000..d9a22e9 --- /dev/null +++ b/assets/music/zhuan1.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "e4d2f16e-7663-4ee5-a479-06ae0eae91d5", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 1.536, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/music/zhuan2.mp3 b/assets/music/zhuan2.mp3 new file mode 100644 index 0000000..967c4b2 Binary files /dev/null and b/assets/music/zhuan2.mp3 differ diff --git a/assets/music/zhuan2.mp3.meta b/assets/music/zhuan2.mp3.meta new file mode 100644 index 0000000..2aeceb6 --- /dev/null +++ b/assets/music/zhuan2.mp3.meta @@ -0,0 +1,8 @@ +{ + "ver": "2.0.3", + "uuid": "998a24bd-ffa0-4f96-bc39-a9789f42bd9b", + "importer": "audio-clip", + "downloadMode": 0, + "duration": 1.032, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab.meta b/assets/prefab.meta new file mode 100644 index 0000000..a92762d --- /dev/null +++ b/assets/prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "bf3935ca-518a-42f4-84e4-ad96badfd1b4", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/map.meta b/assets/prefab/map.meta new file mode 100644 index 0000000..a27f44f --- /dev/null +++ b/assets/prefab/map.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "dbc5acf2-1061-4d14-a2c5-61c3b03f302f", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/map/MapBlock.prefab b/assets/prefab/map/MapBlock.prefab new file mode 100644 index 0000000..3a20dee --- /dev/null +++ b/assets/prefab/map/MapBlock.prefab @@ -0,0 +1,618 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "MapBlock", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 11 + } + ], + "_active": true, + "_components": [ + { + "__id__": 15 + }, + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -144.7, + 285.244, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 1, + "groupIndex": 1, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "riseup", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 2 + }, + "asset": { + "__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5" + }, + "fileId": "54EhKJk8RO3ZqCwIuQNcqR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "risefall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": false, + "_components": [ + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "color", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "0", + "_N$string": "0", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5" + }, + "fileId": "09UHTGK3JP4JxymScIKPMf", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5" + }, + "fileId": "3dMeOJ0YNFE7bL+Lq7EnZ/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rise", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 12 + }, + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 80, + "height": 80 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 11 + }, + "asset": { + "__uuid__": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5" + }, + "fileId": "71OadLOAxFepRyht3K7r2x", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a4e3a13a-44b8-4fc2-9b34-e72554a59deb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "52958xsurVAp54WMo+xFDo6", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "label": null, + "block_Id": "", + "riseFall": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/map/MapBlock.prefab.meta b/assets/prefab/map/MapBlock.prefab.meta new file mode 100644 index 0000000..d1ee6a8 --- /dev/null +++ b/assets/prefab/map/MapBlock.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "6023e99b-9806-44e9-8325-487a6cfdf3e5", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/map/Pause.prefab b/assets/prefab/map/Pause.prefab new file mode 100644 index 0000000..24b1b38 --- /dev/null +++ b/assets/prefab/map/Pause.prefab @@ -0,0 +1,5054 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "Pause", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 6 + }, + { + "__id__": 9 + }, + { + "__id__": 14 + }, + { + "__id__": 19 + }, + { + "__id__": 27 + }, + { + "__id__": 30 + }, + { + "__id__": 34 + }, + { + "__id__": 37 + }, + { + "__id__": 40 + }, + { + "__id__": 43 + }, + { + "__id__": 53 + }, + { + "__id__": 63 + }, + { + "__id__": 73 + } + ], + "_active": true, + "_components": [ + { + "__id__": 130 + } + ], + "_prefab": { + "__id__": 131 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 5 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2600 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aeonOEwUBGnb89e2Va7cMu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bec937c0-0152-4a64-8a66-03296ec98509" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02MeZOAONIjZRZD2j2QEY5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "exit", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -350, + -557.849, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1d5174db-1f3f-4bc2-ba08-81c80f25f376" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 12 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 9 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickExit", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "32xCkGhyVA/ai8qPmjf33o", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "trya", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 15 + }, + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 18 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 350, + -557.849, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "822b5014-4bfe-4c85-aecf-d5ff5cfde207" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 17 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 14 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickRestart", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "96fE0xVvFLvIZxerRyxz0j", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btn", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 20 + } + ], + "_active": true, + "_components": [ + { + "__id__": 23 + }, + { + "__id__": 24 + }, + { + "__id__": 25 + } + ], + "_prefab": { + "__id__": 26 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 476, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -557.849, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 19 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 21 + } + ], + "_prefab": { + "__id__": 22 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 319, + "height": 81 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 6, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 20 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c0koNXCVhMmbrJtXStJePf", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0627b7be-af35-4562-8e32-09afd533d061" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 19 + }, + "_id": "" + }, + { + "__type__": "6ee6czJ4eVNb4Feiqps5SIa", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "126ypOhyhDao+5cRYur9En", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 28 + } + ], + "_prefab": { + "__id__": 29 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 654.219, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1e7a4c08-5881-4666-9d03-226bb1eed118" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28o+qDySRGq6XdyZyHm3Pf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "closeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 31 + }, + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 432.072, + 578.989, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 30 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 30 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 30 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0cfvgPYRhODa3a6SFF14op", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "yinyue1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 311, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -158.514, + 312.779, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c87c3ebe-d12e-4a23-bb90-06fff1dc75d4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "37tA0CJ2VO97HmAqaVvXHV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "zhendong1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 314, + "height": 117 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -162.477, + -174.365, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "87fa17a4-5583-43f0-b8b1-8179599ab5a8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "51cy3BtsVOcKGEHiFwUGP3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "yinxiao", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 41 + } + ], + "_prefab": { + "__id__": 42 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 311, + "height": 116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -166.736, + 64.842, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 40 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0c9d12f2-60f8-4cb4-8d5e-6499e8cedd7e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5amrmbI4ZBMoSfVevqKtFO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 44 + }, + { + "__id__": 47 + } + ], + "_active": true, + "_components": [ + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + 299.764, + 0, + 0, + 0, + 0, + 1, + 1.5, + 1.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 43 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 45 + } + ], + "_prefab": { + "__id__": 46 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02f5073d-b0ce-4c13-bc77-3cf9d93cee71" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8faKYVO8FCZJQCKtlmPWBp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 43 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 48 + } + ], + "_prefab": { + "__id__": 49 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 47 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "40b263ac-9213-429d-b358-730e59b237fc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aalwIrcQRJLJQeoSnw/Wcf", + "sync": false + }, + { + "__type__": "cc.Toggle", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 43 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_N$isChecked": false, + "toggleGroup": null, + "checkMark": { + "__id__": 48 + }, + "checkEvents": [ + { + "__id__": 51 + } + ], + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickMusic", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e0oLQAeEVO4oa9gFiASrLc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 54 + }, + { + "__id__": 57 + } + ], + "_active": true, + "_components": [ + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 62 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + 56.233, + 0, + 0, + 0, + 0, + 1, + 1.5, + 1.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 53 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 56 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02f5073d-b0ce-4c13-bc77-3cf9d93cee71" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "12X04QawdFu6wZiTyQgg2f", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 53 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "40b263ac-9213-429d-b358-730e59b237fc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "55LB1TPcJD95iJ+Wrwajuy", + "sync": false + }, + { + "__type__": "cc.Toggle", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_N$isChecked": false, + "toggleGroup": null, + "checkMark": { + "__id__": 58 + }, + "checkEvents": [ + { + "__id__": 61 + } + ], + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickEffect", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aemqc11SNOQJeY1AXgaHNU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 64 + }, + { + "__id__": 67 + } + ], + "_active": true, + "_components": [ + { + "__id__": 70 + } + ], + "_prefab": { + "__id__": 72 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 219.146, + -182.765, + 0, + 0, + 0, + 0, + 1, + 1.5, + 1.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 65 + } + ], + "_prefab": { + "__id__": 66 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 64 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "02f5073d-b0ce-4c13-bc77-3cf9d93cee71" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2555yPbBpLv5GeM2FFKBd2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 68 + } + ], + "_prefab": { + "__id__": 69 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 264, + "height": 104 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.667, + 0.667, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 67 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "40b263ac-9213-429d-b358-730e59b237fc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "61ZbOjzO1OOoOddlvalP7w", + "sync": false + }, + { + "__type__": "cc.Toggle", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 63 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_N$isChecked": false, + "toggleGroup": null, + "checkMark": { + "__id__": 68 + }, + "checkEvents": [ + { + "__id__": 71 + } + ], + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickVibrate", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4dnVuIT8RMk4w7Roq2HNxp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "pauseTs", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 74 + }, + { + "__id__": 79 + }, + { + "__id__": 86 + } + ], + "_active": false, + "_components": [ + { + "__id__": 128 + } + ], + "_prefab": { + "__id__": 129 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -39.25999999999999, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 73 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 75 + }, + { + "__id__": 76 + }, + { + "__id__": 77 + } + ], + "_prefab": { + "__id__": 78 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2akYMeGKtAPKV+IV20FdFV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 73 + }, + "_children": [ + { + "__id__": 80 + } + ], + "_active": true, + "_components": [ + { + "__id__": 84 + } + ], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 38.815, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "closet", + "_objFlags": 0, + "_parent": { + "__id__": 79 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 81 + }, + { + "__id__": 82 + } + ], + "_prefab": { + "__id__": 83 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 431.951, + 586.501, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 80 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 80 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 80 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a9q2lBb8dMP4f3zbJFvxDU", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 79 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bf006254-d63b-49e7-9bb2-26cd7328e3e8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "53y/IFiqBFC6w/nyuIOQlW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Health", + "_objFlags": 0, + "_parent": { + "__id__": 73 + }, + "_children": [ + { + "__id__": 87 + }, + { + "__id__": 90 + }, + { + "__id__": 96 + }, + { + "__id__": 105 + }, + { + "__id__": 110 + }, + { + "__id__": 115 + }, + { + "__id__": 119 + }, + { + "__id__": 124 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 127 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.935, + -54.722, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 88 + } + ], + "_prefab": { + "__id__": 89 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 291, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.137, + 752.897, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 87 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "255341b2-a231-4265-b923-8e7c5e0fef83" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f3Z+viu71Maq1pdcPiKNoE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "yuandi", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [ + { + "__id__": 91 + } + ], + "_active": true, + "_components": [ + { + "__id__": 94 + } + ], + "_prefab": { + "__id__": 95 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 516 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 182.291, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 93 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eeHlCiM+dFfZ+HDTDYaXYm", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59873a8f-b079-4344-a77a-a72c76753cb0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "926cIXLZVPOa1gviKZe9Ub", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "boom_show", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [ + { + "__id__": 97 + }, + { + "__id__": 100 + } + ], + "_active": true, + "_components": [ + { + "__id__": 103 + } + ], + "_prefab": { + "__id__": 104 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 364, + "height": 276 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 176.394, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "hp_-", + "_objFlags": 0, + "_parent": { + "__id__": 96 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 98 + } + ], + "_prefab": { + "__id__": 99 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 29 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 67.39, + -80.691, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 97 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "44cbc1be-fe4c-40df-8e52-3c2f768d61ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d6aqMAqflPXrVexg4u6AfF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "hp_1", + "_objFlags": 0, + "_parent": { + "__id__": 96 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 101 + } + ], + "_prefab": { + "__id__": 102 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 97, + "height": 108 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 126.926, + -81.045, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 100 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9026aa5a-1be4-4f61-8d50-e44e1df4c071" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "58dt8vZk1LH5mfttRWKxfs", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 96 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3de74abd-a830-4ee0-8d46-7c9e7f3684fe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1d2wR/qmZCb60FMirC/RkX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "homeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 106 + }, + { + "__id__": 107 + } + ], + "_prefab": { + "__id__": 109 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 434.98, + 677.475, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 108 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 105 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "cancelExit", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f2ELSRPjlO6Lkr/uRmYYZ1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 111 + }, + { + "__id__": 112 + } + ], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -289.197, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 110 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3bf0b81-eeab-4042-b247-e3576fd7932b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 110 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 113 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 110 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "cancelExit", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77H4E8M7ZLXIU8havvU3mm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "return", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 116 + }, + { + "__id__": 117 + } + ], + "_prefab": { + "__id__": 118 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -479.505, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 115 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e711bf3b-8b72-412a-b5c6-cc3de6fceae0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 115 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 115 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5sEUu/fRIUoIdewKt4yS3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "queding", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 120 + }, + { + "__id__": 121 + } + ], + "_prefab": { + "__id__": 123 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 144 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -479.505, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 119 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2fcdd5c3-1633-4fc7-bd96-ada7c7f34102" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 119 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 122 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 119 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "19d952d5kVBrLSzAIGeElFK", + "handler": "clickRestart", + "customEventData": "hp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5e+xbNrY5HzrI5GWR3gaEH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "result_title4", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 125 + } + ], + "_prefab": { + "__id__": 126 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 586, + "height": 57 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 541.599, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 124 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "515197c3-1b04-4ef9-aa31-bfc11ffc3856" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dc9MjjgwlIv4HqtdqoQlNI", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "41zVrNLnRGDbk4yfvvzoB5", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 73 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 39.26000000000004, + "_bottom": -39.26000000000004, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "14TZoy1dBEVIzEVgvbYoEu", + "sync": false + }, + { + "__type__": "19d952d5kVBrLSzAIGeElFK", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "music": { + "__id__": 43 + }, + "effect": { + "__id__": 53 + }, + "vibrate": { + "__id__": 63 + }, + "exit": { + "__id__": 73 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/map/Pause.prefab.meta b/assets/prefab/map/Pause.prefab.meta new file mode 100644 index 0000000..cbf6ee7 --- /dev/null +++ b/assets/prefab/map/Pause.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "625b0784-d5f1-4e52-9258-6ffa083fd973", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/map/reduce.prefab b/assets/prefab/map/reduce.prefab new file mode 100644 index 0000000..d2b6fbd --- /dev/null +++ b/assets/prefab/map/reduce.prefab @@ -0,0 +1,6575 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "reduce", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 8 + }, + { + "__id__": 11 + }, + { + "__id__": 14 + }, + { + "__id__": 17 + }, + { + "__id__": 20 + }, + { + "__id__": 23 + }, + { + "__id__": 26 + }, + { + "__id__": 29 + }, + { + "__id__": 32 + }, + { + "__id__": 35 + }, + { + "__id__": 38 + }, + { + "__id__": 41 + }, + { + "__id__": 44 + }, + { + "__id__": 47 + }, + { + "__id__": 50 + }, + { + "__id__": 53 + }, + { + "__id__": 56 + }, + { + "__id__": 59 + }, + { + "__id__": 62 + }, + { + "__id__": 65 + }, + { + "__id__": 68 + }, + { + "__id__": 71 + }, + { + "__id__": 74 + }, + { + "__id__": 77 + }, + { + "__id__": 80 + }, + { + "__id__": 83 + }, + { + "__id__": 86 + }, + { + "__id__": 89 + }, + { + "__id__": 92 + }, + { + "__id__": 95 + }, + { + "__id__": 98 + }, + { + "__id__": 101 + }, + { + "__id__": 104 + }, + { + "__id__": 107 + } + ], + "_active": true, + "_components": [ + { + "__id__": 110 + } + ], + "_prefab": { + "__id__": 111 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "top_1_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "01fcca73-6a36-405e-98fb-9e6f37cd2c13" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 50, + "duration": 0.5, + "emissionRate": 16.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 40, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72T2YKg09OSLR5i99Id10h", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top_1_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "40f60783-36f6-4831-b55c-3f7aef910438" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 37, + "duration": 0.66, + "emissionRate": 12.333333333333334, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 40, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "25JUILsSVDMIKq8TwRr2Ji", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top_1_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "27f92c6a-8bde-4a6e-a6a9-9c187bba0ef9" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 50, + "duration": 0.99, + "emissionRate": 16.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 40, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7fXSdFMCVAQ71yWaynNtxw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top_2_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "829311c5-ad5c-4756-9a8e-f0968c6e0162" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 100, + "duration": 0.33, + "emissionRate": 33.333333333333336, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 80, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f4TeZJOPhNhYPokl05tv4v", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top_2_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "fe21168e-d899-4afc-82a6-e9c7585df025" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 75, + "duration": 0.66, + "emissionRate": 25, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 80, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "adh9CJgZZLeJbA+on3OdTt", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top_2_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 18 + } + ], + "_prefab": { + "__id__": 19 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "1b494dbb-d786-4f0c-a69d-e4f4db0d889b" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 100, + "duration": 0.99, + "emissionRate": 33.333333333333336, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 80, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7aqwKPJPFFALwQcgObOzeM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top_3_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 21 + } + ], + "_prefab": { + "__id__": 22 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 20 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "75feb7e8-e734-4102-b055-93e74d5aed50" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.33, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eaaEGaEJhCJYviDjcFzRBn", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top_3_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 25 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 23 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "89d0ea0c-b527-4f7a-a1da-9c0047f9e40e" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.66, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2cPEFTbWlLAYMk8mGUJjfE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top_3_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "63e77e87-7700-4af5-afcc-c540b8af10a0" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 150, + "duration": 0.99, + "emissionRate": 50, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 90, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "870Qdq/o1Aop3yvsy/umO0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_1_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 30 + } + ], + "_prefab": { + "__id__": 31 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "d2e9f95d-f8f9-45a8-8a3b-67a1f370a18d" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 80, + "duration": 0.33, + "emissionRate": 26.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 40, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "17xAfw//dIV5ZFQQA3xCcZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_1_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 33 + } + ], + "_prefab": { + "__id__": 34 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 32 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "4386a35e-0b50-4e89-a827-6319df821ec2" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 80, + "duration": 0.66, + "emissionRate": 26.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 40, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9elQkGpVhN6rteiuuNUL7o", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_1_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 36 + } + ], + "_prefab": { + "__id__": 37 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 35 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "3a6e128b-d998-4c0b-b1ff-762130a580a2" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 80, + "duration": 0.99, + "emissionRate": 26.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 40, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "86RuzRmmlN9Yc7GmC7+fsV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_2_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "d8d32fc1-13ba-435c-a2b5-b6afb5ead4c3" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 80, + "duration": 0.33, + "emissionRate": 26.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 80, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7vQ4h+G9Plr8y7IaUzx6o", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_2_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 42 + } + ], + "_prefab": { + "__id__": 43 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "e5c15f0a-718a-47b6-82dc-ea181130859b" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 80, + "duration": 0.66, + "emissionRate": 26.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 80, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7f1oSpcGpMpKtL4rTv0GTE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_2_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 45 + } + ], + "_prefab": { + "__id__": 46 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "a8a0985f-7251-4998-a641-c2333fbef6c6" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.99, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 80, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "71tuOJC1lLXaXNxRR9UwM5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_3_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 48 + } + ], + "_prefab": { + "__id__": 49 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 47 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "49e6cc86-2188-4109-87fd-e23e3a6bb1d3" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.33, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "15D/qP9O9Ow4FQOz5kmk6T", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_3_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "cc1282c3-e268-4bbb-a5a6-895a475cfc7e" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.66, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "99iaPQHgZHS5sqAj2q/qON", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bot_3_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "870ec0a5-ac62-49c6-b365-09e22bdf9448" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.99, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 270, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": -150 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9dW/LTxNxLHpLdVREzX4Vx", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_1_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 57 + } + ], + "_prefab": { + "__id__": 58 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 56 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "cf99e49b-06ca-454a-9a13-29c4e96328c6" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.33, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 40 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "81nn1LDdhEh5riQ512ob+C", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_1_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 61 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 59 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "b180f2e0-f364-4832-bcd7-c0727c15c5e0" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 80, + "duration": 0.66, + "emissionRate": 26.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 40 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d8NJNm19tKjrIIiHaRyaxd", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_1_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "2cd94fa9-72c6-4357-88c2-697eeb061de3" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 80, + "duration": 0.99, + "emissionRate": 26.666666666666668, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 40 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b5XHkc8ldCxYO3QTs3DKaY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_2_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "15604d4e-0b1d-47bb-ae71-6ddc8d6d8a96" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 100, + "duration": 0.33, + "emissionRate": 33.333333333333336, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 80 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cdr69tQZxGfq5egJUpTFft", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_2_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 70 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 68 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "ed81d2b1-5dbe-4eca-a472-3a22134ea19e" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 100, + "duration": 0.66, + "emissionRate": 33.333333333333336, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 80 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "10VlUMx65CJZi72w0LLwLK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_2_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "87bc6933-4c65-48f7-ac9e-347b2145d2ef" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 100, + "duration": 0.99, + "emissionRate": 33.333333333333336, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 80 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3r0wLGbpAL70B3BlrTnhr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_3_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 75 + } + ], + "_prefab": { + "__id__": 76 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "23f7b3b3-2805-44bf-8204-d1135244b9ae" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 130, + "duration": 0.33, + "emissionRate": 43.333333333333336, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fcWbsgkZFAWJLFq7WeRNPH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_3_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 78 + } + ], + "_prefab": { + "__id__": 79 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "9bcf0f0b-4390-407a-b338-9727ef89750a" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 130, + "duration": 0.66, + "emissionRate": 43.333333333333336, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d00l4Y5kFGfbCbfr0DvN1/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left_3_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 81 + } + ], + "_prefab": { + "__id__": 82 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 80 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "523feab4-8c80-4417-90c3-47e34cf18f66" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 130, + "duration": 0.99, + "emissionRate": 43.333333333333336, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 180, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": -150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dfertCAVVNC6jnsTt/U/mY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_1_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 84 + } + ], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 83 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "246d7311-437e-4184-8547-664b85645015" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.33, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 40 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1dsz0DaVFP96RaQzaD07po", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_1_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 87 + } + ], + "_prefab": { + "__id__": 88 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "abe40804-998a-4602-a647-ea4bffb74929" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.66, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 40 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "43ros7N2dD2bKJTXF3W0fD", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_1_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 90 + } + ], + "_prefab": { + "__id__": 91 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 89 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "259cbf2f-a53d-49c6-9c0d-c28875e8bcd4" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.99, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 40 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2bsDjx8sBFELIfRZYC6SKF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_2_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 93 + } + ], + "_prefab": { + "__id__": 94 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 92 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "7d728925-7cba-4ba2-83ac-9902652f55bf" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.33, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 80 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f4bnx6v8VH2LK3sUcggL1m", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_2_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 96 + } + ], + "_prefab": { + "__id__": 97 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 95 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "68e20e2a-61c1-4058-8cdb-4994aec5f8ce" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.66, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 80 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "88KFh9zyRMzaSiEzVfJ2Ws", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_2_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 99 + } + ], + "_prefab": { + "__id__": 100 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 98 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "471933f9-e1c4-4830-a7a4-db3e48eff87c" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.99, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 80 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2dup07v79MfowFrMIWLfNS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_3_1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 102 + } + ], + "_prefab": { + "__id__": 103 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 101 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "636f36f4-76c6-43be-b0de-95c017bc0749" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.33, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "828KBs6RFAjb+uX1+BPEOV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_3_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 105 + } + ], + "_prefab": { + "__id__": 106 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 104 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "514ab07a-7f5c-46a5-87f0-88cb5dadc0cf" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.66, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7fInrXdz1GVr7fzVdgqf9T", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right_3_3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 108 + } + ], + "_prefab": { + "__id__": 109 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 25, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 107 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": { + "__uuid__": "d6d986d6-5774-4d13-9207-4b44d4396852" + }, + "_spriteFrame": null, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": true, + "totalParticles": 110, + "duration": 0.99, + "emissionRate": 36.666666666666664, + "life": 3, + "lifeVar": 0, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 0 + }, + "angle": 0, + "angleVar": 0, + "startSize": 32, + "startSizeVar": 9, + "endSize": 34, + "endSizeVar": 15, + "startSpin": 0, + "startSpinVar": 60, + "endSpin": 0, + "endSpinVar": 15, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 150, + "y": 0 + }, + "speed": 60, + "speedVar": 90, + "tangentialAccel": 0, + "tangentialAccelVar": 80, + "radialAccel": 30, + "radialAccelVar": 0, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fdKQCo9MVBIbrtPGKQuf7P", + "sync": false + }, + { + "__type__": "ca599IU5hFEYYrzoN59YOpT", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "Block_Color": [ + { + "__uuid__": "213688d0-d284-47b2-804c-fe21c2e22398" + }, + { + "__uuid__": "8fc92573-fa3b-4437-ac58-ee8bebf147af" + }, + { + "__uuid__": "04c5ecd6-8fd0-4cf0-aa0e-61849dbeb18b" + }, + { + "__uuid__": "b6ec7265-e4a6-4f2c-aa8c-88647b9b1afe" + }, + { + "__uuid__": "70628582-7715-46ec-97ec-026e33a3dd81" + }, + { + "__uuid__": "ef05cab6-7421-4057-92f6-7466fa2d1123" + }, + { + "__uuid__": "53acff61-c462-4834-9d48-b9fe3d7b325b" + }, + { + "__uuid__": "5c98e132-ba5f-4b56-8cb6-15e95b8364a8" + }, + { + "__uuid__": "4555ccb8-761f-4426-b5d4-c58228724d22" + }, + { + "__uuid__": "afaa09e1-5511-4dc9-8db6-197ff8bc7ee2" + } + ], + "level": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/map/reduce.prefab.meta b/assets/prefab/map/reduce.prefab.meta new file mode 100644 index 0000000..67380cc --- /dev/null +++ b/assets/prefab/map/reduce.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "e98498e1-12bf-4280-8def-6f8e543fb934", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/map/rotate.prefab b/assets/prefab/map/rotate.prefab new file mode 100644 index 0000000..ec5a8a3 --- /dev/null +++ b/assets/prefab/map/rotate.prefab @@ -0,0 +1,234 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "rotate", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + } + ], + "_active": true, + "_components": [ + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 180, + -33, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 167, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/map/rotate.prefab.meta b/assets/prefab/map/rotate.prefab.meta new file mode 100644 index 0000000..dfdbb09 --- /dev/null +++ b/assets/prefab/map/rotate.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a7045129-1b59-44d6-99a0-6316107b3b7b", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/map/turn_Wall.prefab b/assets/prefab/map/turn_Wall.prefab new file mode 100644 index 0000000..cbd3eac --- /dev/null +++ b/assets/prefab/map/turn_Wall.prefab @@ -0,0 +1,306 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "turn_Wall", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f1WknqcE9GnoOIdZqUwd1D", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 61, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 36.842, + 35.803, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "11ca11bf-c649-466a-aa87-a88c13ef46ca" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "49hfa7I3ROIqdVm0qtkvm2", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/map/turn_Wall.prefab.meta b/assets/prefab/map/turn_Wall.prefab.meta new file mode 100644 index 0000000..f97f521 --- /dev/null +++ b/assets/prefab/map/turn_Wall.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "75a77063-a5a9-456a-8b4f-bfde10c137e8", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/map/wall.prefab b/assets/prefab/map/wall.prefab new file mode 100644 index 0000000..37d990f --- /dev/null +++ b/assets/prefab/map/wall.prefab @@ -0,0 +1,274 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + } + ], + "_active": true, + "_components": [ + { + "__id__": 5 + }, + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 128, + "g": 128, + "b": 128, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 50, + 25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "0", + "_N$string": "0", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fe8lcc4B1Gyoyzbvq6k3jP", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": null, + "down_SpriteFrames": null, + "_id": "" + }, + { + "__type__": "cc.BoxCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": 50, + "y": 25 + }, + "_size": { + "__type__": "cc.Size", + "width": 100, + "height": 50 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/map/wall.prefab.meta b/assets/prefab/map/wall.prefab.meta new file mode 100644 index 0000000..bdada1f --- /dev/null +++ b/assets/prefab/map/wall.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "1c619601-a6ae-4c45-be2c-20b0d95e950f", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/pop.meta b/assets/prefab/pop.meta new file mode 100644 index 0000000..c4ab9c3 --- /dev/null +++ b/assets/prefab/pop.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "7ad68300-260e-4340-b535-0504ba952ead", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/pop/RankListItem.prefab b/assets/prefab/pop/RankListItem.prefab new file mode 100644 index 0000000..5c27219 --- /dev/null +++ b/assets/prefab/pop/RankListItem.prefab @@ -0,0 +1,1364 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "RankListItem", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 14 + }, + { + "__id__": 25 + }, + { + "__id__": 28 + }, + { + "__id__": 31 + }, + { + "__id__": 34 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6eyN1+nK5HT7svNqUsa2/+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "pic", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + }, + { + "__id__": 9 + } + ], + "_active": true, + "_components": [ + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -171.687, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "pic", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "08Vcf5jRBOhLOtnEzMUku6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 64, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f0DfDJ4PNDbb7lvykwzyBm", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 1, + "_segments": 60, + "_N$alphaThreshold": 0, + "_N$inverted": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "38W68aamJOhbnBDiSboSCF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 15 + }, + { + "__id__": 18 + }, + { + "__id__": 21 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -261.233, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "one", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "07jJ4rjvBM3K8UmWuJPTSW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "two", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cf00JqB1FL4J82EdUA2X13", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "three", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1beDtXl+VD86kzCArCfEPs", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d03AAa5MpCZY7eWAmnGlia", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rankLab", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + } + ], + "_prefab": { + "__id__": 27 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.68, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -259.131, + -2.054, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "5", + "_N$string": "5", + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "de4HHWkIhExrJq1+nHHMA6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "totalLab", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 29 + } + ], + "_prefab": { + "__id__": 30 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.68, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 260, + -2.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 28 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "4", + "_N$string": "4", + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 2, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "05c46heZhJV4sYMqYyxlB5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "nameLab", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 27.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -99.704, + -2.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 31 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "测试", + "_N$string": "测试", + "_fontSize": 25, + "_lineHeight": 25, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 1, + "_N$cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2an+mxcU5ApJz+ZlYlaw5G", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "label", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 28, + "height": 35.28 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 246.176, + -2.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "个", + "_N$string": "个", + "_fontSize": 28, + "_lineHeight": 28, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "78MlwwIH1CYrPsut4N5MBU", + "sync": false + }, + { + "__type__": "ca0f9k0oBVDbpQC+OMNTF3m", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/pop/RankListItem.prefab.meta b/assets/prefab/pop/RankListItem.prefab.meta new file mode 100644 index 0000000..af878a9 --- /dev/null +++ b/assets/prefab/pop/RankListItem.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "fced03b8-5472-40ad-be0f-810011a3d0ac", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/pop/ScrollView.prefab b/assets/prefab/pop/ScrollView.prefab new file mode 100644 index 0000000..20e9604 --- /dev/null +++ b/assets/prefab/pop/ScrollView.prefab @@ -0,0 +1,1941 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "ScrollView", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 9 + } + ], + "_active": true, + "_components": [ + { + "__id__": 7 + }, + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 174, + "g": 121, + "b": 121, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 964, + "height": 1300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 272.073, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "scrollBar", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 3 + } + ], + "_active": false, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 51 + }, + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 12, + "height": 820 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 340, + -410, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 5 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 30 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 3 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d7LA6B6L9KYrPYs9FOPGKR", + "sync": false + }, + { + "__type__": "cc.Scrollbar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_scrollView": { + "__id__": 7 + }, + "_touching": false, + "_opacity": 255, + "enableAutoHide": true, + "autoHideTime": 1, + "_N$handle": { + "__id__": 4 + }, + "_N$direction": 1, + "_id": "" + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "horizontal": false, + "vertical": true, + "inertia": true, + "brake": 0.75, + "elastic": true, + "bounceDuration": 0.23, + "scrollEvents": [], + "cancelInnerEvents": true, + "_N$content": { + "__id__": 8 + }, + "content": { + "__id__": 8 + }, + "_N$horizontalScrollBar": null, + "_N$verticalScrollBar": null, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "_parent": { + "__id__": 9 + }, + "_children": [ + { + "__id__": 12 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 50 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 680, + "height": 600 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 8 + } + ], + "_active": true, + "_components": [ + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 680, + "height": 700 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0, + "_N$inverted": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "01e0xqlUVFcY0MMajauQHo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "RankListItem", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [ + { + "__id__": 13 + }, + { + "__id__": 16 + }, + { + "__id__": 25 + }, + { + "__id__": 36 + }, + { + "__id__": 39 + }, + { + "__id__": 42 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 48 + } + ], + "_prefab": { + "__id__": 49 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -100, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 15 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "6eyN1+nK5HT7svNqUsa2/+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "pic", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [ + { + "__id__": 17 + }, + { + "__id__": 20 + } + ], + "_active": true, + "_components": [ + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -171.687, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "pic", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + } + ], + "_prefab": { + "__id__": 19 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "08Vcf5jRBOhLOtnEzMUku6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 21 + } + ], + "_prefab": { + "__id__": 22 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 64, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 20 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "f0DfDJ4PNDbb7lvykwzyBm", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 16 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 1, + "_segments": 60, + "_N$alphaThreshold": 0, + "_N$inverted": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "38W68aamJOhbnBDiSboSCF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [ + { + "__id__": 26 + }, + { + "__id__": 29 + }, + { + "__id__": 32 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 35 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -261.233, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "one", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "07jJ4rjvBM3K8UmWuJPTSW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "two", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 30 + } + ], + "_prefab": { + "__id__": 31 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "cf00JqB1FL4J82EdUA2X13", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "three", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 33 + } + ], + "_prefab": { + "__id__": 34 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 32 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "1beDtXl+VD86kzCArCfEPs", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "d03AAa5MpCZY7eWAmnGlia", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rankLab", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.68, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -259.131, + -2.054, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "5", + "_N$string": "5", + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "de4HHWkIhExrJq1+nHHMA6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "totalLab", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 40 + } + ], + "_prefab": { + "__id__": 41 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16.68, + "height": 37.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 260, + -2.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 39 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "4", + "_N$string": "4", + "_fontSize": 30, + "_lineHeight": 30, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 2, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "05c46heZhJV4sYMqYyxlB5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "nameLab", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 27.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -99.704, + -2.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "测试", + "_N$string": "测试", + "_fontSize": 25, + "_lineHeight": 25, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 1, + "_N$cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "2an+mxcU5ApJz+ZlYlaw5G", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "label", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 88, + "g": 69, + "b": 65, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 28, + "height": 35.28 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 246.176, + -2.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "个", + "_N$string": "个", + "_fontSize": 28, + "_lineHeight": 28, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 1, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "78MlwwIH1CYrPsut4N5MBU", + "sync": false + }, + { + "__type__": "ca0f9k0oBVDbpQC+OMNTF3m", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 12 + }, + "asset": { + "__uuid__": "fced03b8-5472-40ad-be0f-810011a3d0ac" + }, + "fileId": "7cSJyhfpFJu6cQACjuayTQ", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b21uNyrqhLbqirpS1MD+7t", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 0, + "_target": null, + "_alignFlags": 37, + "_left": 350.07654921020657, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 237, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5fe5dcaa-b513-4dc5-a166-573627b3a159" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7by3ovAnJLYoQqKmlhCACY", + "sync": false + }, + { + "__type__": "d5421HgLShFKIjj5f18m1mi", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "itemRender": null, + "type": 2, + "startAxis": 2, + "spaceX": 10, + "spaceY": 15, + "padding_top": 10, + "padding_buttom": 0, + "padding_left": 10, + "_padding": 0, + "padding_right": 10, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/pop/ScrollView.prefab.meta b/assets/prefab/pop/ScrollView.prefab.meta new file mode 100644 index 0000000..ffbc7fe --- /dev/null +++ b/assets/prefab/pop/ScrollView.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a6f24311-4ed3-40fb-a959-eab2047ab70d", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/pop/guide.prefab b/assets/prefab/pop/guide.prefab new file mode 100644 index 0000000..e04252c --- /dev/null +++ b/assets/prefab/pop/guide.prefab @@ -0,0 +1,141 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "guide", + "_objFlags": 0, + "_parent": null, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 174, + "height": 236 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.6, + 0.6, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b11b546b-c8c9-4809-a7c3-64155998227b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_defaultClip": { + "__uuid__": "edf3d60a-1823-4215-8a81-b4865596f370" + }, + "_clips": [ + { + "__uuid__": "edf3d60a-1823-4215-8a81-b4865596f370" + } + ], + "playOnLoad": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/pop/guide.prefab.meta b/assets/prefab/pop/guide.prefab.meta new file mode 100644 index 0000000..161deb7 --- /dev/null +++ b/assets/prefab/pop/guide.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a950046c-16be-4560-8a72-ce1ab3b2e684", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/pop/heathpop.prefab b/assets/prefab/pop/heathpop.prefab new file mode 100644 index 0000000..1b72c12 --- /dev/null +++ b/assets/prefab/pop/heathpop.prefab @@ -0,0 +1,3280 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "heathpop", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + } + ], + "_active": true, + "_components": [ + { + "__id__": 86 + }, + { + "__id__": 87 + } + ], + "_prefab": { + "__id__": 88 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6fQXoiv7VJAIO9blQ3UyQp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "heath", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 8 + }, + { + "__id__": 16 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 9 + } + ], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 15 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 38.815, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "closet", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 430.269, + 583.416, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 12 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 9 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "6624fhcuF5DF67gzSViWhRV", + "handler": "closePop", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19FWz3/yVPN7tfpTgH7mTu", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bf006254-d63b-49e7-9bb2-26cd7328e3e8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "26Cr02Ep1Ekp766OyFJCxz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Health", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 17 + }, + { + "__id__": 20 + }, + { + "__id__": 26 + }, + { + "__id__": 31 + }, + { + "__id__": 37 + }, + { + "__id__": 42 + }, + { + "__id__": 67 + }, + { + "__id__": 70 + }, + { + "__id__": 78 + }, + { + "__id__": 81 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.935, + -54.722, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + } + ], + "_prefab": { + "__id__": 19 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 127, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 757.717, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0e2f030a-700f-43c2-b65c-3060fcbe0583" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b6DmFodTZLhqWzKZnDrHjO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "yuandi", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [ + { + "__id__": 21 + } + ], + "_active": true, + "_components": [ + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 25 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 516 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 182.291, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 20 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e50zJ8pOBHkrxeM8Gsb9Xu", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 20 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "59873a8f-b079-4344-a77a-a72c76753cb0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "25MALrukVN4YsVWcgitDGW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "boom_show", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [ + { + "__id__": 27 + } + ], + "_active": true, + "_components": [ + { + "__id__": 29 + } + ], + "_prefab": { + "__id__": 30 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 285, + "height": 252 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 176.394, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "heathSHU", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 36.617, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "088fRk6iVHJZuu6cauH+Od", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fff011d4-0e20-46a4-b608-300b4e1af5e7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5h1WeyAVNDbd8HGyanjah", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "homeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 32 + }, + { + "__id__": 33 + }, + { + "__id__": 34 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 434.98, + 677.475, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 31 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "6624fhcuF5DF67gzSViWhRV", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 31 + }, + "_enabled": true, + "heath": null, + "heatht": null, + "switchNode": null, + "timeNode": null, + "switchButtons": [], + "coin": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 31 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 35 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "6624fhcuF5DF67gzSViWhRV", + "handler": "closePop", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a4RHVyP/RFI4zTXpV98jFH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "timeBtn", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 41 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 520, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -289.197, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7bdeeea3-216c-41e3-bc6c-69b497207f84" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 40 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 37 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "6624fhcuF5DF67gzSViWhRV", + "handler": "startGame", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5afquMoJpB3ZxZXtAToC7w", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "anniu", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [ + { + "__id__": 43 + }, + { + "__id__": 46 + }, + { + "__id__": 60 + } + ], + "_active": true, + "_components": [ + { + "__id__": 63 + }, + { + "__id__": 64 + } + ], + "_prefab": { + "__id__": 66 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 636, + "height": 174 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -298.516, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "coins", + "_objFlags": 0, + "_parent": { + "__id__": 42 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 44 + } + ], + "_prefab": { + "__id__": 45 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 88.169, + 8.335, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 43 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b94c323b-3d26-4684-ba64-0f00a13438d2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "afzvTtF5pIL5ZzNbcQeSHj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "coinh", + "_objFlags": 0, + "_parent": { + "__id__": 42 + }, + "_children": [ + { + "__id__": 47 + }, + { + "__id__": 50 + }, + { + "__id__": 53 + }, + { + "__id__": 56 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 183.311, + 5.847, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "button_1", + "_objFlags": 0, + "_parent": { + "__id__": 46 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 48 + } + ], + "_prefab": { + "__id__": 49 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 23, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -31.5, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 47 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd2ff085-dc9a-48e6-b246-3b75ea05d7cd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77ECny925Nx5vYOEpuytC1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "button_0", + "_objFlags": 0, + "_parent": { + "__id__": 46 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.928, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "25sagprcVDXaYiWAscGrwP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "button_0", + "_objFlags": 0, + "_parent": { + "__id__": 46 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 34.072, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "01nuSEZVxJ7YxiPvN+PCPe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "button_0", + "_objFlags": 0, + "_parent": { + "__id__": 46 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 57 + } + ], + "_prefab": { + "__id__": 58 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 37, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 71.072, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 56 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f07349a7-72bf-41dd-a345-4d4fd13878bf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "03QipGZupClYfoxuQX7ugE", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d4mSEJPM1LEaJdhi6ngMjw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tilibuman", + "_objFlags": 0, + "_parent": { + "__id__": 42 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 61 + } + ], + "_prefab": { + "__id__": 62 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 290, + "height": 73 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -133.104, + 10.002, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 60 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5a5d61c4-dfe8-4b1d-bf90-e28dc6d6386b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9f3fx8KkNJ6aP3FFN8TpPd", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1fd745f8-009d-4a16-aa79-68e518664e6e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 65 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 42 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "6624fhcuF5DF67gzSViWhRV", + "handler": "buyHeath", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fdVKqiNNBKhJogo4mD8C3L", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tiliyiman", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 68 + } + ], + "_prefab": { + "__id__": 69 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 233, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 535.669, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 67 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "43fca32a-925b-4ddb-9f96-fa5750d60cfb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f0qD/oaRxLrKDizULL+b++", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "houhuifu", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [ + { + "__id__": 71 + }, + { + "__id__": 74 + } + ], + "_active": true, + "_components": [ + { + "__id__": 76 + } + ], + "_prefab": { + "__id__": 77 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 289, + "height": 54 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 140.313, + 530, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "tili_x", + "_objFlags": 0, + "_parent": { + "__id__": 70 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 16, + "height": 32 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -308.997, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c338bce2-4885-458f-b504-08498d005817" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "31rDqp5cdMQrV4C+H4tw1I", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "huifuyidian", + "_objFlags": 0, + "_parent": { + "__id__": 70 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 75 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -400.572, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c6yneTYYdKSaufVDY55k33", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 70 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6db6f55d-8ec0-487d-8780-38c8f1cc40da" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f14zLuGPlDpIH/FDRhYY4O", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "result_title4", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 79 + } + ], + "_prefab": { + "__id__": 80 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 233, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 541.599, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "43fca32a-925b-4ddb-9f96-fa5750d60cfb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d1RaURgj1A+qzbQqHzFMG+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tishi", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 82 + } + ], + "_prefab": { + "__id__": 83 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 777, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 4.935, + -487.436, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 81 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0e826121-13ce-43e5-896b-191e4a6660c2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "daVmNMKSlG8LIPsRWqGDmp", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1aTj1EYdxFHLQiTk3x6qlU", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fePerO9d9HtoUJyn8l8V3L", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "" + }, + { + "__type__": "6624fhcuF5DF67gzSViWhRV", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "heath": { + "__id__": 1 + }, + "heatht": { + "__id__": 27 + }, + "switchNode": [ + { + "__id__": 67 + }, + { + "__id__": 70 + } + ], + "timeNode": { + "__id__": 74 + }, + "switchButtons": [ + { + "__id__": 37 + }, + { + "__id__": 42 + } + ], + "coin": { + "__id__": 46 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/pop/heathpop.prefab.meta b/assets/prefab/pop/heathpop.prefab.meta new file mode 100644 index 0000000..3ebc8f2 --- /dev/null +++ b/assets/prefab/pop/heathpop.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "1cf82c85-a0c6-42f7-8a9d-e7ed164806d2", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/pop/jiesuan.prefab b/assets/prefab/pop/jiesuan.prefab new file mode 100644 index 0000000..5b28d9d --- /dev/null +++ b/assets/prefab/pop/jiesuan.prefab @@ -0,0 +1,2989 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "jiesuan", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 6 + }, + { + "__id__": 10 + }, + { + "__id__": 14 + }, + { + "__id__": 18 + }, + { + "__id__": 22 + }, + { + "__id__": 26 + }, + { + "__id__": 34 + }, + { + "__id__": 38 + }, + { + "__id__": 42 + }, + { + "__id__": 46 + }, + { + "__id__": 50 + }, + { + "__id__": 54 + }, + { + "__id__": 58 + }, + { + "__id__": 62 + }, + { + "__id__": 66 + }, + { + "__id__": 70 + }, + { + "__id__": 74 + }, + { + "__id__": 78 + }, + { + "__id__": 82 + }, + { + "__id__": 86 + } + ], + "_active": true, + "_components": [ + { + "__id__": 90 + } + ], + "_prefab": { + "__id__": 91 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "light", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 5 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 1388, + "height": 1366 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5c9lD3/INHDJ3aljpiBX9x", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tiaofu", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + }, + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 773, + "height": 180 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e4QYRdQ3pE6ZEQ+oCJYQ9E", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "gongxi", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 378, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ffyDoY3iBKhorYADs//aMO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "02", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 15 + }, + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 97, + "height": 88 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bflCPMTl1LJJBqrSB1G2nz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btn_fanhui", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 19 + }, + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 434, + "height": 143 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "06OpghmtlB7LkHS9SYHgeU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btn_xiayiguan", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 23 + }, + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 25 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 635, + "height": 173 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2cPe8iaIVLkapyp/rceF0r", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wenzibg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 27 + } + ], + "_active": true, + "_components": [ + { + "__id__": 31 + }, + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 28 + }, + { + "__id__": 29 + } + ], + "_prefab": { + "__id__": 30 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 540, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_string": "", + "_N$string": "", + "_fontSize": 60, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 2, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "da4G+mngZJJada0oxwew+V", + "sync": false + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 801, + "height": 118 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8fkqZaa1BBOKio6vEcpjQd", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "pian", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 35 + }, + { + "__id__": 36 + } + ], + "_prefab": { + "__id__": 37 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 510, + "height": 510 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "027igwPnRLhbxw+VhYj0+A", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 39 + }, + { + "__id__": 40 + } + ], + "_prefab": { + "__id__": 41 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3jWqvjINPVYEfsv6MW8mC", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-001", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 43 + }, + { + "__id__": 44 + } + ], + "_prefab": { + "__id__": 45 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "32iBpO6ChEy5VzwQVBkisp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-002", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 47 + }, + { + "__id__": 48 + } + ], + "_prefab": { + "__id__": 49 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 46 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 46 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0bx2Xh/3hFBJ2gh1Chler3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-003", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 51 + }, + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dcNR2rHAdOCKlo50n/o60t", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-004", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 55 + }, + { + "__id__": 56 + } + ], + "_prefab": { + "__id__": 57 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f3jPNCNYVP8rHq1GqKdBAV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-005", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 59 + }, + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 61 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 58 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 58 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "92SZCDRh5MspdudCi/GbH5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-006", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 63 + }, + { + "__id__": 64 + } + ], + "_prefab": { + "__id__": 65 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b1QMdfuyJMbapZtJ9J6xJk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-007", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 67 + }, + { + "__id__": 68 + } + ], + "_prefab": { + "__id__": 69 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 66 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 66 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8gNfhkZ9AFrCy7CJ6Hbri", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-008", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 71 + }, + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 70 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 70 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "268otLBnVNKr+N6rpejK5z", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star-009", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 75 + }, + { + "__id__": 76 + } + ], + "_prefab": { + "__id__": 77 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d9c5rhrmxJULft7X3i/MKD", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "gold", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 79 + }, + { + "__id__": 80 + } + ], + "_prefab": { + "__id__": 81 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 297, + "height": 333 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "26CLCT1XlEgIBU8IlLlFDY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "001", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + }, + { + "__id__": 84 + } + ], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 195, + "height": 300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "69CCKmF9pA76B5FoKW4EG8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "15", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 87 + }, + { + "__id__": 88 + } + ], + "_prefab": { + "__id__": 89 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "_contentSize": { + "__type__": "cc.Size", + "width": 258, + "height": 63 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9Vy7txA1D4aN1vEFe7u44", + "sync": false + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_defaultClip": null, + "_clips": [ + null + ], + "playOnLoad": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/pop/jiesuan.prefab.meta b/assets/prefab/pop/jiesuan.prefab.meta new file mode 100644 index 0000000..e9371e7 --- /dev/null +++ b/assets/prefab/pop/jiesuan.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "25091af6-ab2f-4963-8bf1-940e7226d033", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/pop/rank.prefab b/assets/prefab/pop/rank.prefab new file mode 100644 index 0000000..eaf9cbb --- /dev/null +++ b/assets/prefab/pop/rank.prefab @@ -0,0 +1,1339 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 18 + } + ], + "_active": true, + "_components": [ + { + "__id__": 35 + }, + { + "__id__": 36 + } + ], + "_prefab": { + "__id__": 37 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "40/sLm3LNOZYY+yuxPZBtl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 8 + }, + { + "__id__": 13 + } + ], + "_active": true, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1377 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -32.098, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "closet", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 66 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 424.263, + 627.263, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8e755f4b-6c32-4acd-95f2-e48afcf0c3ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 11 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 8 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "83533ha7L1Hn4Ep+rvR3z5k", + "handler": "closeRanks", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a4QhHkovZPeY62WjMK7yYo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tanchaungrank2", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 15 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 858, + "height": 1150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -46.316, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f91b115-e966-4271-84ff-dc7913956e97" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "46fcd116-bb2b-4442-9109-92599d6b0b08" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "15wspCW85D9YUEN3XmKEzj", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1d933469-4b62-4266-9282-a6953cd73bb4" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "46fcd116-bb2b-4442-9109-92599d6b0b08" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eaa0mk4NlFb7Gh26FheJi0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rank", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 19 + }, + { + "__id__": 25 + }, + { + "__id__": 28 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 34 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 87.992, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "tanchuang3", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 20 + } + ], + "_active": true, + "_components": [ + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 570.671, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 19 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 21 + } + ], + "_prefab": { + "__id__": 22 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 301, + "height": 75 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0.377, + 6.263, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 20 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b3a763ca-9e88-4c98-a14e-44b11bb84a74" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "46fcd116-bb2b-4442-9109-92599d6b0b08" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "14sCA+o+ZFyZBT+PG7y2g2", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f58d9b09-7fbf-4a3c-ba01-e1704a88e68d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "46fcd116-bb2b-4442-9109-92599d6b0b08" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6cKRA59Z5E8Lx3By9VzCfo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "SubContextView", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + } + ], + "_prefab": { + "__id__": 27 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 850, + "height": 1145 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 4.063, + -172.024, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.SubContextView", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_firstlyEnabled": true, + "_fps": 60, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "15ZXArgPpNV5Awn4tdAdX2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btnsq", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 29 + } + ], + "_active": false, + "_components": [ + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -617.799, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "sq", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 30 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 299, + "height": 76 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 8.749, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4bgAhjZLRAAZphuFz4qOQK", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 28 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 32 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "83533ha7L1Hn4Ep+rvR3z5k", + "handler": "showRanks", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9e7W0n/rNPu7/0+21bNCQn", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0dVS0JHO5IHbZoIR0gIwcZ", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "" + }, + { + "__type__": "83533ha7L1Hn4Ep+rvR3z5k", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "subContextView": { + "__id__": 25 + }, + "closeButton": { + "__id__": 1 + }, + "btnRanks": { + "__id__": 1 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/pop/rank.prefab.meta b/assets/prefab/pop/rank.prefab.meta new file mode 100644 index 0000000..3bdd8e0 --- /dev/null +++ b/assets/prefab/pop/rank.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "87c131ed-1e2f-4cf8-9fe0-0d7d49f73c5b", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop.meta b/assets/prefab/prop.meta new file mode 100644 index 0000000..d2cda66 --- /dev/null +++ b/assets/prefab/prop.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "c390fa89-6858-4fdd-a0df-42f78cb37275", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/adhesive.prefab b/assets/prefab/prop/adhesive.prefab new file mode 100644 index 0000000..2f02f02 --- /dev/null +++ b/assets/prefab/prop/adhesive.prefab @@ -0,0 +1,338 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "adhesive", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "heng", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 52, + "height": 50.44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 68, + -7, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 2, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "8b100987-aed3-4feb-ba02-557888c6784e" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b24mIe61RFn4TAa02SOcyF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shu", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 795, + "height": 728 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 60, + 0, + 0, + 0, + 0, + 1, + 0.95, + 1, + 0.95 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 2, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "e47e7785-a214-441f-8ecb-dfbec124ab29" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8aiGONPtJINpIMCylU5PPm", + "sync": false + }, + { + "__type__": "5fc5bz1aV5PKIBJQh99jpm2", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/adhesive.prefab.meta b/assets/prefab/prop/adhesive.prefab.meta new file mode 100644 index 0000000..ae19c83 --- /dev/null +++ b/assets/prefab/prop/adhesive.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "25bab75a-d0a5-42a2-b0d4-f1aca4ac8d80", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/bingkuai.prefab b/assets/prefab/prop/bingkuai.prefab new file mode 100644 index 0000000..c64e26d --- /dev/null +++ b/assets/prefab/prop/bingkuai.prefab @@ -0,0 +1,129 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "bingkuai", + "_objFlags": 0, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + } + ], + "_prefab": { + "__id__": 3 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "b98ab73e-af9c-47fa-862c-144da3071249" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/bingkuai.prefab.meta b/assets/prefab/prop/bingkuai.prefab.meta new file mode 100644 index 0000000..050c7b3 --- /dev/null +++ b/assets/prefab/prop/bingkuai.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "f8f19cf0-280d-4872-a743-a54314eec6a8", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/boom.prefab b/assets/prefab/prop/boom.prefab new file mode 100644 index 0000000..30e987a --- /dev/null +++ b/assets/prefab/prop/boom.prefab @@ -0,0 +1,437 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "boom", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 95 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.33 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -64.62538, + 91.92769, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 0.76923 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 95 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0.614, + 15.971, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e22aadda-4f7e-403a-a1e6-d5374fc2862a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4ahWLpW2tD8LfIbT5i2bbo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 6 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.993, + -3.378, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "61sOm1ZBJDAqXHwke7rNX0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "zhandan", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 95 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 4.3, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "eff", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "eff", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "faeaa6a2-5e23-43cd-9acb-baa4eba7e32d" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "efXgQTdihOoqV/iSnYz7ep", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "3c749iEEwlAMKPyjGEkwU2l", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/boom.prefab.meta b/assets/prefab/prop/boom.prefab.meta new file mode 100644 index 0000000..304438f --- /dev/null +++ b/assets/prefab/prop/boom.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "0cf46635-8a58-4196-b24e-d075875778d0", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/floor.prefab b/assets/prefab/prop/floor.prefab new file mode 100644 index 0000000..ceb0245 --- /dev/null +++ b/assets/prefab/prop/floor.prefab @@ -0,0 +1,439 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "floor", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48vFumJApBjb/xUEZIhVH6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 6 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -13.548, + 2.073, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "afr7mnXGdMXZMpTDxTmfms", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bingkuai", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "b98ab73e-af9c-47fa-862c-144da3071249" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b8wpbx8wBCiIPB7kPP1L7Z", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "13fc37b7-475e-4be5-8df7-ca6005a1ef9f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "88072XvRMJOKKuTgaXi6kKl", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "floor": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "ice": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/floor.prefab.meta b/assets/prefab/prop/floor.prefab.meta new file mode 100644 index 0000000..4f9adb0 --- /dev/null +++ b/assets/prefab/prop/floor.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "03145c50-d467-4d06-a2fc-83f38137cb92", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/freeze.prefab b/assets/prefab/prop/freeze.prefab new file mode 100644 index 0000000..3b45127 --- /dev/null +++ b/assets/prefab/prop/freeze.prefab @@ -0,0 +1,437 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "freeze", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48vFumJApBjb/xUEZIhVH6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 6 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "afr7mnXGdMXZMpTDxTmfms", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bingkuai", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "b98ab73e-af9c-47fa-862c-144da3071249" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b8wpbx8wBCiIPB7kPP1L7Z", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "ad8cbbzCohCR5uifssdRTf+", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "freeze": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "ice": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/freeze.prefab.meta b/assets/prefab/prop/freeze.prefab.meta new file mode 100644 index 0000000..5f2125f --- /dev/null +++ b/assets/prefab/prop/freeze.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "5ed13d95-5b93-4407-b770-0dedeb674b0f", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/heng.prefab b/assets/prefab/prop/heng.prefab new file mode 100644 index 0000000..84c0d47 --- /dev/null +++ b/assets/prefab/prop/heng.prefab @@ -0,0 +1,420 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "heng", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 8 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 91, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "heng1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 91, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "25052f88-1450-4ea5-8652-842ebb5268c8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "20YQ9E2cZEWJslGfGkPO1X", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "heng2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 198, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e6024cda-58f4-4146-b170-474f804aea43" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "44a0G+Fm1InZDpsC7YToPb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "heng3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 301, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8ed7b6a1-2efb-4120-b7bc-38f1e39e16df" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d1D0wxjOpJV6YYcEzJxhRF", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/heng.prefab.meta b/assets/prefab/prop/heng.prefab.meta new file mode 100644 index 0000000..14e6b05 --- /dev/null +++ b/assets/prefab/prop/heng.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a99d5bb3-6216-4c6e-bfb6-f793289870df", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/key.prefab b/assets/prefab/prop/key.prefab new file mode 100644 index 0000000..b742015 --- /dev/null +++ b/assets/prefab/prop/key.prefab @@ -0,0 +1,134 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "key", + "_objFlags": 0, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 52, + "height": 92 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.45 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 565.664, + 1058.751, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7504a944-a1b1-4346-81c0-a5fc0157a487" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "92465qnUTJDw5STq1t7oelo", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/key.prefab.meta b/assets/prefab/prop/key.prefab.meta new file mode 100644 index 0000000..d9c109e --- /dev/null +++ b/assets/prefab/prop/key.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a496b103-90e1-421c-94c5-500167b26227", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/lock.prefab b/assets/prefab/prop/lock.prefab new file mode 100644 index 0000000..670c2bf --- /dev/null +++ b/assets/prefab/prop/lock.prefab @@ -0,0 +1,209 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + } + ], + "_active": true, + "_components": [ + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 66, + "height": 84 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.45 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 374, + 943, + 0, + 0, + 0, + 0, + 1, + 1.2, + 1.2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 3 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.914, + -9.214, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48VT9XUVVAfKNIh+R4ESes", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a624291b-1769-4811-afa6-bc25f8540ac1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "41cb8ugLSBH/5aNhnsJ5lX7", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/lock.prefab.meta b/assets/prefab/prop/lock.prefab.meta new file mode 100644 index 0000000..7c5a557 --- /dev/null +++ b/assets/prefab/prop/lock.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "725f6dd5-18b0-44f9-997a-d89b23ac1fc0", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/risefall.prefab b/assets/prefab/prop/risefall.prefab new file mode 100644 index 0000000..216e8f0 --- /dev/null +++ b/assets/prefab/prop/risefall.prefab @@ -0,0 +1,108 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "risefall", + "_objFlags": 0, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + } + ], + "_prefab": { + "__id__": 3 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.BoxCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_size": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/risefall.prefab.meta b/assets/prefab/prop/risefall.prefab.meta new file mode 100644 index 0000000..0415100 --- /dev/null +++ b/assets/prefab/prop/risefall.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "2ad95b5e-51fe-4864-ad40-6743b8fac9d5", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/shu.prefab b/assets/prefab/prop/shu.prefab new file mode 100644 index 0000000..070ea33 --- /dev/null +++ b/assets/prefab/prop/shu.prefab @@ -0,0 +1,420 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "shu", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 8 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 57, + "height": 94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "shu1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 57, + "height": 94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "36e51cf6-94fa-4e86-bae5-5e19058de1ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "59tN1QHa1Fc6QIGQiU8QIh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shu2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6f55949e-0a8f-4721-be4c-48736c4f3990" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b75DfoBIJD46AarQfq+ve7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shu3", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 303 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8b14043e-d677-4bf9-af96-e81e2bf7b1e4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e78Ln5QyZEJoYd/OXfYl1c", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/shu.prefab.meta b/assets/prefab/prop/shu.prefab.meta new file mode 100644 index 0000000..ff428c3 --- /dev/null +++ b/assets/prefab/prop/shu.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "b5a00886-b32d-4185-a4a6-fd9f7a8dbe90", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/prefab/prop/star.prefab b/assets/prefab/prop/star.prefab new file mode 100644 index 0000000..8fc78e1 --- /dev/null +++ b/assets/prefab/prop/star.prefab @@ -0,0 +1,2252 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "star", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 8 + }, + { + "__id__": 17 + }, + { + "__id__": 29 + }, + { + "__id__": 35 + }, + { + "__id__": 44 + } + ], + "_active": true, + "_components": [ + { + "__id__": 56 + }, + { + "__id__": 57 + } + ], + "_prefab": { + "__id__": 58 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 91, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 465, + 1040, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "one", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 3 + } + ], + "_active": false, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 105, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -46.883, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 5 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 45, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 3 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c1lTKU42xGZ4sR4ImfNCSE", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f1b2143e-6122-418b-a491-8c5df16ef7cf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8fyKDAXjNKg6M90WRHjtr6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "two", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 9 + }, + { + "__id__": 12 + } + ], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 212, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -48.308, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 50, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "85m2l2GidO/qCT4+/Jrz5J", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 8 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 170, + 19, + 0, + 0, + 0, + 1, + 6.123233995736766e-17, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 180 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48XwVPSB9OWrpRJRxKHvJo", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e1075bf4-4304-465a-88db-aa35bf627095" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bcu5L2hXdGnL4+ByP7r8Ci", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "three", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 18 + }, + { + "__id__": 21 + }, + { + "__id__": 24 + } + ], + "_active": false, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 326, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -49.867, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7721iq2bVH2bCKBCPC4Ky+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 165, + 18, + 0, + 0, + 0, + 1, + 6.123233995736766e-17, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 180 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ea31jCe9RPXJA9HfpEBd+u", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 25 + } + ], + "_prefab": { + "__id__": 26 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 275, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "00eRhjcrVH9YlCx2s1ozat", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fe526559-1d65-4ec9-b785-e7aa496aac54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eefALyi8RMJZjLfaaOCMSx", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "four", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 30 + } + ], + "_active": false, + "_components": [ + { + "__id__": 33 + } + ], + "_prefab": { + "__id__": 34 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 35, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -20, + -35, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 30.269, + 40, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 30 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "56NOO1YmBIJ5HtLIvhMZfN", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0c44142d-584c-4d10-b31b-554d018f2ada" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "78HmdMc75CKZzTHKheCNfe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "five", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 36 + }, + { + "__id__": 39 + } + ], + "_active": false, + "_components": [ + { + "__id__": 42 + } + ], + "_prefab": { + "__id__": 43 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 39, + "height": 210 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -20, + -35, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 35 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 30.269, + 40, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7mGxcUKdHoY137ov9AJ0h", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 35 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 40 + } + ], + "_prefab": { + "__id__": 41 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 18.443, + 130, + 0, + 0, + 0, + 0.7071067811865476, + -0.7071067811865475, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 270 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 39 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "13SoDbiLlMvIRHetdj+p8W", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 35 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3d3ca5d-8d47-4c28-8cdc-0c04a3da2afe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60yPQUK2tGyJzEYky49U44", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "six", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 45 + }, + { + "__id__": 48 + }, + { + "__id__": 51 + } + ], + "_active": false, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 330 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -20, + -35, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 44 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 30.269, + 40, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4e3RMZCKhOP5LtdKunmOfX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 44 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 49 + } + ], + "_prefab": { + "__id__": 50 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 12.578, + 141.843, + 0, + 0, + 0, + 0.7071067811865476, + -0.7071067811865475, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 270 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 48 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f3FgnhgZpO7Y7AGRv02SGh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "taopao", + "_objFlags": 0, + "_parent": { + "__id__": 44 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432, + "height": 768 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 30.269, + 240, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "taopao1", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "90e4657e-f478-47b1-91df-c5ac8b836069" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0dd6jDbfBD97mggn1CRbz5", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "faeb8c0f-da7b-4538-9e6c-47dbaac5429b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7bjz9y6W5JwayNXP3aYYqt", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "d773dbWW6tAz6F+Z0L3IXUx", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "star_SpriteFrame": { + "__uuid__": "7c245d33-7161-42a1-a713-d944b39d83fa" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/prefab/prop/star.prefab.meta b/assets/prefab/prop/star.prefab.meta new file mode 100644 index 0000000..a3e9a02 --- /dev/null +++ b/assets/prefab/prop/star.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "bf502854-8e31-40c1-9d27-ac480682b4c4", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res.meta b/assets/res.meta new file mode 100644 index 0000000..24260f5 --- /dev/null +++ b/assets/res.meta @@ -0,0 +1,25 @@ +{ + "ver": "1.1.3", + "uuid": "2880dc26-5b38-48bd-baba-daaec97499cb", + "importer": "folder", + "isBundle": false, + "bundleName": "res", + "priority": 7, + "compressionType": { + "wechatgame": "subpackage", + "web-mobile": "default" + }, + "optimizeHotUpdate": { + "wechatgame": false, + "web-mobile": false + }, + "inlineSpriteFrames": { + "wechatgame": false, + "web-mobile": true + }, + "isRemoteBundle": { + "wechatgame": false, + "web-mobile": false + }, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res/effect.meta b/assets/res/effect.meta new file mode 100644 index 0000000..4250477 --- /dev/null +++ b/assets/res/effect.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "c8f0a088-7a76-4057-b546-8e50c5b105c8", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res/effect/New Material.mtl b/assets/res/effect/New Material.mtl new file mode 100644 index 0000000..dfa75fc --- /dev/null +++ b/assets/res/effect/New Material.mtl @@ -0,0 +1,16 @@ +{ + "__type__": "cc.Material", + "_name": "builtin-2d-sprite", + "_objFlags": 0, + "_native": "", + "_effectAsset": { + "__uuid__": "2874f8dd-416c-4440-81b7-555975426e93" + }, + "_techniqueData": { + "0": { + "defines": { + "USE_TEXTURE": true + } + } + } +} \ No newline at end of file diff --git a/assets/res/effect/New Material.mtl.meta b/assets/res/effect/New Material.mtl.meta new file mode 100644 index 0000000..1d428a3 --- /dev/null +++ b/assets/res/effect/New Material.mtl.meta @@ -0,0 +1,7 @@ +{ + "ver": "1.0.5", + "uuid": "7ee58a72-2111-450d-b4de-496f4b3ad9a7", + "importer": "material", + "dataAsSubAsset": null, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res/effect/New Material_1.mtl b/assets/res/effect/New Material_1.mtl new file mode 100644 index 0000000..dfa75fc --- /dev/null +++ b/assets/res/effect/New Material_1.mtl @@ -0,0 +1,16 @@ +{ + "__type__": "cc.Material", + "_name": "builtin-2d-sprite", + "_objFlags": 0, + "_native": "", + "_effectAsset": { + "__uuid__": "2874f8dd-416c-4440-81b7-555975426e93" + }, + "_techniqueData": { + "0": { + "defines": { + "USE_TEXTURE": true + } + } + } +} \ No newline at end of file diff --git a/assets/res/effect/New Material_1.mtl.meta b/assets/res/effect/New Material_1.mtl.meta new file mode 100644 index 0000000..0a76735 --- /dev/null +++ b/assets/res/effect/New Material_1.mtl.meta @@ -0,0 +1,7 @@ +{ + "ver": "1.0.5", + "uuid": "ed1b749f-7091-4610-a494-425bb9686d4f", + "importer": "material", + "dataAsSubAsset": null, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res/spine.meta b/assets/res/spine.meta new file mode 100644 index 0000000..fb9c7e4 --- /dev/null +++ b/assets/res/spine.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "340590d7-f501-4626-8c74-a8246476d27e", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res/spine/star.png b/assets/res/spine/star.png new file mode 100644 index 0000000..8bbecb2 Binary files /dev/null and b/assets/res/spine/star.png differ diff --git a/assets/res/spine/star.png.meta b/assets/res/spine/star.png.meta new file mode 100644 index 0000000..b506558 --- /dev/null +++ b/assets/res/spine/star.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "c83397a1-d62d-4546-9599-4561e767d33f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 50, + "height": 47, + "platformSettings": {}, + "subMetas": { + "star": { + "ver": "1.0.6", + "uuid": "63bfa85e-9ed9-45e0-b624-be2798db9258", + "importer": "sprite-frame", + "rawTextureUuid": "c83397a1-d62d-4546-9599-4561e767d33f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 50, + "height": 47, + "rawWidth": 50, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/res/spine/star_1.png b/assets/res/spine/star_1.png new file mode 100644 index 0000000..8bbecb2 Binary files /dev/null and b/assets/res/spine/star_1.png differ diff --git a/assets/res/spine/star_1.png.meta b/assets/res/spine/star_1.png.meta new file mode 100644 index 0000000..b85cc52 --- /dev/null +++ b/assets/res/spine/star_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a43f913e-6184-42e9-bb9e-3deb36d8bcbc", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 50, + "height": 47, + "platformSettings": {}, + "subMetas": { + "star_1": { + "ver": "1.0.6", + "uuid": "8d05b2f0-9830-470b-a067-eda0d6d5efc7", + "importer": "sprite-frame", + "rawTextureUuid": "a43f913e-6184-42e9-bb9e-3deb36d8bcbc", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 50, + "height": 47, + "rawWidth": 50, + "rawHeight": 47, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/res/spine/破碎.plist b/assets/res/spine/破碎.plist new file mode 100644 index 0000000..08b846f --- /dev/null +++ b/assets/res/spine/破碎.plist @@ -0,0 +1,103 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.440000 +startParticleSize +38.000000 +startParticleSizeVariance +0.000000 +finishParticleSize +43.000000 +finishParticleSizeVariance +0.000000 +gravityx +0.000000 +gravityy +555.000000 +maxParticles +80.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +0.100000 +particleLifespanVariance +1.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +0.000000 +rotationStart +0.000000 +rotationStartVariance +72.000000 +sourcePositionVariancex +-121.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +184.000000 +sourcePositiony +195.000000 +speed +0.000000 +speedVariance +203.949997 +startColorAlpha +1.000000 +startColorBlue +0.137255 +startColorGreen +0.439216 +startColorRed +0.784314 +startColorVarianceAlpha +0.494118 +startColorVarianceBlue +0.200000 +startColorVarianceGreen +0.200000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +0.000000 +finishColorGreen +0.000000 +finishColorRed +0.156863 +finishColorVarianceAlpha +1.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +0.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +0.000000 +blendFuncSource +770 +blendFuncDestination +1 +emitterType +0 +textureFileName + diff --git a/assets/res/spine/破碎.plist.meta b/assets/res/spine/破碎.plist.meta new file mode 100644 index 0000000..dfb67c0 --- /dev/null +++ b/assets/res/spine/破碎.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "34fa006b-b745-41c9-8260-44a60254952b", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res/spine/破碎_1.plist b/assets/res/spine/破碎_1.plist new file mode 100644 index 0000000..08b846f --- /dev/null +++ b/assets/res/spine/破碎_1.plist @@ -0,0 +1,103 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.440000 +startParticleSize +38.000000 +startParticleSizeVariance +0.000000 +finishParticleSize +43.000000 +finishParticleSizeVariance +0.000000 +gravityx +0.000000 +gravityy +555.000000 +maxParticles +80.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +0.100000 +particleLifespanVariance +1.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +0.000000 +rotationStart +0.000000 +rotationStartVariance +72.000000 +sourcePositionVariancex +-121.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +184.000000 +sourcePositiony +195.000000 +speed +0.000000 +speedVariance +203.949997 +startColorAlpha +1.000000 +startColorBlue +0.137255 +startColorGreen +0.439216 +startColorRed +0.784314 +startColorVarianceAlpha +0.494118 +startColorVarianceBlue +0.200000 +startColorVarianceGreen +0.200000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +0.000000 +finishColorGreen +0.000000 +finishColorRed +0.156863 +finishColorVarianceAlpha +1.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +0.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +0.000000 +blendFuncSource +770 +blendFuncDestination +1 +emitterType +0 +textureFileName + diff --git a/assets/res/spine/破碎_1.plist.meta b/assets/res/spine/破碎_1.plist.meta new file mode 100644 index 0000000..073d3b6 --- /dev/null +++ b/assets/res/spine/破碎_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "e5b945cf-640c-4249-87eb-0c07aead8b86", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res/texture_Block.meta b/assets/res/texture_Block.meta new file mode 100644 index 0000000..7a52c9e --- /dev/null +++ b/assets/res/texture_Block.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "2ef5a7c6-04f5-418a-85b6-bf39220cd512", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/res/texture_Block/door.plist b/assets/res/texture_Block/door.plist new file mode 100644 index 0000000..26ca369 --- /dev/null +++ b/assets/res/texture_Block/door.plist @@ -0,0 +1,1226 @@ + + + + + frames + + 10color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{801,900},{138,69}} + textureRotated + + + 10color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{840,467},{258,69}} + textureRotated + + + 10color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{889,206},{378,69}} + textureRotated + + + 10color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{1092,816},{61,146}} + textureRotated + + + 10color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,266} + spriteSourceSize + {61,266} + textureRect + {{388,537},{61,266}} + textureRotated + + + 10color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,386} + spriteSourceSize + {61,386} + textureRect + {{889,277},{61,386}} + textureRotated + + + 1color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{989,538},{138,69}} + textureRotated + + + 1color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{127,538},{258,69}} + textureRotated + + + 1color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{518,64},{378,69}} + textureRotated + + + 1color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{593,758},{61,146}} + textureRotated + + + 1color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{889,404},{61,267}} + textureRotated + + + 1color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{1,390},{61,387}} + textureRotated + + + 2color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{795,618},{138,69}} + textureRotated + + + 2color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{127,609},{258,69}} + textureRotated + + + 2color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{129,190},{378,69}} + textureRotated + + + 2color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{1127,627},{61,146}} + textureRotated + + + 2color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,266} + spriteSourceSize + {62,266} + textureRect + {{127,403},{62,266}} + textureRotated + + + 2color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,386} + spriteSourceSize + {62,386} + textureRect + {{65,1},{62,386}} + textureRotated + + + 3color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{741,758},{138,69}} + textureRotated + + + 3color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{1,869},{258,69}} + textureRotated + + + 3color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{129,261},{378,69}} + textureRotated + + + 3color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{1275,636},{61,146}} + textureRotated + + + 3color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{64,390},{61,267}} + textureRotated + + + 3color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{129,1},{61,387}} + textureRotated + + + 4color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{881,758},{138,69}} + textureRotated + + + 4color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{387,600},{258,69}} + textureRotated + + + 4color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{898,64},{378,69}} + textureRotated + + + 4color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{1127,690},{61,146}} + textureRotated + + + 4color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{64,680},{61,267}} + textureRotated + + + 4color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{129,64},{61,387}} + textureRotated + + + 5color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{521,884},{138,69}} + textureRotated + + + 5color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{387,671},{258,69}} + textureRotated + + + 5color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{509,198},{378,69}} + textureRotated + + + 5color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{530,821},{61,146}} + textureRotated + + + 5color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,266} + spriteSourceSize + {61,266} + textureRect + {{395,411},{61,266}} + textureRotated + + + 5color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,386} + spriteSourceSize + {61,386} + textureRect + {{907,1},{61,386}} + textureRotated + + + 6color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{1021,743},{138,69}} + textureRotated + + + 6color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{333,742},{258,69}} + textureRotated + + + 6color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{509,269},{378,69}} + textureRotated + + + 6color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{1092,753},{61,146}} + textureRotated + + + 6color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{64,743},{61,267}} + textureRotated + + + 6color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{518,1},{61,387}} + textureRotated + + + 7color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{1240,784},{138,69}} + textureRotated + + + 7color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{270,813},{258,69}} + textureRotated + + + 7color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{129,332},{378,69}} + textureRotated + + + 7color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,147} + spriteSourceSize + {62,147} + textureRect + {{840,538},{62,147}} + textureRotated + + + 7color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,267} + spriteSourceSize + {62,267} + textureRect + {{889,340},{62,267}} + textureRotated + + + 7color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {62,387} + spriteSourceSize + {62,387} + textureRect + {{1,1},{62,387}} + textureRotated + + + 8color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{825,829},{138,69}} + textureRotated + + + 8color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {259,69} + spriteSourceSize + {259,69} + textureRect + {{127,467},{259,69}} + textureRotated + + + 8color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{509,340},{378,69}} + textureRotated + + + 8color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,145} + spriteSourceSize + {61,145} + textureRect + {{678,829},{61,145}} + textureRotated + + + 8color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,266} + spriteSourceSize + {61,266} + textureRect + {{388,474},{61,266}} + textureRotated + + + 8color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,386} + spriteSourceSize + {61,386} + textureRect + {{518,135},{61,386}} + textureRotated + + + 9color1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{661,892},{138,69}} + textureRotated + + + 9color2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {258,69} + spriteSourceSize + {258,69} + textureRect + {{261,884},{258,69}} + textureRotated + + + 9color3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {378,69} + spriteSourceSize + {378,69} + textureRect + {{906,135},{378,69}} + textureRotated + + + 9color4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {60,146} + spriteSourceSize + {60,146} + textureRect + {{1276,488},{60,146}} + textureRotated + + + 9color5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,267} + spriteSourceSize + {61,267} + textureRect + {{1,806},{61,267}} + textureRotated + + + 9color6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,387} + spriteSourceSize + {61,387} + textureRect + {{129,127},{61,387}} + textureRotated + + + dikuai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {120,120} + spriteSourceSize + {120,120} + textureRect + {{866,602},{120,120}} + textureRotated + + + shu_zl1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {9,42} + spriteSourceSize + {9,42} + textureRect + {{1081,883},{9,42}} + textureRotated + + + shu_zl1_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,34} + spriteSourceSize + {58,34} + textureRect + {{333,680},{58,34}} + textureRotated + + + shu_zl1_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {118,34} + spriteSourceSize + {118,34} + textureRect + {{804,479},{118,34}} + textureRotated + + + shu_zl1_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {178,34} + spriteSourceSize + {178,34} + textureRect + {{1,940},{178,34}} + textureRotated + + + shu_zl2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,10} + spriteSourceSize + {40,10} + textureRect + {{64,659},{40,10}} + textureRotated + + + shu_zl2_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,54} + spriteSourceSize + {32,54} + textureRect + {{965,829},{32,54}} + textureRotated + + + shu_zl2_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,59} + spriteSourceSize + {32,59} + textureRect + {{1277,277},{32,59}} + textureRotated + + + shu_zl2_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,114} + spriteSourceSize + {32,114} + textureRect + {{1295,1},{32,114}} + textureRotated + + + shu_zl2_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,120} + spriteSourceSize + {32,120} + textureRect + {{866,724},{32,120}} + textureRotated + + + shu_zl2_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,175} + spriteSourceSize + {32,175} + textureRect + {{663,445},{32,175}} + textureRotated + + + shu_zl2_33.png + + aliases + + spriteOffset + {0,0} + spriteSize + {32,180} + spriteSourceSize + {32,180} + textureRect + {{663,411},{32,180}} + textureRotated + + + wall1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,69} + spriteSourceSize + {138,69} + textureRect + {{941,900},{138,69}} + textureRotated + + + wall2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,146} + spriteSourceSize + {61,146} + textureRect + {{1092,879},{61,146}} + textureRotated + + + wall3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,146} + spriteSourceSize + {138,146} + textureRect + {{1158,340},{138,146}} + textureRotated + + + wall4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {137,145} + spriteSourceSize + {137,145} + textureRect + {{1129,488},{137,145}} + textureRotated + + + wall5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {137,146} + spriteSourceSize + {137,146} + textureRect + {{656,479},{137,146}} + textureRotated + + + wall6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {138,146} + spriteSourceSize + {138,146} + textureRect + {{647,618},{138,146}} + textureRotated + + + wall7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,69} + spriteSourceSize + {61,69} + textureRect + {{1269,206},{61,69}} + textureRotated + + + zhangai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {132,137} + spriteSourceSize + {132,137} + textureRect + {{988,609},{132,137}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + door.png + size + {1337,975} + smartupdate + $TexturePacker:SmartUpdate:846c0a6799b01f438b3dc94f1e82f6b0:2c95b75b17a22ae2e0b2e5e34a58e1fe:db7a2f380db9915dc051ce2c1170bc84$ + textureFileName + door.png + + + diff --git a/assets/res/texture_Block/door.plist.meta b/assets/res/texture_Block/door.plist.meta new file mode 100644 index 0000000..c370e8d --- /dev/null +++ b/assets/res/texture_Block/door.plist.meta @@ -0,0 +1,1853 @@ +{ + "ver": "1.2.6", + "uuid": "cc01997d-495e-480d-871e-be405a6c38b5", + "importer": "asset", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "size": { + "width": 1337, + "height": 975 + }, + "type": "Texture Packer", + "subMetas": { + "10color1.png": { + "ver": "1.0.6", + "uuid": "f9de4f9f-c4fa-49af-a8c5-7299bbbc26c6", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 801, + "trimY": 900, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color2.png": { + "ver": "1.0.6", + "uuid": "cddc81e8-863d-4e14-91ac-4eb044ef5f96", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 840, + "trimY": 467, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color3.png": { + "ver": "1.0.6", + "uuid": "c84b719d-af4e-4688-b270-b5b3ebe7f7f0", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 889, + "trimY": 206, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color4.png": { + "ver": "1.0.6", + "uuid": "2f23c78c-a279-4428-81a7-098cc67b3640", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1092, + "trimY": 816, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color5.png": { + "ver": "1.0.6", + "uuid": "cbf87552-edd2-496f-827c-a59a22552fbb", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 388, + "trimY": 537, + "width": 61, + "height": 266, + "rawWidth": 61, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "10color6.png": { + "ver": "1.0.6", + "uuid": "747709de-f3f7-4042-8ac9-9ff807c4b7cf", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 889, + "trimY": 277, + "width": 61, + "height": 386, + "rawWidth": 61, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color1.png": { + "ver": "1.0.6", + "uuid": "d94491c5-a3e8-48d2-b260-3b8d516f564e", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 989, + "trimY": 538, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color2.png": { + "ver": "1.0.6", + "uuid": "cd704b98-c709-4fb6-a3b1-873723c82e14", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 127, + "trimY": 538, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color3.png": { + "ver": "1.0.6", + "uuid": "edd195cc-2af5-4a7a-bf49-2af75e60d50a", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 518, + "trimY": 64, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color4.png": { + "ver": "1.0.6", + "uuid": "6b1b5072-9a41-44e7-9923-3855864d5120", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 593, + "trimY": 758, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color5.png": { + "ver": "1.0.6", + "uuid": "6899ee49-88e4-44ff-b7f9-421031d84e6e", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 889, + "trimY": 404, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "1color6.png": { + "ver": "1.0.6", + "uuid": "917a86f2-c688-4cf5-9568-37632e1964b1", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 390, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color1.png": { + "ver": "1.0.6", + "uuid": "287c291c-a6f2-4f5f-9c2e-af814874901b", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 795, + "trimY": 618, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color2.png": { + "ver": "1.0.6", + "uuid": "d8ed1577-eef1-42b8-986a-a9619e068d41", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 127, + "trimY": 609, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color3.png": { + "ver": "1.0.6", + "uuid": "39687b17-060f-401d-b776-9597fd00d95c", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 129, + "trimY": 190, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color4.png": { + "ver": "1.0.6", + "uuid": "f895411c-ea37-4419-9f12-057e76049b29", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1127, + "trimY": 627, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color5.png": { + "ver": "1.0.6", + "uuid": "c74f5c84-d250-4e6a-a6dc-5ce8b9e46633", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 127, + "trimY": 403, + "width": 62, + "height": 266, + "rawWidth": 62, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2color6.png": { + "ver": "1.0.6", + "uuid": "21696b26-2ba1-410c-a02f-c7cf63fdb349", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 65, + "trimY": 1, + "width": 62, + "height": 386, + "rawWidth": 62, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color1.png": { + "ver": "1.0.6", + "uuid": "433a5eb9-bd88-4fcf-9811-8b58f93dea65", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 741, + "trimY": 758, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color2.png": { + "ver": "1.0.6", + "uuid": "ef5bfdc0-6a9e-4866-bc77-9c69a629796b", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 869, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color3.png": { + "ver": "1.0.6", + "uuid": "e6235cef-05a1-44b7-aa4c-46b51bc91632", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 129, + "trimY": 261, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color4.png": { + "ver": "1.0.6", + "uuid": "bc920137-4c10-41ac-b55d-afaa7a733177", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1275, + "trimY": 636, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color5.png": { + "ver": "1.0.6", + "uuid": "0f1dcd5c-03b8-4f85-9edc-9002472876e3", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 64, + "trimY": 390, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "3color6.png": { + "ver": "1.0.6", + "uuid": "daad8024-c803-4b18-bb58-77a8620fd0ec", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 129, + "trimY": 1, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color1.png": { + "ver": "1.0.6", + "uuid": "1405acc7-1f74-46f3-9975-839e5337673d", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 881, + "trimY": 758, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color2.png": { + "ver": "1.0.6", + "uuid": "3718b4a0-0fb3-490b-85d4-64a2ac95c437", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 387, + "trimY": 600, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color3.png": { + "ver": "1.0.6", + "uuid": "bbafd681-01fb-47b0-a2ff-b15b926a240b", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 898, + "trimY": 64, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color4.png": { + "ver": "1.0.6", + "uuid": "ac5d82a3-1111-4557-b9f7-0b4ba525fbd5", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1127, + "trimY": 690, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color5.png": { + "ver": "1.0.6", + "uuid": "9c999eaf-168d-480a-9a0e-175e787630c9", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 64, + "trimY": 680, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4color6.png": { + "ver": "1.0.6", + "uuid": "dc7d898f-98f6-45e3-a908-1eab888d9383", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 129, + "trimY": 64, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color1.png": { + "ver": "1.0.6", + "uuid": "4b6d2792-ce59-4597-8d54-3e667f5e4ad7", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 521, + "trimY": 884, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color2.png": { + "ver": "1.0.6", + "uuid": "01a25c6d-3527-4d0b-8ac0-f3e54bd2863e", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 387, + "trimY": 671, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color3.png": { + "ver": "1.0.6", + "uuid": "3bd263ae-509c-4b63-8c11-c545402c77b8", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 509, + "trimY": 198, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color4.png": { + "ver": "1.0.6", + "uuid": "a39ecd5d-7cdf-4caf-865d-81f806b582f3", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 530, + "trimY": 821, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color5.png": { + "ver": "1.0.6", + "uuid": "f05b3170-ab5d-4af5-96fa-ca996cc795e3", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 395, + "trimY": 411, + "width": 61, + "height": 266, + "rawWidth": 61, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "5color6.png": { + "ver": "1.0.6", + "uuid": "20e22b3b-684d-405d-ac5b-5cd9ba4f9b66", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 907, + "trimY": 1, + "width": 61, + "height": 386, + "rawWidth": 61, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color1.png": { + "ver": "1.0.6", + "uuid": "28e0793b-62a9-41b7-9512-082ce55eca71", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1021, + "trimY": 743, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color2.png": { + "ver": "1.0.6", + "uuid": "550602d1-08e8-467e-8bd0-5295c4981fec", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 333, + "trimY": 742, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color3.png": { + "ver": "1.0.6", + "uuid": "e538a058-80c2-49b8-aea0-f39d69183437", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 509, + "trimY": 269, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color4.png": { + "ver": "1.0.6", + "uuid": "9cca10f3-7a1a-402a-83d4-30597d8144c7", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1092, + "trimY": 753, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color5.png": { + "ver": "1.0.6", + "uuid": "a3f51e26-9f3f-4a35-8d40-dfff45754b25", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 64, + "trimY": 743, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "6color6.png": { + "ver": "1.0.6", + "uuid": "fe897368-c5ca-4c14-a316-afe70f5e80cc", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 518, + "trimY": 1, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color1.png": { + "ver": "1.0.6", + "uuid": "e712ba83-24ff-404f-8699-61c4902001c9", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1240, + "trimY": 784, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color2.png": { + "ver": "1.0.6", + "uuid": "dd2060c3-db79-48ff-b6b2-346e357ec7ed", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 270, + "trimY": 813, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color3.png": { + "ver": "1.0.6", + "uuid": "880acb82-9636-4221-b533-3c9f826c4d9c", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 129, + "trimY": 332, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color4.png": { + "ver": "1.0.6", + "uuid": "c97d0dd9-8a86-4d84-a51c-4451beea4e1a", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 840, + "trimY": 538, + "width": 62, + "height": 147, + "rawWidth": 62, + "rawHeight": 147, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color5.png": { + "ver": "1.0.6", + "uuid": "2defa794-ed61-4edf-a314-b8cda4b029aa", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 889, + "trimY": 340, + "width": 62, + "height": 267, + "rawWidth": 62, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "7color6.png": { + "ver": "1.0.6", + "uuid": "1672955d-283c-47be-a394-28cac1c6ba5b", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 1, + "width": 62, + "height": 387, + "rawWidth": 62, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color1.png": { + "ver": "1.0.6", + "uuid": "6abff37f-5b52-4658-bd2b-c146e6dea162", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 825, + "trimY": 829, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color2.png": { + "ver": "1.0.6", + "uuid": "e91b0b84-c90c-4f76-b1e4-b8976cb6dede", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 127, + "trimY": 467, + "width": 259, + "height": 69, + "rawWidth": 259, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color3.png": { + "ver": "1.0.6", + "uuid": "582183eb-bd29-403e-848d-164b9ac0ed50", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 509, + "trimY": 340, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color4.png": { + "ver": "1.0.6", + "uuid": "43ba2e3e-eb31-41b2-98d0-74bf98cad885", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 678, + "trimY": 829, + "width": 61, + "height": 145, + "rawWidth": 61, + "rawHeight": 145, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color5.png": { + "ver": "1.0.6", + "uuid": "74c1ec31-91eb-423e-97c9-68c93ffde355", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 388, + "trimY": 474, + "width": 61, + "height": 266, + "rawWidth": 61, + "rawHeight": 266, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "8color6.png": { + "ver": "1.0.6", + "uuid": "e468d8cc-1332-4516-b4d6-f4dd61e6ab54", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 518, + "trimY": 135, + "width": 61, + "height": 386, + "rawWidth": 61, + "rawHeight": 386, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color1.png": { + "ver": "1.0.6", + "uuid": "360ebdc2-02ca-4937-8d15-8224b0950ab2", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 661, + "trimY": 892, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color2.png": { + "ver": "1.0.6", + "uuid": "3d4ca3d9-74fd-4408-99e3-0f9b0101c7b3", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 261, + "trimY": 884, + "width": 258, + "height": 69, + "rawWidth": 258, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color3.png": { + "ver": "1.0.6", + "uuid": "88a9a994-1d0b-49c1-a081-3f33c864b120", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 906, + "trimY": 135, + "width": 378, + "height": 69, + "rawWidth": 378, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color4.png": { + "ver": "1.0.6", + "uuid": "006ec77b-2f24-4f23-8685-898cc6802c7f", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1276, + "trimY": 488, + "width": 60, + "height": 146, + "rawWidth": 60, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color5.png": { + "ver": "1.0.6", + "uuid": "dab229f9-0033-4f2e-a766-b34f445fe773", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 806, + "width": 61, + "height": 267, + "rawWidth": 61, + "rawHeight": 267, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "9color6.png": { + "ver": "1.0.6", + "uuid": "a5543b75-5f2f-4355-8b34-7770803e78bc", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 129, + "trimY": 127, + "width": 61, + "height": 387, + "rawWidth": 61, + "rawHeight": 387, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "dikuai.png": { + "ver": "1.0.6", + "uuid": "b1760ce5-36c7-4d8b-bb5f-069a448ebbf2", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 866, + "trimY": 602, + "width": 120, + "height": 120, + "rawWidth": 120, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl1.png": { + "ver": "1.0.6", + "uuid": "66c27f02-719e-422c-9277-42063833c0af", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1081, + "trimY": 883, + "width": 9, + "height": 42, + "rawWidth": 9, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl1_1.png": { + "ver": "1.0.6", + "uuid": "9b80c949-4fcd-4e45-afa9-ad91683ef7b7", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 333, + "trimY": 680, + "width": 58, + "height": 34, + "rawWidth": 58, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl1_2.png": { + "ver": "1.0.6", + "uuid": "36c23619-6422-47be-aa02-f78b7618bb3c", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 804, + "trimY": 479, + "width": 118, + "height": 34, + "rawWidth": 118, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl1_3.png": { + "ver": "1.0.6", + "uuid": "2c8edc9c-c130-4c61-98f1-0a9b2edf3270", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1, + "trimY": 940, + "width": 178, + "height": 34, + "rawWidth": 178, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2.png": { + "ver": "1.0.6", + "uuid": "894c0780-7f4a-4a9f-ad92-de3471abb5c5", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 64, + "trimY": 659, + "width": 40, + "height": 10, + "rawWidth": 40, + "rawHeight": 10, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_1.png": { + "ver": "1.0.6", + "uuid": "18d68fd0-41ef-430e-9de2-d38b9e55b08c", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 965, + "trimY": 829, + "width": 32, + "height": 54, + "rawWidth": 32, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_11.png": { + "ver": "1.0.6", + "uuid": "a8c7af66-0323-4bbd-b41b-ae9ed5671c84", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1277, + "trimY": 277, + "width": 32, + "height": 59, + "rawWidth": 32, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_2.png": { + "ver": "1.0.6", + "uuid": "90d2bb3b-aeca-4ea8-9afa-c2ae9871791b", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1295, + "trimY": 1, + "width": 32, + "height": 114, + "rawWidth": 32, + "rawHeight": 114, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_22.png": { + "ver": "1.0.6", + "uuid": "aa13f028-c4c4-4978-bc3e-56b1ef1f2843", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 866, + "trimY": 724, + "width": 32, + "height": 120, + "rawWidth": 32, + "rawHeight": 120, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_3.png": { + "ver": "1.0.6", + "uuid": "ac2a29e0-63e5-4f9d-b088-dd6682f8bde4", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 663, + "trimY": 445, + "width": 32, + "height": 175, + "rawWidth": 32, + "rawHeight": 175, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shu_zl2_33.png": { + "ver": "1.0.6", + "uuid": "6012f579-6820-44ee-89c4-87c6c9b25f44", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 663, + "trimY": 411, + "width": 32, + "height": 180, + "rawWidth": 32, + "rawHeight": 180, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall1.png": { + "ver": "1.0.6", + "uuid": "fc8fd6fa-3cc2-4a69-a2f7-2c521de510b1", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 941, + "trimY": 900, + "width": 138, + "height": 69, + "rawWidth": 138, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall2.png": { + "ver": "1.0.6", + "uuid": "52f7fc1c-b560-4b6d-b15e-b38b6584a5d8", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1092, + "trimY": 879, + "width": 61, + "height": 146, + "rawWidth": 61, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall3.png": { + "ver": "1.0.6", + "uuid": "865e12b4-8506-4026-ab52-9c8421100cc4", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1158, + "trimY": 340, + "width": 138, + "height": 146, + "rawWidth": 138, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall4.png": { + "ver": "1.0.6", + "uuid": "02a22e2f-85e0-4ce1-a955-6ea4bf514319", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1129, + "trimY": 488, + "width": 137, + "height": 145, + "rawWidth": 137, + "rawHeight": 145, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall5.png": { + "ver": "1.0.6", + "uuid": "ee73bdf1-0624-464f-a268-cb0ff3f2952b", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 656, + "trimY": 479, + "width": 137, + "height": 146, + "rawWidth": 137, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall6.png": { + "ver": "1.0.6", + "uuid": "e7bbdb15-5185-4c6e-a2f6-1c337b60b460", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 647, + "trimY": 618, + "width": 138, + "height": 146, + "rawWidth": 138, + "rawHeight": 146, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "wall7.png": { + "ver": "1.0.6", + "uuid": "3042034a-eafb-4920-aacc-79bd4f56d417", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1269, + "trimY": 206, + "width": 61, + "height": 69, + "rawWidth": 61, + "rawHeight": 69, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhangai.png": { + "ver": "1.0.6", + "uuid": "e200ed15-b2bf-49eb-864b-d0ead7b9fbd6", + "importer": "sprite-frame", + "rawTextureUuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 988, + "trimY": 609, + "width": 132, + "height": 137, + "rawWidth": 132, + "rawHeight": 137, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/res/texture_Block/door.png b/assets/res/texture_Block/door.png new file mode 100644 index 0000000..ca9aaf4 Binary files /dev/null and b/assets/res/texture_Block/door.png differ diff --git a/assets/res/texture_Block/door.png.meta b/assets/res/texture_Block/door.png.meta new file mode 100644 index 0000000..28d623f --- /dev/null +++ b/assets/res/texture_Block/door.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "418b4767-01bf-4ac2-823b-9880f2a79215", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1337, + "height": 975, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources.meta b/assets/resources.meta new file mode 100644 index 0000000..d747af3 --- /dev/null +++ b/assets/resources.meta @@ -0,0 +1,25 @@ +{ + "ver": "1.1.3", + "uuid": "52e78fe3-9095-42ad-8e4d-f9bb12dc69ce", + "importer": "folder", + "isBundle": true, + "bundleName": "resources", + "priority": 8, + "compressionType": { + "web-mobile": "default", + "wechatgame": "subpackage" + }, + "optimizeHotUpdate": { + "web-mobile": false, + "wechatgame": false + }, + "inlineSpriteFrames": { + "web-mobile": false, + "wechatgame": false + }, + "isRemoteBundle": { + "web-mobile": false, + "wechatgame": false + }, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Json.meta b/assets/resources/Json.meta new file mode 100644 index 0000000..e285f11 --- /dev/null +++ b/assets/resources/Json.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "118d70ee-02b1-4118-9d04-ceddfdb672fc", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Json/NEW_GUIDE.json b/assets/resources/Json/NEW_GUIDE.json new file mode 100644 index 0000000..4a30708 --- /dev/null +++ b/assets/resources/Json/NEW_GUIDE.json @@ -0,0 +1,19 @@ + + { + "NEW_GUIDE": [ + { + "level": 8, + "name": "hammer", + "tips": "锤子道具" + }, + { + "level": 11, + "name": "time", + "tips": "时间道具" + }, + { + "level": 16, + "name": "magic", + "tips": "魔法道具" + } + ]} \ No newline at end of file diff --git a/assets/resources/Json/NEW_GUIDE.json.meta b/assets/resources/Json/NEW_GUIDE.json.meta new file mode 100644 index 0000000..72e5471 --- /dev/null +++ b/assets/resources/Json/NEW_GUIDE.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "23dacbea-3e70-42b9-a936-a534d419be9b", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Json/NEW_LEVEL.json b/assets/resources/Json/NEW_LEVEL.json new file mode 100644 index 0000000..434655f --- /dev/null +++ b/assets/resources/Json/NEW_LEVEL.json @@ -0,0 +1,59 @@ +{ + "NEW_LEVEL": [ + { + "level": 7, + "name": "daoju7", + "tips": "垂直水平方块第一次出现" + }, + { + "level": 15, + "name": "daoju2", + "tips": "叠加方块第一次出现" + }, + { + "level": 25, + "name": "daoju4", + "tips": "冻结方块第一次出现" + }, + { + "level": 35, + "name": "daoju1", + "tips": "星星方块第一次出现" + }, + { + "level": 44, + "name": "daoju3", + "tips": "钥匙锁方块第一次出现" + }, + { + "level": 52, + "name": "daoju6", + "tips": "粘合方块第一次出现" + }, + { + "level": 61, + "name": "daoju8", + "tips": "开关门第一次出现" + }, + { + "level": 70, + "name": "daoju5", + "tips": "炸弹方块第一次出现" + }, + { + "level": 120, + "name": "daoju12", + "tips": "单色通过地块" + }, + { + "level": 375, + "name": "daoju10", + "tips": "旋转门第一次出现" + }, + { + "level": 396, + "name": "daoju11", + "tips": "灰色不可消除方块第一次出现" + } + ] +} \ No newline at end of file diff --git a/assets/resources/Json/NEW_LEVEL.json.meta b/assets/resources/Json/NEW_LEVEL.json.meta new file mode 100644 index 0000000..028a6f3 --- /dev/null +++ b/assets/resources/Json/NEW_LEVEL.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.2", + "uuid": "2afac3cb-541e-4e00-b326-f6e3c953857a", + "importer": "json", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle.meta b/assets/resources/Particle.meta new file mode 100644 index 0000000..39313f7 --- /dev/null +++ b/assets/resources/Particle.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "825f4992-deeb-4f19-8c4e-9a65b191753b", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_1_1.plist b/assets/resources/Particle/bot_1_1.plist new file mode 100644 index 0000000..8ef08ba --- /dev/null +++ b/assets/resources/Particle/bot_1_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +164.000000 +sourcePositiony +260.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_1_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_1_1.plist.meta b/assets/resources/Particle/bot_1_1.plist.meta new file mode 100644 index 0000000..a3d0a16 --- /dev/null +++ b/assets/resources/Particle/bot_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "d2e9f95d-f8f9-45a8-8a3b-67a1f370a18d", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_1_1_1.plist b/assets/resources/Particle/bot_1_1_1.plist new file mode 100644 index 0000000..8ef08ba --- /dev/null +++ b/assets/resources/Particle/bot_1_1_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +164.000000 +sourcePositiony +260.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_1_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_1_1_1.plist.meta b/assets/resources/Particle/bot_1_1_1.plist.meta new file mode 100644 index 0000000..0859bda --- /dev/null +++ b/assets/resources/Particle/bot_1_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "12306819-582e-4ee1-9e35-c24b0b935bc5", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_1_2.plist b/assets/resources/Particle/bot_1_2.plist new file mode 100644 index 0000000..dad8290 --- /dev/null +++ b/assets/resources/Particle/bot_1_2.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +100.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +184.000000 +sourcePositiony +251.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_1_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_1_2.plist.meta b/assets/resources/Particle/bot_1_2.plist.meta new file mode 100644 index 0000000..54937e0 --- /dev/null +++ b/assets/resources/Particle/bot_1_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "4386a35e-0b50-4e89-a827-6319df821ec2", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_1_2_1.plist b/assets/resources/Particle/bot_1_2_1.plist new file mode 100644 index 0000000..dad8290 --- /dev/null +++ b/assets/resources/Particle/bot_1_2_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +100.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +184.000000 +sourcePositiony +251.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_1_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_1_2_1.plist.meta b/assets/resources/Particle/bot_1_2_1.plist.meta new file mode 100644 index 0000000..05bcb43 --- /dev/null +++ b/assets/resources/Particle/bot_1_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "a96e9590-d76b-46a9-bc22-78fabd5f5074", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_1_3.plist b/assets/resources/Particle/bot_1_3.plist new file mode 100644 index 0000000..e1b12ee --- /dev/null +++ b/assets/resources/Particle/bot_1_3.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.990000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +100.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +139.000000 +sourcePositiony +277.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_1_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_1_3.plist.meta b/assets/resources/Particle/bot_1_3.plist.meta new file mode 100644 index 0000000..1ce8a20 --- /dev/null +++ b/assets/resources/Particle/bot_1_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "3a6e128b-d998-4c0b-b1ff-762130a580a2", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_1_3_1.plist b/assets/resources/Particle/bot_1_3_1.plist new file mode 100644 index 0000000..e1b12ee --- /dev/null +++ b/assets/resources/Particle/bot_1_3_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.990000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +100.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +139.000000 +sourcePositiony +277.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_1_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_1_3_1.plist.meta b/assets/resources/Particle/bot_1_3_1.plist.meta new file mode 100644 index 0000000..5f55176 --- /dev/null +++ b/assets/resources/Particle/bot_1_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "f8a9dd4c-54ba-48d6-bac6-38624a421af3", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_2_1.plist b/assets/resources/Particle/bot_2_1.plist new file mode 100644 index 0000000..3b87a7f --- /dev/null +++ b/assets/resources/Particle/bot_2_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +173.000000 +sourcePositiony +226.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_2_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_2_1.plist.meta b/assets/resources/Particle/bot_2_1.plist.meta new file mode 100644 index 0000000..7d73afc --- /dev/null +++ b/assets/resources/Particle/bot_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "d8d32fc1-13ba-435c-a2b5-b6afb5ead4c3", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_2_1_1.plist b/assets/resources/Particle/bot_2_1_1.plist new file mode 100644 index 0000000..3b87a7f --- /dev/null +++ b/assets/resources/Particle/bot_2_1_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +173.000000 +sourcePositiony +226.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_2_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_2_1_1.plist.meta b/assets/resources/Particle/bot_2_1_1.plist.meta new file mode 100644 index 0000000..ed071db --- /dev/null +++ b/assets/resources/Particle/bot_2_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "f6b05315-94c5-41a5-a0f1-187fca3c0f04", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_2_2.plist b/assets/resources/Particle/bot_2_2.plist new file mode 100644 index 0000000..2641283 --- /dev/null +++ b/assets/resources/Particle/bot_2_2.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +162.000000 +sourcePositiony +318.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_2_2.png +textureImageData +eJwByww084lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxtSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyJFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJFL/3+965M324d2lREsUluYr/AEFg994z579n5j/nnBmhyTj4/MGUmco/CvYxnOwTxy6r2KWIthijc2CUeN5ljTt7buSxF/nud22zfQCQZhg5+MyhXuPU74vjMCJHGn7R8sa5U6e/2QwfbseGiO0fP3JIxP6JIMeWDIrQ2dlBV9cm2tpaaW3Nkstl8X0fz9OICIVCibNn/4dyuYI2asd7b7zxfxunshzeel56dPzwk86pv0TcUyAopejr66G/P08+300qlZh1d3+/rS2HUvFvaiXw1+X5KlgTsYNHj2aNZ7/n4I8QSKd9BgZ2snv3Dnw/tUTEOUdgLDUTERpLYCOMsTgHvlYszs1SLJZxRO+ce/0nE18oseHxI09Ezvy9oB7RWjM4uIvBwd1orcHFZMqBoVQNKQUG6xwiQsbTBCbCOoenFEoL135zDQBx+vX7QaphYiPjT39PxL2AKLZs6eLLXx4hl8uCg8haFioBC+VgyfkWP0XG0ygRwsgSRhECKCXYMGR2ehaAwC+99IURGzn+9D8IPAcwNDTAvn17EATnHPPlGnPlAOccKa3pSKdQShGaiGI1ILQRLpmeSgRPCVPXpnDOgXOvXHzl7eIXQmz0+Nj3geeUEr70pRG2b+8HB1VjuLlYIYgsIkJ7Jk065VGuBVTCWuz4bVBK0EoxeWMy/sC5l+8HoaXxVvpidHzsWZDnRYTHHz+wRGq+UuOzuRJBZPE9TXdbFk8Js8Uy5SC8KykR0CKEtRoLcwsAnHv08R/fP1orROzgt44O1QL7T54Ho6P76O/P45zjZqFCoRqiRGjL+Phas1ipUQ3NPQcRBKWE6RvT8QeOH96vjKOOuxIzkflbz1OpnTu3sXv3DnCOqcUKxVqIVkJHSyZZY1Uiu7p/SgSthJnpGQAs7r6pYR13EBsdH/trRA7nci2MjOwFB9PFGsVaHKnNuSyVMKRYDRoaIFZDEAezM7EapvzwraayuAuWrbGDR49uiSJ5EeDAgWE87VGoBSxUaigROrMZqmFIqUFSEKdYShTzc7PYyGIdP33vlX9baDKPO7AsYkbbv9JCb19fnp6eBzCRZbZQRYCWlId1jsIaSEEiHEqYmYqnoRL+vWne3wNLEXvs8OF268xxgIcfHgAHM8UqUbLpaqUoVGtrHyBZX9M3Y+GInHuzWc7fC0sRq2XUdzRqRz7fTWdnB5XAUKqFAKQ8Tc0YIrtCVrsCRGJilVKZaqVKBBc/eO3MB82lcHcsRUwchwF27doODuZKn0dHgDBauzrXZX5hbh4AjXt3ow43CgUwfOzQIMI3fD9FPv8A1dBQu2Vvqhlz1413NdQ35oX5WCvEyX82ye9VoQCUqHGA/v48SikK1WBZKbXWKViHiCAiFAtxSmjhtzINISEmTp4A6OvrwVpHuXbvTKJRCKAESqUSAF6krjTFcANQAEaZ3wHo6uqkEsa1VDMgIhhjsJGFiNn33nij3BTDDUANHzs06OFtaWvLkU77VAKzUkW/JkjyF4axslrNbBPMNgylRP8uwObNnQCrJrQNI2kTuURNFVSaY7gxKBEeBmhra8VEFrNOobgd9Yh9UVA4txMgl8sSGrtiZ6lRLBFysSntxTmAxXZszPLaoLDsAMhmW+JSfp3Mbo+QI27w+Gk/ToRR20+cOKE37nJjUOioH6ClJUMYuXVFbKUp54iVsSXbAsBEdWHnOv1cM1SE1wbgeR6RtUu8tFp9hay2jpxzWOdobc0BYCU1vEF/G4ZykAXQWmPqCpbUUCuhUWFwDqx1tG+Kl5eI+8aGPW4QCmPC2InPk1wlgtzF87UqncMRWUfX5q7EQPTVDfi6JijxvBDiX7aecMRV73IK65Fu58A6R7atNW6wokf3Hx87ukGfG4ISmAKo1WqI3ElgY/uREDmIIkf/tv54QCvfWbe5NUCBTYgFcZSSijel1QY32PhtZx3GWvL9ffEpjOLo6PGxsY27fm8ohVwBKBSKaKVQxDVUJpVap8nlMXbEZY9Tit0Didpb+fMNed0AVL1GWlws4qlYNGomwk8OFRrHypPWOoeJLD1b++O1pngqaZ/fNyhR/AxgZmYunn4i8X7mHC1+I1FbfRU6F0ctcsLI6COICCDPjzzzdOPHumuECnXrzwHm5uZxURRLPVAOQtpa0qu83nhEnY2jlsrl2Lt3T/y2419Hnzkysl7n7wV98+LFqGdo4ACOwU0dbfjZLFGy4DtzLdRCg7mjjd24Vt76pCPeUjZv7sSakPn5RQ94oXtooDB5aeK/mkcLNEDv4J4cwjFwdPf2xMQiS3smTWsmzUKluiFCt6IuJtu29mIjw9zcAoIcyg8NPJkf2rOtZ/Chhck/eHaKt9/eUJ0hACPj45tEwjkR4Wtf/yoBiiCKSGnNji2bmFwosVhpvFm6GnUlgqcVXa1pZm5O8+GHlygUSssfspy14q4KfCLiJq2TWVDzSlnrhLK2qgoQKZsRR9ZapRSRrjj/3cunThWWfBg9NvbPKPnDXbt3sHXXLqphRGQt3e2ttLek+fjm3KrdqjVpqIBWiq7WDNm0x+TkNNevTzI5efNOkmvDJxXr7V/yZf+xw48qpX6hteYrX/sKkWgCE6vjgw9sIrKW38wsbpjQ7e+JElrTKTqyPlrHiXcYGhYWFikWy5TLZWq1gKAWEIQGnMNEETZZ90opPK0hyW9v3LgJzh5Z5tPo+NjLiJzo39rLwN6H46hFFk9rtm/poFCpMV0sY5PINbP0FxGyvqYlnSKT0njqluqiwYHOnbvAxMQnONyfLTttiZT7C+2i37v26fXOfF8v2fYOaskvNLlQJN/RSkprrs8X1tUZvhecc5RqhlLNLN0w8D2NpxUpLUuHG3HSEEcnzh/i7Wl2do6rV/83MSZnl5XqU5cmFvODe3xEvj43O0f/1j601ljnqIURhWqN7o4cLb63JjFZH1EwkSU0EdUgSg5JDMVquPRXqhoCE1ELQn7+s/cIQwO4759/7cw/3tGDuHF54p2eoYEDkYkGi4uL9G3tXRooso5SLaSjJUM65VEzzWuu3g33moEikNIaP6W5+P4FFuYXsHD6/Mkzz8IKtwYk5Z4DLszOzHHlwiXSKY3vKZQItdDw6cwCWgnd7TnaMukkRfotkiJW1JRWfDxxlanJKSLDdQnl+fozd+0a3bg4Ue4deug/DOaPS4ullAlCuvMPAPEGa5PIaaXIZVLk0inCyDZ00N4IoVVJaYXvKaZvTHLl0q9jv0SOvP/6mx/e+tyKGB4fG9Yi7wP09vUy9MgQxhLfjbJxoy6T8mjN+PhevBYXKzWqwdqmaKPxru99vqeYmbrJhfcv4JzDOV46/9rpF9dkc3h8bBiRsxraO7s6eWRkGNGaIInQrVeKOrIZ2lvSVIKQQjWgGq5+rtYoKaUEL5l+Nz77jMsXLye23Q/OnTxzR1XekN39x8f2KOTHwL502mfv/n20d3ZijMVYuxS9usH2bIa2jI91UAlCKkG4dAPu9sETxWYl/nXpT3malBI+mrjKJx8lsr4CqYaJQXJVwot+APIMQP/WPgYGH8IphYkskY17iLc2hFp8j1w6nqYQy3e9WrDJ85FdHvllpNXnbYooCLn4wQVmZ+fqjzx77uTpH63k75rlLL7ixwsAvp/iwV0P0rdtKzZxPEq6Xc4tb5bXlazeMKp/55xbloPWD+TrU08r4can1/j1lasYY4jgYkrst3/x6lv/fS8/16XTydT8G+CbAJlMmu0Pbiff34coHUfBOZwFi0NcXIvVDyqWDZ4UtnEmIUnmH/+fnrrJxxMfUSwmSbHjhxXnvXj51KnCaj5uaAMaGR87jsifCjwJcTe5J99Nd76HTV2dIJL0K5Mo1o88XDyyJKmRSggpJVQrFaauT3Lt02tUkjrQWt7WWl765atv/kujvjVlZx0ZHzsuTr6NYqkZqj1NV1cX7e1ttLa10pLL4vsplNZorYlMhDEh5XKFcrFEsVBkbnZ+6bw65h+9g6iXz7965u/W6lNTU4bhbx3ZpSJOCO4phHX16S1MKNxZh/vR+ZNv/WS9vty3Q8fhI0c6Pc0TVuwBgWFEBg2mB0PO87wWDEXr2VkFVy3yK0GdV7h3f3ny9K+aMf7/A96uhR9HcKjoAAAAAElFTkSuQmCCTd82pg== + diff --git a/assets/resources/Particle/bot_2_2.plist.meta b/assets/resources/Particle/bot_2_2.plist.meta new file mode 100644 index 0000000..ddfae60 --- /dev/null +++ b/assets/resources/Particle/bot_2_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "e5c15f0a-718a-47b6-82dc-ea181130859b", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_2_2_1.plist b/assets/resources/Particle/bot_2_2_1.plist new file mode 100644 index 0000000..2641283 --- /dev/null +++ b/assets/resources/Particle/bot_2_2_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +162.000000 +sourcePositiony +318.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_2_2.png +textureImageData +eJwByww084lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxtSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyJFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJFL/3+965M324d2lREsUluYr/AEFg994z579n5j/nnBmhyTj4/MGUmco/CvYxnOwTxy6r2KWIthijc2CUeN5ljTt7buSxF/nud22zfQCQZhg5+MyhXuPU74vjMCJHGn7R8sa5U6e/2QwfbseGiO0fP3JIxP6JIMeWDIrQ2dlBV9cm2tpaaW3Nkstl8X0fz9OICIVCibNn/4dyuYI2asd7b7zxfxunshzeel56dPzwk86pv0TcUyAopejr66G/P08+300qlZh1d3+/rS2HUvFvaiXw1+X5KlgTsYNHj2aNZ7/n4I8QSKd9BgZ2snv3Dnw/tUTEOUdgLDUTERpLYCOMsTgHvlYszs1SLJZxRO+ce/0nE18oseHxI09Ezvy9oB7RWjM4uIvBwd1orcHFZMqBoVQNKQUG6xwiQsbTBCbCOoenFEoL135zDQBx+vX7QaphYiPjT39PxL2AKLZs6eLLXx4hl8uCg8haFioBC+VgyfkWP0XG0ygRwsgSRhECKCXYMGR2ehaAwC+99IURGzn+9D8IPAcwNDTAvn17EATnHPPlGnPlAOccKa3pSKdQShGaiGI1ILQRLpmeSgRPCVPXpnDOgXOvXHzl7eIXQmz0+Nj3geeUEr70pRG2b+8HB1VjuLlYIYgsIkJ7Jk065VGuBVTCWuz4bVBK0EoxeWMy/sC5l+8HoaXxVvpidHzsWZDnRYTHHz+wRGq+UuOzuRJBZPE9TXdbFk8Js8Uy5SC8KykR0CKEtRoLcwsAnHv08R/fP1orROzgt44O1QL7T54Ho6P76O/P45zjZqFCoRqiRGjL+Phas1ipUQ3NPQcRBKWE6RvT8QeOH96vjKOOuxIzkflbz1OpnTu3sXv3DnCOqcUKxVqIVkJHSyZZY1Uiu7p/SgSthJnpGQAs7r6pYR13EBsdH/trRA7nci2MjOwFB9PFGsVaHKnNuSyVMKRYDRoaIFZDEAezM7EapvzwraayuAuWrbGDR49uiSJ5EeDAgWE87VGoBSxUaigROrMZqmFIqUFSEKdYShTzc7PYyGIdP33vlX9baDKPO7AsYkbbv9JCb19fnp6eBzCRZbZQRYCWlId1jsIaSEEiHEqYmYqnoRL+vWne3wNLEXvs8OF268xxgIcfHgAHM8UqUbLpaqUoVGtrHyBZX9M3Y+GInHuzWc7fC0sRq2XUdzRqRz7fTWdnB5XAUKqFAKQ8Tc0YIrtCVrsCRGJilVKZaqVKBBc/eO3MB82lcHcsRUwchwF27doODuZKn0dHgDBauzrXZX5hbh4AjXt3ow43CgUwfOzQIMI3fD9FPv8A1dBQu2Vvqhlz1413NdQ35oX5WCvEyX82ye9VoQCUqHGA/v48SikK1WBZKbXWKViHiCAiFAtxSmjhtzINISEmTp4A6OvrwVpHuXbvTKJRCKAESqUSAF6krjTFcANQAEaZ3wHo6uqkEsa1VDMgIhhjsJGFiNn33nij3BTDDUANHzs06OFtaWvLkU77VAKzUkW/JkjyF4axslrNbBPMNgylRP8uwObNnQCrJrQNI2kTuURNFVSaY7gxKBEeBmhra8VEFrNOobgd9Yh9UVA4txMgl8sSGrtiZ6lRLBFysSntxTmAxXZszPLaoLDsAMhmW+JSfp3Mbo+QI27w+Gk/ToRR20+cOKE37nJjUOioH6ClJUMYuXVFbKUp54iVsSXbAsBEdWHnOv1cM1SE1wbgeR6RtUu8tFp9hay2jpxzWOdobc0BYCU1vEF/G4ZykAXQWmPqCpbUUCuhUWFwDqx1tG+Kl5eI+8aGPW4QCmPC2InPk1wlgtzF87UqncMRWUfX5q7EQPTVDfi6JijxvBDiX7aecMRV73IK65Fu58A6R7atNW6wokf3Hx87ukGfG4ISmAKo1WqI3ElgY/uREDmIIkf/tv54QCvfWbe5NUCBTYgFcZSSijel1QY32PhtZx3GWvL9ffEpjOLo6PGxsY27fm8ohVwBKBSKaKVQxDVUJpVap8nlMXbEZY9Tit0Didpb+fMNed0AVL1GWlws4qlYNGomwk8OFRrHypPWOoeJLD1b++O1pngqaZ/fNyhR/AxgZmYunn4i8X7mHC1+I1FbfRU6F0ctcsLI6COICCDPjzzzdOPHumuECnXrzwHm5uZxURRLPVAOQtpa0qu83nhEnY2jlsrl2Lt3T/y2419Hnzkysl7n7wV98+LFqGdo4ACOwU0dbfjZLFGy4DtzLdRCg7mjjd24Vt76pCPeUjZv7sSakPn5RQ94oXtooDB5aeK/mkcLNEDv4J4cwjFwdPf2xMQiS3smTWsmzUKluiFCt6IuJtu29mIjw9zcAoIcyg8NPJkf2rOtZ/Chhck/eHaKt9/eUJ0hACPj45tEwjkR4Wtf/yoBiiCKSGnNji2bmFwosVhpvFm6GnUlgqcVXa1pZm5O8+GHlygUSssfspy14q4KfCLiJq2TWVDzSlnrhLK2qgoQKZsRR9ZapRSRrjj/3cunThWWfBg9NvbPKPnDXbt3sHXXLqphRGQt3e2ttLek+fjm3KrdqjVpqIBWiq7WDNm0x+TkNNevTzI5efNOkmvDJxXr7V/yZf+xw48qpX6hteYrX/sKkWgCE6vjgw9sIrKW38wsbpjQ7e+JElrTKTqyPlrHiXcYGhYWFikWy5TLZWq1gKAWEIQGnMNEETZZ90opPK0hyW9v3LgJzh5Z5tPo+NjLiJzo39rLwN6H46hFFk9rtm/poFCpMV0sY5PINbP0FxGyvqYlnSKT0njqluqiwYHOnbvAxMQnONyfLTttiZT7C+2i37v26fXOfF8v2fYOaskvNLlQJN/RSkprrs8X1tUZvhecc5RqhlLNLN0w8D2NpxUpLUuHG3HSEEcnzh/i7Wl2do6rV/83MSZnl5XqU5cmFvODe3xEvj43O0f/1j601ljnqIURhWqN7o4cLb63JjFZH1EwkSU0EdUgSg5JDMVquPRXqhoCE1ELQn7+s/cIQwO4759/7cw/3tGDuHF54p2eoYEDkYkGi4uL9G3tXRooso5SLaSjJUM65VEzzWuu3g33moEikNIaP6W5+P4FFuYXsHD6/Mkzz8IKtwYk5Z4DLszOzHHlwiXSKY3vKZQItdDw6cwCWgnd7TnaMukkRfotkiJW1JRWfDxxlanJKSLDdQnl+fozd+0a3bg4Ue4deug/DOaPS4ullAlCuvMPAPEGa5PIaaXIZVLk0inCyDZ00N4IoVVJaYXvKaZvTHLl0q9jv0SOvP/6mx/e+tyKGB4fG9Yi7wP09vUy9MgQxhLfjbJxoy6T8mjN+PhevBYXKzWqwdqmaKPxru99vqeYmbrJhfcv4JzDOV46/9rpF9dkc3h8bBiRsxraO7s6eWRkGNGaIInQrVeKOrIZ2lvSVIKQQjWgGq5+rtYoKaUEL5l+Nz77jMsXLye23Q/OnTxzR1XekN39x8f2KOTHwL502mfv/n20d3ZijMVYuxS9usH2bIa2jI91UAlCKkG4dAPu9sETxWYl/nXpT3malBI+mrjKJx8lsr4CqYaJQXJVwot+APIMQP/WPgYGH8IphYkskY17iLc2hFp8j1w6nqYQy3e9WrDJ85FdHvllpNXnbYooCLn4wQVmZ+fqjzx77uTpH63k75rlLL7ixwsAvp/iwV0P0rdtKzZxPEq6Xc4tb5bXlazeMKp/55xbloPWD+TrU08r4can1/j1lasYY4jgYkrst3/x6lv/fS8/16XTydT8G+CbAJlMmu0Pbiff34coHUfBOZwFi0NcXIvVDyqWDZ4UtnEmIUnmH/+fnrrJxxMfUSwmSbHjhxXnvXj51KnCaj5uaAMaGR87jsifCjwJcTe5J99Nd76HTV2dIJL0K5Mo1o88XDyyJKmRSggpJVQrFaauT3Lt02tUkjrQWt7WWl765atv/kujvjVlZx0ZHzsuTr6NYqkZqj1NV1cX7e1ttLa10pLL4vsplNZorYlMhDEh5XKFcrFEsVBkbnZ+6bw65h+9g6iXz7965u/W6lNTU4bhbx3ZpSJOCO4phHX16S1MKNxZh/vR+ZNv/WS9vty3Q8fhI0c6Pc0TVuwBgWFEBg2mB0PO87wWDEXr2VkFVy3yK0GdV7h3f3ny9K+aMf7/A96uhR9HcKjoAAAAAElFTkSuQmCCTd82pg== + diff --git a/assets/resources/Particle/bot_2_2_1.plist.meta b/assets/resources/Particle/bot_2_2_1.plist.meta new file mode 100644 index 0000000..b96e979 --- /dev/null +++ b/assets/resources/Particle/bot_2_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "c7650af3-4db3-4d9f-a502-e0c0fce90eea", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_2_3.plist b/assets/resources/Particle/bot_2_3.plist new file mode 100644 index 0000000..f52bf57 --- /dev/null +++ b/assets/resources/Particle/bot_2_3.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.990000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +199.000000 +sourcePositiony +260.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_2_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_2_3.plist.meta b/assets/resources/Particle/bot_2_3.plist.meta new file mode 100644 index 0000000..3459142 --- /dev/null +++ b/assets/resources/Particle/bot_2_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "a8a0985f-7251-4998-a641-c2333fbef6c6", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_2_3_1.plist b/assets/resources/Particle/bot_2_3_1.plist new file mode 100644 index 0000000..f52bf57 --- /dev/null +++ b/assets/resources/Particle/bot_2_3_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.990000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +199.000000 +sourcePositiony +260.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_2_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_2_3_1.plist.meta b/assets/resources/Particle/bot_2_3_1.plist.meta new file mode 100644 index 0000000..54ea1ea --- /dev/null +++ b/assets/resources/Particle/bot_2_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "b6763ed3-58ec-4788-8c2c-a425e5f35f8a", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_3_1.plist b/assets/resources/Particle/bot_3_1.plist new file mode 100644 index 0000000..42e1011 --- /dev/null +++ b/assets/resources/Particle/bot_3_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +183.000000 +sourcePositiony +246.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_3_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_3_1.plist.meta b/assets/resources/Particle/bot_3_1.plist.meta new file mode 100644 index 0000000..4ce13dc --- /dev/null +++ b/assets/resources/Particle/bot_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "49e6cc86-2188-4109-87fd-e23e3a6bb1d3", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_3_1_1.plist b/assets/resources/Particle/bot_3_1_1.plist new file mode 100644 index 0000000..42e1011 --- /dev/null +++ b/assets/resources/Particle/bot_3_1_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +183.000000 +sourcePositiony +246.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_3_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_3_1_1.plist.meta b/assets/resources/Particle/bot_3_1_1.plist.meta new file mode 100644 index 0000000..6542a34 --- /dev/null +++ b/assets/resources/Particle/bot_3_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "67768a91-f989-4ae1-aa68-3302f9e3cc53", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_3_2.plist b/assets/resources/Particle/bot_3_2.plist new file mode 100644 index 0000000..c51c383 --- /dev/null +++ b/assets/resources/Particle/bot_3_2.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +176.000000 +sourcePositiony +312.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_3_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_3_2.plist.meta b/assets/resources/Particle/bot_3_2.plist.meta new file mode 100644 index 0000000..fa3caf5 --- /dev/null +++ b/assets/resources/Particle/bot_3_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "cc1282c3-e268-4bbb-a5a6-895a475cfc7e", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_3_2_1.plist b/assets/resources/Particle/bot_3_2_1.plist new file mode 100644 index 0000000..c51c383 --- /dev/null +++ b/assets/resources/Particle/bot_3_2_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +176.000000 +sourcePositiony +312.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_3_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/bot_3_2_1.plist.meta b/assets/resources/Particle/bot_3_2_1.plist.meta new file mode 100644 index 0000000..452e98d --- /dev/null +++ b/assets/resources/Particle/bot_3_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "adb713c6-0fe0-4631-9c9b-adec61911be9", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_3_3.plist b/assets/resources/Particle/bot_3_3.plist new file mode 100644 index 0000000..5907db8 --- /dev/null +++ b/assets/resources/Particle/bot_3_3.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +222.000000 +sourcePositiony +285.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_3_3.png +textureImageData +eJwByww084lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxtSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyJFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJFL/3+965M324d2lREsUluYr/AEFg994z579n5j/nnBmhyTj4/MGUmco/CvYxnOwTxy6r2KWIthijc2CUeN5ljTt7buSxF/nud22zfQCQZhg5+MyhXuPU74vjMCJHGn7R8sa5U6e/2QwfbseGiO0fP3JIxP6JIMeWDIrQ2dlBV9cm2tpaaW3Nkstl8X0fz9OICIVCibNn/4dyuYI2asd7b7zxfxunshzeel56dPzwk86pv0TcUyAopejr66G/P08+300qlZh1d3+/rS2HUvFvaiXw1+X5KlgTsYNHj2aNZ7/n4I8QSKd9BgZ2snv3Dnw/tUTEOUdgLDUTERpLYCOMsTgHvlYszs1SLJZxRO+ce/0nE18oseHxI09Ezvy9oB7RWjM4uIvBwd1orcHFZMqBoVQNKQUG6xwiQsbTBCbCOoenFEoL135zDQBx+vX7QaphYiPjT39PxL2AKLZs6eLLXx4hl8uCg8haFioBC+VgyfkWP0XG0ygRwsgSRhECKCXYMGR2ehaAwC+99IURGzn+9D8IPAcwNDTAvn17EATnHPPlGnPlAOccKa3pSKdQShGaiGI1ILQRLpmeSgRPCVPXpnDOgXOvXHzl7eIXQmz0+Nj3geeUEr70pRG2b+8HB1VjuLlYIYgsIkJ7Jk065VGuBVTCWuz4bVBK0EoxeWMy/sC5l+8HoaXxVvpidHzsWZDnRYTHHz+wRGq+UuOzuRJBZPE9TXdbFk8Js8Uy5SC8KykR0CKEtRoLcwsAnHv08R/fP1orROzgt44O1QL7T54Ho6P76O/P45zjZqFCoRqiRGjL+Phas1ipUQ3NPQcRBKWE6RvT8QeOH96vjKOOuxIzkflbz1OpnTu3sXv3DnCOqcUKxVqIVkJHSyZZY1Uiu7p/SgSthJnpGQAs7r6pYR13EBsdH/trRA7nci2MjOwFB9PFGsVaHKnNuSyVMKRYDRoaIFZDEAezM7EapvzwraayuAuWrbGDR49uiSJ5EeDAgWE87VGoBSxUaigROrMZqmFIqUFSEKdYShTzc7PYyGIdP33vlX9baDKPO7AsYkbbv9JCb19fnp6eBzCRZbZQRYCWlId1jsIaSEEiHEqYmYqnoRL+vWne3wNLEXvs8OF268xxgIcfHgAHM8UqUbLpaqUoVGtrHyBZX9M3Y+GInHuzWc7fC0sRq2XUdzRqRz7fTWdnB5XAUKqFAKQ8Tc0YIrtCVrsCRGJilVKZaqVKBBc/eO3MB82lcHcsRUwchwF27doODuZKn0dHgDBauzrXZX5hbh4AjXt3ow43CgUwfOzQIMI3fD9FPv8A1dBQu2Vvqhlz1413NdQ35oX5WCvEyX82ye9VoQCUqHGA/v48SikK1WBZKbXWKViHiCAiFAtxSmjhtzINISEmTp4A6OvrwVpHuXbvTKJRCKAESqUSAF6krjTFcANQAEaZ3wHo6uqkEsa1VDMgIhhjsJGFiNn33nij3BTDDUANHzs06OFtaWvLkU77VAKzUkW/JkjyF4axslrNbBPMNgylRP8uwObNnQCrJrQNI2kTuURNFVSaY7gxKBEeBmhra8VEFrNOobgd9Yh9UVA4txMgl8sSGrtiZ6lRLBFysSntxTmAxXZszPLaoLDsAMhmW+JSfp3Mbo+QI27w+Gk/ToRR20+cOKE37nJjUOioH6ClJUMYuXVFbKUp54iVsSXbAsBEdWHnOv1cM1SE1wbgeR6RtUu8tFp9hay2jpxzWOdobc0BYCU1vEF/G4ZykAXQWmPqCpbUUCuhUWFwDqx1tG+Kl5eI+8aGPW4QCmPC2InPk1wlgtzF87UqncMRWUfX5q7EQPTVDfi6JijxvBDiX7aecMRV73IK65Fu58A6R7atNW6wokf3Hx87ukGfG4ISmAKo1WqI3ElgY/uREDmIIkf/tv54QCvfWbe5NUCBTYgFcZSSijel1QY32PhtZx3GWvL9ffEpjOLo6PGxsY27fm8ohVwBKBSKaKVQxDVUJpVap8nlMXbEZY9Tit0Didpb+fMNed0AVL1GWlws4qlYNGomwk8OFRrHypPWOoeJLD1b++O1pngqaZ/fNyhR/AxgZmYunn4i8X7mHC1+I1FbfRU6F0ctcsLI6COICCDPjzzzdOPHumuECnXrzwHm5uZxURRLPVAOQtpa0qu83nhEnY2jlsrl2Lt3T/y2419Hnzkysl7n7wV98+LFqGdo4ACOwU0dbfjZLFGy4DtzLdRCg7mjjd24Vt76pCPeUjZv7sSakPn5RQ94oXtooDB5aeK/mkcLNEDv4J4cwjFwdPf2xMQiS3smTWsmzUKluiFCt6IuJtu29mIjw9zcAoIcyg8NPJkf2rOtZ/Chhck/eHaKt9/eUJ0hACPj45tEwjkR4Wtf/yoBiiCKSGnNji2bmFwosVhpvFm6GnUlgqcVXa1pZm5O8+GHlygUSssfspy14q4KfCLiJq2TWVDzSlnrhLK2qgoQKZsRR9ZapRSRrjj/3cunThWWfBg9NvbPKPnDXbt3sHXXLqphRGQt3e2ttLek+fjm3KrdqjVpqIBWiq7WDNm0x+TkNNevTzI5efNOkmvDJxXr7V/yZf+xw48qpX6hteYrX/sKkWgCE6vjgw9sIrKW38wsbpjQ7e+JElrTKTqyPlrHiXcYGhYWFikWy5TLZWq1gKAWEIQGnMNEETZZ90opPK0hyW9v3LgJzh5Z5tPo+NjLiJzo39rLwN6H46hFFk9rtm/poFCpMV0sY5PINbP0FxGyvqYlnSKT0njqluqiwYHOnbvAxMQnONyfLTttiZT7C+2i37v26fXOfF8v2fYOaskvNLlQJN/RSkprrs8X1tUZvhecc5RqhlLNLN0w8D2NpxUpLUuHG3HSEEcnzh/i7Wl2do6rV/83MSZnl5XqU5cmFvODe3xEvj43O0f/1j601ljnqIURhWqN7o4cLb63JjFZH1EwkSU0EdUgSg5JDMVquPRXqhoCE1ELQn7+s/cIQwO4759/7cw/3tGDuHF54p2eoYEDkYkGi4uL9G3tXRooso5SLaSjJUM65VEzzWuu3g33moEikNIaP6W5+P4FFuYXsHD6/Mkzz8IKtwYk5Z4DLszOzHHlwiXSKY3vKZQItdDw6cwCWgnd7TnaMukkRfotkiJW1JRWfDxxlanJKSLDdQnl+fozd+0a3bg4Ue4deug/DOaPS4ullAlCuvMPAPEGa5PIaaXIZVLk0inCyDZ00N4IoVVJaYXvKaZvTHLl0q9jv0SOvP/6mx/e+tyKGB4fG9Yi7wP09vUy9MgQxhLfjbJxoy6T8mjN+PhevBYXKzWqwdqmaKPxru99vqeYmbrJhfcv4JzDOV46/9rpF9dkc3h8bBiRsxraO7s6eWRkGNGaIInQrVeKOrIZ2lvSVIKQQjWgGq5+rtYoKaUEL5l+Nz77jMsXLye23Q/OnTxzR1XekN39x8f2KOTHwL502mfv/n20d3ZijMVYuxS9usH2bIa2jI91UAlCKkG4dAPu9sETxWYl/nXpT3malBI+mrjKJx8lsr4CqYaJQXJVwot+APIMQP/WPgYGH8IphYkskY17iLc2hFp8j1w6nqYQy3e9WrDJ85FdHvllpNXnbYooCLn4wQVmZ+fqjzx77uTpH63k75rlLL7ixwsAvp/iwV0P0rdtKzZxPEq6Xc4tb5bXlazeMKp/55xbloPWD+TrU08r4can1/j1lasYY4jgYkrst3/x6lv/fS8/16XTydT8G+CbAJlMmu0Pbiff34coHUfBOZwFi0NcXIvVDyqWDZ4UtnEmIUnmH/+fnrrJxxMfUSwmSbHjhxXnvXj51KnCaj5uaAMaGR87jsifCjwJcTe5J99Nd76HTV2dIJL0K5Mo1o88XDyyJKmRSggpJVQrFaauT3Lt02tUkjrQWt7WWl765atv/kujvjVlZx0ZHzsuTr6NYqkZqj1NV1cX7e1ttLa10pLL4vsplNZorYlMhDEh5XKFcrFEsVBkbnZ+6bw65h+9g6iXz7965u/W6lNTU4bhbx3ZpSJOCO4phHX16S1MKNxZh/vR+ZNv/WS9vty3Q8fhI0c6Pc0TVuwBgWFEBg2mB0PO87wWDEXr2VkFVy3yK0GdV7h3f3ny9K+aMf7/A96uhR9HcKjoAAAAAElFTkSuQmCCTd82pg== + diff --git a/assets/resources/Particle/bot_3_3.plist.meta b/assets/resources/Particle/bot_3_3.plist.meta new file mode 100644 index 0000000..4b51bb8 --- /dev/null +++ b/assets/resources/Particle/bot_3_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "870ec0a5-ac62-49c6-b365-09e22bdf9448", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/bot_3_3_1.plist b/assets/resources/Particle/bot_3_3_1.plist new file mode 100644 index 0000000..5907db8 --- /dev/null +++ b/assets/resources/Particle/bot_3_3_1.plist @@ -0,0 +1,106 @@ + +angle +270.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +-150.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +222.000000 +sourcePositiony +285.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +bot_3_3.png +textureImageData +eJwByww084lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxtSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyJFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJFL/3+965M324d2lREsUluYr/AEFg994z579n5j/nnBmhyTj4/MGUmco/CvYxnOwTxy6r2KWIthijc2CUeN5ljTt7buSxF/nud22zfQCQZhg5+MyhXuPU74vjMCJHGn7R8sa5U6e/2QwfbseGiO0fP3JIxP6JIMeWDIrQ2dlBV9cm2tpaaW3Nkstl8X0fz9OICIVCibNn/4dyuYI2asd7b7zxfxunshzeel56dPzwk86pv0TcUyAopejr66G/P08+300qlZh1d3+/rS2HUvFvaiXw1+X5KlgTsYNHj2aNZ7/n4I8QSKd9BgZ2snv3Dnw/tUTEOUdgLDUTERpLYCOMsTgHvlYszs1SLJZxRO+ce/0nE18oseHxI09Ezvy9oB7RWjM4uIvBwd1orcHFZMqBoVQNKQUG6xwiQsbTBCbCOoenFEoL135zDQBx+vX7QaphYiPjT39PxL2AKLZs6eLLXx4hl8uCg8haFioBC+VgyfkWP0XG0ygRwsgSRhECKCXYMGR2ehaAwC+99IURGzn+9D8IPAcwNDTAvn17EATnHPPlGnPlAOccKa3pSKdQShGaiGI1ILQRLpmeSgRPCVPXpnDOgXOvXHzl7eIXQmz0+Nj3geeUEr70pRG2b+8HB1VjuLlYIYgsIkJ7Jk065VGuBVTCWuz4bVBK0EoxeWMy/sC5l+8HoaXxVvpidHzsWZDnRYTHHz+wRGq+UuOzuRJBZPE9TXdbFk8Js8Uy5SC8KykR0CKEtRoLcwsAnHv08R/fP1orROzgt44O1QL7T54Ho6P76O/P45zjZqFCoRqiRGjL+Phas1ipUQ3NPQcRBKWE6RvT8QeOH96vjKOOuxIzkflbz1OpnTu3sXv3DnCOqcUKxVqIVkJHSyZZY1Uiu7p/SgSthJnpGQAs7r6pYR13EBsdH/trRA7nci2MjOwFB9PFGsVaHKnNuSyVMKRYDRoaIFZDEAezM7EapvzwraayuAuWrbGDR49uiSJ5EeDAgWE87VGoBSxUaigROrMZqmFIqUFSEKdYShTzc7PYyGIdP33vlX9baDKPO7AsYkbbv9JCb19fnp6eBzCRZbZQRYCWlId1jsIaSEEiHEqYmYqnoRL+vWne3wNLEXvs8OF268xxgIcfHgAHM8UqUbLpaqUoVGtrHyBZX9M3Y+GInHuzWc7fC0sRq2XUdzRqRz7fTWdnB5XAUKqFAKQ8Tc0YIrtCVrsCRGJilVKZaqVKBBc/eO3MB82lcHcsRUwchwF27doODuZKn0dHgDBauzrXZX5hbh4AjXt3ow43CgUwfOzQIMI3fD9FPv8A1dBQu2Vvqhlz1413NdQ35oX5WCvEyX82ye9VoQCUqHGA/v48SikK1WBZKbXWKViHiCAiFAtxSmjhtzINISEmTp4A6OvrwVpHuXbvTKJRCKAESqUSAF6krjTFcANQAEaZ3wHo6uqkEsa1VDMgIhhjsJGFiNn33nij3BTDDUANHzs06OFtaWvLkU77VAKzUkW/JkjyF4axslrNbBPMNgylRP8uwObNnQCrJrQNI2kTuURNFVSaY7gxKBEeBmhra8VEFrNOobgd9Yh9UVA4txMgl8sSGrtiZ6lRLBFysSntxTmAxXZszPLaoLDsAMhmW+JSfp3Mbo+QI27w+Gk/ToRR20+cOKE37nJjUOioH6ClJUMYuXVFbKUp54iVsSXbAsBEdWHnOv1cM1SE1wbgeR6RtUu8tFp9hay2jpxzWOdobc0BYCU1vEF/G4ZykAXQWmPqCpbUUCuhUWFwDqx1tG+Kl5eI+8aGPW4QCmPC2InPk1wlgtzF87UqncMRWUfX5q7EQPTVDfi6JijxvBDiX7aecMRV73IK65Fu58A6R7atNW6wokf3Hx87ukGfG4ISmAKo1WqI3ElgY/uREDmIIkf/tv54QCvfWbe5NUCBTYgFcZSSijel1QY32PhtZx3GWvL9ffEpjOLo6PGxsY27fm8ohVwBKBSKaKVQxDVUJpVap8nlMXbEZY9Tit0Didpb+fMNed0AVL1GWlws4qlYNGomwk8OFRrHypPWOoeJLD1b++O1pngqaZ/fNyhR/AxgZmYunn4i8X7mHC1+I1FbfRU6F0ctcsLI6COICCDPjzzzdOPHumuECnXrzwHm5uZxURRLPVAOQtpa0qu83nhEnY2jlsrl2Lt3T/y2419Hnzkysl7n7wV98+LFqGdo4ACOwU0dbfjZLFGy4DtzLdRCg7mjjd24Vt76pCPeUjZv7sSakPn5RQ94oXtooDB5aeK/mkcLNEDv4J4cwjFwdPf2xMQiS3smTWsmzUKluiFCt6IuJtu29mIjw9zcAoIcyg8NPJkf2rOtZ/Chhck/eHaKt9/eUJ0hACPj45tEwjkR4Wtf/yoBiiCKSGnNji2bmFwosVhpvFm6GnUlgqcVXa1pZm5O8+GHlygUSssfspy14q4KfCLiJq2TWVDzSlnrhLK2qgoQKZsRR9ZapRSRrjj/3cunThWWfBg9NvbPKPnDXbt3sHXXLqphRGQt3e2ttLek+fjm3KrdqjVpqIBWiq7WDNm0x+TkNNevTzI5efNOkmvDJxXr7V/yZf+xw48qpX6hteYrX/sKkWgCE6vjgw9sIrKW38wsbpjQ7e+JElrTKTqyPlrHiXcYGhYWFikWy5TLZWq1gKAWEIQGnMNEETZZ90opPK0hyW9v3LgJzh5Z5tPo+NjLiJzo39rLwN6H46hFFk9rtm/poFCpMV0sY5PINbP0FxGyvqYlnSKT0njqluqiwYHOnbvAxMQnONyfLTttiZT7C+2i37v26fXOfF8v2fYOaskvNLlQJN/RSkprrs8X1tUZvhecc5RqhlLNLN0w8D2NpxUpLUuHG3HSEEcnzh/i7Wl2do6rV/83MSZnl5XqU5cmFvODe3xEvj43O0f/1j601ljnqIURhWqN7o4cLb63JjFZH1EwkSU0EdUgSg5JDMVquPRXqhoCE1ELQn7+s/cIQwO4759/7cw/3tGDuHF54p2eoYEDkYkGi4uL9G3tXRooso5SLaSjJUM65VEzzWuu3g33moEikNIaP6W5+P4FFuYXsHD6/Mkzz8IKtwYk5Z4DLszOzHHlwiXSKY3vKZQItdDw6cwCWgnd7TnaMukkRfotkiJW1JRWfDxxlanJKSLDdQnl+fozd+0a3bg4Ue4deug/DOaPS4ullAlCuvMPAPEGa5PIaaXIZVLk0inCyDZ00N4IoVVJaYXvKaZvTHLl0q9jv0SOvP/6mx/e+tyKGB4fG9Yi7wP09vUy9MgQxhLfjbJxoy6T8mjN+PhevBYXKzWqwdqmaKPxru99vqeYmbrJhfcv4JzDOV46/9rpF9dkc3h8bBiRsxraO7s6eWRkGNGaIInQrVeKOrIZ2lvSVIKQQjWgGq5+rtYoKaUEL5l+Nz77jMsXLye23Q/OnTxzR1XekN39x8f2KOTHwL502mfv/n20d3ZijMVYuxS9usH2bIa2jI91UAlCKkG4dAPu9sETxWYl/nXpT3malBI+mrjKJx8lsr4CqYaJQXJVwot+APIMQP/WPgYGH8IphYkskY17iLc2hFp8j1w6nqYQy3e9WrDJ85FdHvllpNXnbYooCLn4wQVmZ+fqjzx77uTpH63k75rlLL7ixwsAvp/iwV0P0rdtKzZxPEq6Xc4tb5bXlazeMKp/55xbloPWD+TrU08r4can1/j1lasYY4jgYkrst3/x6lv/fS8/16XTydT8G+CbAJlMmu0Pbiff34coHUfBOZwFi0NcXIvVDyqWDZ4UtnEmIUnmH/+fnrrJxxMfUSwmSbHjhxXnvXj51KnCaj5uaAMaGR87jsifCjwJcTe5J99Nd76HTV2dIJL0K5Mo1o88XDyyJKmRSggpJVQrFaauT3Lt02tUkjrQWt7WWl765atv/kujvjVlZx0ZHzsuTr6NYqkZqj1NV1cX7e1ttLa10pLL4vsplNZorYlMhDEh5XKFcrFEsVBkbnZ+6bw65h+9g6iXz7965u/W6lNTU4bhbx3ZpSJOCO4phHX16S1MKNxZh/vR+ZNv/WS9vty3Q8fhI0c6Pc0TVuwBgWFEBg2mB0PO87wWDEXr2VkFVy3yK0GdV7h3f3ny9K+aMf7/A96uhR9HcKjoAAAAAElFTkSuQmCCTd82pg== + diff --git a/assets/resources/Particle/bot_3_3_1.plist.meta b/assets/resources/Particle/bot_3_3_1.plist.meta new file mode 100644 index 0000000..67a0d3d --- /dev/null +++ b/assets/resources/Particle/bot_3_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "9f9ed084-4b2f-470c-af4c-da9fe4685238", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_1_1.plist b/assets/resources/Particle/left_1_1.plist new file mode 100644 index 0000000..c89feec --- /dev/null +++ b/assets/resources/Particle/left_1_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +222.000000 +sourcePositiony +212.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_1_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_1_1.plist.meta b/assets/resources/Particle/left_1_1.plist.meta new file mode 100644 index 0000000..f8d5504 --- /dev/null +++ b/assets/resources/Particle/left_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "cf99e49b-06ca-454a-9a13-29c4e96328c6", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_1_1_1.plist b/assets/resources/Particle/left_1_1_1.plist new file mode 100644 index 0000000..c89feec --- /dev/null +++ b/assets/resources/Particle/left_1_1_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +222.000000 +sourcePositiony +212.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_1_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_1_1_1.plist.meta b/assets/resources/Particle/left_1_1_1.plist.meta new file mode 100644 index 0000000..6e36fbd --- /dev/null +++ b/assets/resources/Particle/left_1_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "7cf74208-27a8-4df5-9258-870a2746868e", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_1_2.plist b/assets/resources/Particle/left_1_2.plist new file mode 100644 index 0000000..f935a5e --- /dev/null +++ b/assets/resources/Particle/left_1_2.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +100.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +189.000000 +sourcePositiony +252.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_1_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_1_2.plist.meta b/assets/resources/Particle/left_1_2.plist.meta new file mode 100644 index 0000000..37ec47a --- /dev/null +++ b/assets/resources/Particle/left_1_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "b180f2e0-f364-4832-bcd7-c0727c15c5e0", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_1_2_1.plist b/assets/resources/Particle/left_1_2_1.plist new file mode 100644 index 0000000..f935a5e --- /dev/null +++ b/assets/resources/Particle/left_1_2_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +100.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +189.000000 +sourcePositiony +252.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_1_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_1_2_1.plist.meta b/assets/resources/Particle/left_1_2_1.plist.meta new file mode 100644 index 0000000..d9c9710 --- /dev/null +++ b/assets/resources/Particle/left_1_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "52e04d9a-add5-4d61-8aed-2a2576c268eb", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_1_3.plist b/assets/resources/Particle/left_1_3.plist new file mode 100644 index 0000000..6264a7e --- /dev/null +++ b/assets/resources/Particle/left_1_3.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +100.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +197.000000 +sourcePositiony +230.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_1_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_1_3.plist.meta b/assets/resources/Particle/left_1_3.plist.meta new file mode 100644 index 0000000..c2ab4b1 --- /dev/null +++ b/assets/resources/Particle/left_1_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "2cd94fa9-72c6-4357-88c2-697eeb061de3", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_1_3_1.plist b/assets/resources/Particle/left_1_3_1.plist new file mode 100644 index 0000000..6264a7e --- /dev/null +++ b/assets/resources/Particle/left_1_3_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +100.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +197.000000 +sourcePositiony +230.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_1_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_1_3_1.plist.meta b/assets/resources/Particle/left_1_3_1.plist.meta new file mode 100644 index 0000000..5fde48e --- /dev/null +++ b/assets/resources/Particle/left_1_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "e7bf65df-6953-437a-9551-5c4e7b6f1b5e", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_2_1.plist b/assets/resources/Particle/left_2_1.plist new file mode 100644 index 0000000..513df20 --- /dev/null +++ b/assets/resources/Particle/left_2_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +201.000000 +sourcePositiony +253.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_2_1.png +textureImageData +eJwByww084lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxtSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyJFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJFL/3+965M324d2lREsUluYr/AEFg994z579n5j/nnBmhyTj4/MGUmco/CvYxnOwTxy6r2KWIthijc2CUeN5ljTt7buSxF/nud22zfQCQZhg5+MyhXuPU74vjMCJHGn7R8sa5U6e/2QwfbseGiO0fP3JIxP6JIMeWDIrQ2dlBV9cm2tpaaW3Nkstl8X0fz9OICIVCibNn/4dyuYI2asd7b7zxfxunshzeel56dPzwk86pv0TcUyAopejr66G/P08+300qlZh1d3+/rS2HUvFvaiXw1+X5KlgTsYNHj2aNZ7/n4I8QSKd9BgZ2snv3Dnw/tUTEOUdgLDUTERpLYCOMsTgHvlYszs1SLJZxRO+ce/0nE18oseHxI09Ezvy9oB7RWjM4uIvBwd1orcHFZMqBoVQNKQUG6xwiQsbTBCbCOoenFEoL135zDQBx+vX7QaphYiPjT39PxL2AKLZs6eLLXx4hl8uCg8haFioBC+VgyfkWP0XG0ygRwsgSRhECKCXYMGR2ehaAwC+99IURGzn+9D8IPAcwNDTAvn17EATnHPPlGnPlAOccKa3pSKdQShGaiGI1ILQRLpmeSgRPCVPXpnDOgXOvXHzl7eIXQmz0+Nj3geeUEr70pRG2b+8HB1VjuLlYIYgsIkJ7Jk065VGuBVTCWuz4bVBK0EoxeWMy/sC5l+8HoaXxVvpidHzsWZDnRYTHHz+wRGq+UuOzuRJBZPE9TXdbFk8Js8Uy5SC8KykR0CKEtRoLcwsAnHv08R/fP1orROzgt44O1QL7T54Ho6P76O/P45zjZqFCoRqiRGjL+Phas1ipUQ3NPQcRBKWE6RvT8QeOH96vjKOOuxIzkflbz1OpnTu3sXv3DnCOqcUKxVqIVkJHSyZZY1Uiu7p/SgSthJnpGQAs7r6pYR13EBsdH/trRA7nci2MjOwFB9PFGsVaHKnNuSyVMKRYDRoaIFZDEAezM7EapvzwraayuAuWrbGDR49uiSJ5EeDAgWE87VGoBSxUaigROrMZqmFIqUFSEKdYShTzc7PYyGIdP33vlX9baDKPO7AsYkbbv9JCb19fnp6eBzCRZbZQRYCWlId1jsIaSEEiHEqYmYqnoRL+vWne3wNLEXvs8OF268xxgIcfHgAHM8UqUbLpaqUoVGtrHyBZX9M3Y+GInHuzWc7fC0sRq2XUdzRqRz7fTWdnB5XAUKqFAKQ8Tc0YIrtCVrsCRGJilVKZaqVKBBc/eO3MB82lcHcsRUwchwF27doODuZKn0dHgDBauzrXZX5hbh4AjXt3ow43CgUwfOzQIMI3fD9FPv8A1dBQu2Vvqhlz1413NdQ35oX5WCvEyX82ye9VoQCUqHGA/v48SikK1WBZKbXWKViHiCAiFAtxSmjhtzINISEmTp4A6OvrwVpHuXbvTKJRCKAESqUSAF6krjTFcANQAEaZ3wHo6uqkEsa1VDMgIhhjsJGFiNn33nij3BTDDUANHzs06OFtaWvLkU77VAKzUkW/JkjyF4axslrNbBPMNgylRP8uwObNnQCrJrQNI2kTuURNFVSaY7gxKBEeBmhra8VEFrNOobgd9Yh9UVA4txMgl8sSGrtiZ6lRLBFysSntxTmAxXZszPLaoLDsAMhmW+JSfp3Mbo+QI27w+Gk/ToRR20+cOKE37nJjUOioH6ClJUMYuXVFbKUp54iVsSXbAsBEdWHnOv1cM1SE1wbgeR6RtUu8tFp9hay2jpxzWOdobc0BYCU1vEF/G4ZykAXQWmPqCpbUUCuhUWFwDqx1tG+Kl5eI+8aGPW4QCmPC2InPk1wlgtzF87UqncMRWUfX5q7EQPTVDfi6JijxvBDiX7aecMRV73IK65Fu58A6R7atNW6wokf3Hx87ukGfG4ISmAKo1WqI3ElgY/uREDmIIkf/tv54QCvfWbe5NUCBTYgFcZSSijel1QY32PhtZx3GWvL9ffEpjOLo6PGxsY27fm8ohVwBKBSKaKVQxDVUJpVap8nlMXbEZY9Tit0Didpb+fMNed0AVL1GWlws4qlYNGomwk8OFRrHypPWOoeJLD1b++O1pngqaZ/fNyhR/AxgZmYunn4i8X7mHC1+I1FbfRU6F0ctcsLI6COICCDPjzzzdOPHumuECnXrzwHm5uZxURRLPVAOQtpa0qu83nhEnY2jlsrl2Lt3T/y2419Hnzkysl7n7wV98+LFqGdo4ACOwU0dbfjZLFGy4DtzLdRCg7mjjd24Vt76pCPeUjZv7sSakPn5RQ94oXtooDB5aeK/mkcLNEDv4J4cwjFwdPf2xMQiS3smTWsmzUKluiFCt6IuJtu29mIjw9zcAoIcyg8NPJkf2rOtZ/Chhck/eHaKt9/eUJ0hACPj45tEwjkR4Wtf/yoBiiCKSGnNji2bmFwosVhpvFm6GnUlgqcVXa1pZm5O8+GHlygUSssfspy14q4KfCLiJq2TWVDzSlnrhLK2qgoQKZsRR9ZapRSRrjj/3cunThWWfBg9NvbPKPnDXbt3sHXXLqphRGQt3e2ttLek+fjm3KrdqjVpqIBWiq7WDNm0x+TkNNevTzI5efNOkmvDJxXr7V/yZf+xw48qpX6hteYrX/sKkWgCE6vjgw9sIrKW38wsbpjQ7e+JElrTKTqyPlrHiXcYGhYWFikWy5TLZWq1gKAWEIQGnMNEETZZ90opPK0hyW9v3LgJzh5Z5tPo+NjLiJzo39rLwN6H46hFFk9rtm/poFCpMV0sY5PINbP0FxGyvqYlnSKT0njqluqiwYHOnbvAxMQnONyfLTttiZT7C+2i37v26fXOfF8v2fYOaskvNLlQJN/RSkprrs8X1tUZvhecc5RqhlLNLN0w8D2NpxUpLUuHG3HSEEcnzh/i7Wl2do6rV/83MSZnl5XqU5cmFvODe3xEvj43O0f/1j601ljnqIURhWqN7o4cLb63JjFZH1EwkSU0EdUgSg5JDMVquPRXqhoCE1ELQn7+s/cIQwO4759/7cw/3tGDuHF54p2eoYEDkYkGi4uL9G3tXRooso5SLaSjJUM65VEzzWuu3g33moEikNIaP6W5+P4FFuYXsHD6/Mkzz8IKtwYk5Z4DLszOzHHlwiXSKY3vKZQItdDw6cwCWgnd7TnaMukkRfotkiJW1JRWfDxxlanJKSLDdQnl+fozd+0a3bg4Ue4deug/DOaPS4ullAlCuvMPAPEGa5PIaaXIZVLk0inCyDZ00N4IoVVJaYXvKaZvTHLl0q9jv0SOvP/6mx/e+tyKGB4fG9Yi7wP09vUy9MgQxhLfjbJxoy6T8mjN+PhevBYXKzWqwdqmaKPxru99vqeYmbrJhfcv4JzDOV46/9rpF9dkc3h8bBiRsxraO7s6eWRkGNGaIInQrVeKOrIZ2lvSVIKQQjWgGq5+rtYoKaUEL5l+Nz77jMsXLye23Q/OnTxzR1XekN39x8f2KOTHwL502mfv/n20d3ZijMVYuxS9usH2bIa2jI91UAlCKkG4dAPu9sETxWYl/nXpT3malBI+mrjKJx8lsr4CqYaJQXJVwot+APIMQP/WPgYGH8IphYkskY17iLc2hFp8j1w6nqYQy3e9WrDJ85FdHvllpNXnbYooCLn4wQVmZ+fqjzx77uTpH63k75rlLL7ixwsAvp/iwV0P0rdtKzZxPEq6Xc4tb5bXlazeMKp/55xbloPWD+TrU08r4can1/j1lasYY4jgYkrst3/x6lv/fS8/16XTydT8G+CbAJlMmu0Pbiff34coHUfBOZwFi0NcXIvVDyqWDZ4UtnEmIUnmH/+fnrrJxxMfUSwmSbHjhxXnvXj51KnCaj5uaAMaGR87jsifCjwJcTe5J99Nd76HTV2dIJL0K5Mo1o88XDyyJKmRSggpJVQrFaauT3Lt02tUkjrQWt7WWl765atv/kujvjVlZx0ZHzsuTr6NYqkZqj1NV1cX7e1ttLa10pLL4vsplNZorYlMhDEh5XKFcrFEsVBkbnZ+6bw65h+9g6iXz7965u/W6lNTU4bhbx3ZpSJOCO4phHX16S1MKNxZh/vR+ZNv/WS9vty3Q8fhI0c6Pc0TVuwBgWFEBg2mB0PO87wWDEXr2VkFVy3yK0GdV7h3f3ny9K+aMf7/A96uhR9HcKjoAAAAAElFTkSuQmCCTd82pg== + diff --git a/assets/resources/Particle/left_2_1.plist.meta b/assets/resources/Particle/left_2_1.plist.meta new file mode 100644 index 0000000..6d1a491 --- /dev/null +++ b/assets/resources/Particle/left_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "15604d4e-0b1d-47bb-ae71-6ddc8d6d8a96", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_2_1_1.plist b/assets/resources/Particle/left_2_1_1.plist new file mode 100644 index 0000000..513df20 --- /dev/null +++ b/assets/resources/Particle/left_2_1_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +201.000000 +sourcePositiony +253.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_2_1.png +textureImageData +eJwByww084lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxtSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyJFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJFL/3+965M324d2lREsUluYr/AEFg994z579n5j/nnBmhyTj4/MGUmco/CvYxnOwTxy6r2KWIthijc2CUeN5ljTt7buSxF/nud22zfQCQZhg5+MyhXuPU74vjMCJHGn7R8sa5U6e/2QwfbseGiO0fP3JIxP6JIMeWDIrQ2dlBV9cm2tpaaW3Nkstl8X0fz9OICIVCibNn/4dyuYI2asd7b7zxfxunshzeel56dPzwk86pv0TcUyAopejr66G/P08+300qlZh1d3+/rS2HUvFvaiXw1+X5KlgTsYNHj2aNZ7/n4I8QSKd9BgZ2snv3Dnw/tUTEOUdgLDUTERpLYCOMsTgHvlYszs1SLJZxRO+ce/0nE18oseHxI09Ezvy9oB7RWjM4uIvBwd1orcHFZMqBoVQNKQUG6xwiQsbTBCbCOoenFEoL135zDQBx+vX7QaphYiPjT39PxL2AKLZs6eLLXx4hl8uCg8haFioBC+VgyfkWP0XG0ygRwsgSRhECKCXYMGR2ehaAwC+99IURGzn+9D8IPAcwNDTAvn17EATnHPPlGnPlAOccKa3pSKdQShGaiGI1ILQRLpmeSgRPCVPXpnDOgXOvXHzl7eIXQmz0+Nj3geeUEr70pRG2b+8HB1VjuLlYIYgsIkJ7Jk065VGuBVTCWuz4bVBK0EoxeWMy/sC5l+8HoaXxVvpidHzsWZDnRYTHHz+wRGq+UuOzuRJBZPE9TXdbFk8Js8Uy5SC8KykR0CKEtRoLcwsAnHv08R/fP1orROzgt44O1QL7T54Ho6P76O/P45zjZqFCoRqiRGjL+Phas1ipUQ3NPQcRBKWE6RvT8QeOH96vjKOOuxIzkflbz1OpnTu3sXv3DnCOqcUKxVqIVkJHSyZZY1Uiu7p/SgSthJnpGQAs7r6pYR13EBsdH/trRA7nci2MjOwFB9PFGsVaHKnNuSyVMKRYDRoaIFZDEAezM7EapvzwraayuAuWrbGDR49uiSJ5EeDAgWE87VGoBSxUaigROrMZqmFIqUFSEKdYShTzc7PYyGIdP33vlX9baDKPO7AsYkbbv9JCb19fnp6eBzCRZbZQRYCWlId1jsIaSEEiHEqYmYqnoRL+vWne3wNLEXvs8OF268xxgIcfHgAHM8UqUbLpaqUoVGtrHyBZX9M3Y+GInHuzWc7fC0sRq2XUdzRqRz7fTWdnB5XAUKqFAKQ8Tc0YIrtCVrsCRGJilVKZaqVKBBc/eO3MB82lcHcsRUwchwF27doODuZKn0dHgDBauzrXZX5hbh4AjXt3ow43CgUwfOzQIMI3fD9FPv8A1dBQu2Vvqhlz1413NdQ35oX5WCvEyX82ye9VoQCUqHGA/v48SikK1WBZKbXWKViHiCAiFAtxSmjhtzINISEmTp4A6OvrwVpHuXbvTKJRCKAESqUSAF6krjTFcANQAEaZ3wHo6uqkEsa1VDMgIhhjsJGFiNn33nij3BTDDUANHzs06OFtaWvLkU77VAKzUkW/JkjyF4axslrNbBPMNgylRP8uwObNnQCrJrQNI2kTuURNFVSaY7gxKBEeBmhra8VEFrNOobgd9Yh9UVA4txMgl8sSGrtiZ6lRLBFysSntxTmAxXZszPLaoLDsAMhmW+JSfp3Mbo+QI27w+Gk/ToRR20+cOKE37nJjUOioH6ClJUMYuXVFbKUp54iVsSXbAsBEdWHnOv1cM1SE1wbgeR6RtUu8tFp9hay2jpxzWOdobc0BYCU1vEF/G4ZykAXQWmPqCpbUUCuhUWFwDqx1tG+Kl5eI+8aGPW4QCmPC2InPk1wlgtzF87UqncMRWUfX5q7EQPTVDfi6JijxvBDiX7aecMRV73IK65Fu58A6R7atNW6wokf3Hx87ukGfG4ISmAKo1WqI3ElgY/uREDmIIkf/tv54QCvfWbe5NUCBTYgFcZSSijel1QY32PhtZx3GWvL9ffEpjOLo6PGxsY27fm8ohVwBKBSKaKVQxDVUJpVap8nlMXbEZY9Tit0Didpb+fMNed0AVL1GWlws4qlYNGomwk8OFRrHypPWOoeJLD1b++O1pngqaZ/fNyhR/AxgZmYunn4i8X7mHC1+I1FbfRU6F0ctcsLI6COICCDPjzzzdOPHumuECnXrzwHm5uZxURRLPVAOQtpa0qu83nhEnY2jlsrl2Lt3T/y2419Hnzkysl7n7wV98+LFqGdo4ACOwU0dbfjZLFGy4DtzLdRCg7mjjd24Vt76pCPeUjZv7sSakPn5RQ94oXtooDB5aeK/mkcLNEDv4J4cwjFwdPf2xMQiS3smTWsmzUKluiFCt6IuJtu29mIjw9zcAoIcyg8NPJkf2rOtZ/Chhck/eHaKt9/eUJ0hACPj45tEwjkR4Wtf/yoBiiCKSGnNji2bmFwosVhpvFm6GnUlgqcVXa1pZm5O8+GHlygUSssfspy14q4KfCLiJq2TWVDzSlnrhLK2qgoQKZsRR9ZapRSRrjj/3cunThWWfBg9NvbPKPnDXbt3sHXXLqphRGQt3e2ttLek+fjm3KrdqjVpqIBWiq7WDNm0x+TkNNevTzI5efNOkmvDJxXr7V/yZf+xw48qpX6hteYrX/sKkWgCE6vjgw9sIrKW38wsbpjQ7e+JElrTKTqyPlrHiXcYGhYWFikWy5TLZWq1gKAWEIQGnMNEETZZ90opPK0hyW9v3LgJzh5Z5tPo+NjLiJzo39rLwN6H46hFFk9rtm/poFCpMV0sY5PINbP0FxGyvqYlnSKT0njqluqiwYHOnbvAxMQnONyfLTttiZT7C+2i37v26fXOfF8v2fYOaskvNLlQJN/RSkprrs8X1tUZvhecc5RqhlLNLN0w8D2NpxUpLUuHG3HSEEcnzh/i7Wl2do6rV/83MSZnl5XqU5cmFvODe3xEvj43O0f/1j601ljnqIURhWqN7o4cLb63JjFZH1EwkSU0EdUgSg5JDMVquPRXqhoCE1ELQn7+s/cIQwO4759/7cw/3tGDuHF54p2eoYEDkYkGi4uL9G3tXRooso5SLaSjJUM65VEzzWuu3g33moEikNIaP6W5+P4FFuYXsHD6/Mkzz8IKtwYk5Z4DLszOzHHlwiXSKY3vKZQItdDw6cwCWgnd7TnaMukkRfotkiJW1JRWfDxxlanJKSLDdQnl+fozd+0a3bg4Ue4deug/DOaPS4ullAlCuvMPAPEGa5PIaaXIZVLk0inCyDZ00N4IoVVJaYXvKaZvTHLl0q9jv0SOvP/6mx/e+tyKGB4fG9Yi7wP09vUy9MgQxhLfjbJxoy6T8mjN+PhevBYXKzWqwdqmaKPxru99vqeYmbrJhfcv4JzDOV46/9rpF9dkc3h8bBiRsxraO7s6eWRkGNGaIInQrVeKOrIZ2lvSVIKQQjWgGq5+rtYoKaUEL5l+Nz77jMsXLye23Q/OnTxzR1XekN39x8f2KOTHwL502mfv/n20d3ZijMVYuxS9usH2bIa2jI91UAlCKkG4dAPu9sETxWYl/nXpT3malBI+mrjKJx8lsr4CqYaJQXJVwot+APIMQP/WPgYGH8IphYkskY17iLc2hFp8j1w6nqYQy3e9WrDJ85FdHvllpNXnbYooCLn4wQVmZ+fqjzx77uTpH63k75rlLL7ixwsAvp/iwV0P0rdtKzZxPEq6Xc4tb5bXlazeMKp/55xbloPWD+TrU08r4can1/j1lasYY4jgYkrst3/x6lv/fS8/16XTydT8G+CbAJlMmu0Pbiff34coHUfBOZwFi0NcXIvVDyqWDZ4UtnEmIUnmH/+fnrrJxxMfUSwmSbHjhxXnvXj51KnCaj5uaAMaGR87jsifCjwJcTe5J99Nd76HTV2dIJL0K5Mo1o88XDyyJKmRSggpJVQrFaauT3Lt02tUkjrQWt7WWl765atv/kujvjVlZx0ZHzsuTr6NYqkZqj1NV1cX7e1ttLa10pLL4vsplNZorYlMhDEh5XKFcrFEsVBkbnZ+6bw65h+9g6iXz7965u/W6lNTU4bhbx3ZpSJOCO4phHX16S1MKNxZh/vR+ZNv/WS9vty3Q8fhI0c6Pc0TVuwBgWFEBg2mB0PO87wWDEXr2VkFVy3yK0GdV7h3f3ny9K+aMf7/A96uhR9HcKjoAAAAAElFTkSuQmCCTd82pg== + diff --git a/assets/resources/Particle/left_2_1_1.plist.meta b/assets/resources/Particle/left_2_1_1.plist.meta new file mode 100644 index 0000000..8eeb015 --- /dev/null +++ b/assets/resources/Particle/left_2_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "7aef84fa-1599-4e26-9f9f-f03c57555402", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_2_2.plist b/assets/resources/Particle/left_2_2.plist new file mode 100644 index 0000000..946802e --- /dev/null +++ b/assets/resources/Particle/left_2_2.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +235.000000 +sourcePositiony +255.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_2_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_2_2.plist.meta b/assets/resources/Particle/left_2_2.plist.meta new file mode 100644 index 0000000..644198c --- /dev/null +++ b/assets/resources/Particle/left_2_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "ed81d2b1-5dbe-4eca-a472-3a22134ea19e", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_2_2_1.plist b/assets/resources/Particle/left_2_2_1.plist new file mode 100644 index 0000000..946802e --- /dev/null +++ b/assets/resources/Particle/left_2_2_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +235.000000 +sourcePositiony +255.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_2_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_2_2_1.plist.meta b/assets/resources/Particle/left_2_2_1.plist.meta new file mode 100644 index 0000000..cf52bed --- /dev/null +++ b/assets/resources/Particle/left_2_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "5949d3bc-f476-4f63-b038-22fa8cba4e62", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_2_3.plist b/assets/resources/Particle/left_2_3.plist new file mode 100644 index 0000000..7d37149 --- /dev/null +++ b/assets/resources/Particle/left_2_3.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.990000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +161.000000 +sourcePositiony +304.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_2_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_2_3.plist.meta b/assets/resources/Particle/left_2_3.plist.meta new file mode 100644 index 0000000..37f1c18 --- /dev/null +++ b/assets/resources/Particle/left_2_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "87bc6933-4c65-48f7-ac9e-347b2145d2ef", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_2_3_1.plist b/assets/resources/Particle/left_2_3_1.plist new file mode 100644 index 0000000..7d37149 --- /dev/null +++ b/assets/resources/Particle/left_2_3_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.990000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +161.000000 +sourcePositiony +304.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_2_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_2_3_1.plist.meta b/assets/resources/Particle/left_2_3_1.plist.meta new file mode 100644 index 0000000..baae9f2 --- /dev/null +++ b/assets/resources/Particle/left_2_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "369304fd-101d-46ed-92be-ecbd8fad18ec", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_3_1.plist b/assets/resources/Particle/left_3_1.plist new file mode 100644 index 0000000..10c213e --- /dev/null +++ b/assets/resources/Particle/left_3_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +170.000000 +sourcePositiony +207.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_3_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_3_1.plist.meta b/assets/resources/Particle/left_3_1.plist.meta new file mode 100644 index 0000000..d4037d5 --- /dev/null +++ b/assets/resources/Particle/left_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "23f7b3b3-2805-44bf-8204-d1135244b9ae", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_3_1_1.plist b/assets/resources/Particle/left_3_1_1.plist new file mode 100644 index 0000000..10c213e --- /dev/null +++ b/assets/resources/Particle/left_3_1_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +170.000000 +sourcePositiony +207.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_3_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_3_1_1.plist.meta b/assets/resources/Particle/left_3_1_1.plist.meta new file mode 100644 index 0000000..5a18865 --- /dev/null +++ b/assets/resources/Particle/left_3_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "1413285e-fbb4-449b-aae6-ed678dfc570d", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_3_2.plist b/assets/resources/Particle/left_3_2.plist new file mode 100644 index 0000000..2fb343d --- /dev/null +++ b/assets/resources/Particle/left_3_2.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +200.000000 +sourcePositiony +269.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_3_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_3_2.plist.meta b/assets/resources/Particle/left_3_2.plist.meta new file mode 100644 index 0000000..ca86e52 --- /dev/null +++ b/assets/resources/Particle/left_3_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "9bcf0f0b-4390-407a-b338-9727ef89750a", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_3_2_1.plist b/assets/resources/Particle/left_3_2_1.plist new file mode 100644 index 0000000..2fb343d --- /dev/null +++ b/assets/resources/Particle/left_3_2_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +200.000000 +sourcePositiony +269.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_3_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_3_2_1.plist.meta b/assets/resources/Particle/left_3_2_1.plist.meta new file mode 100644 index 0000000..3cf88af --- /dev/null +++ b/assets/resources/Particle/left_3_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "72db9548-9c2d-44a5-9b20-b2e1bc503bde", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_3_3.plist b/assets/resources/Particle/left_3_3.plist new file mode 100644 index 0000000..c3eb38d --- /dev/null +++ b/assets/resources/Particle/left_3_3.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +180.000000 +sourcePositiony +190.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_3_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_3_3.plist.meta b/assets/resources/Particle/left_3_3.plist.meta new file mode 100644 index 0000000..0618281 --- /dev/null +++ b/assets/resources/Particle/left_3_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "523feab4-8c80-4417-90c3-47e34cf18f66", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/left_3_3_1.plist b/assets/resources/Particle/left_3_3_1.plist new file mode 100644 index 0000000..c3eb38d --- /dev/null +++ b/assets/resources/Particle/left_3_3_1.plist @@ -0,0 +1,106 @@ + +angle +180.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +-150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +180.000000 +sourcePositiony +190.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +left_3_3.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/left_3_3_1.plist.meta b/assets/resources/Particle/left_3_3_1.plist.meta new file mode 100644 index 0000000..a9cebd6 --- /dev/null +++ b/assets/resources/Particle/left_3_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "4785d85b-8f9b-4bda-a3e6-db6fda98448d", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_1_1.plist b/assets/resources/Particle/right_1_1.plist new file mode 100644 index 0000000..413a80b --- /dev/null +++ b/assets/resources/Particle/right_1_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +126.000000 +sourcePositiony +227.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_1_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_1_1.plist.meta b/assets/resources/Particle/right_1_1.plist.meta new file mode 100644 index 0000000..82935f7 --- /dev/null +++ b/assets/resources/Particle/right_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "246d7311-437e-4184-8547-664b85645015", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_1_1_1.plist b/assets/resources/Particle/right_1_1_1.plist new file mode 100644 index 0000000..413a80b --- /dev/null +++ b/assets/resources/Particle/right_1_1_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +126.000000 +sourcePositiony +227.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_1_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_1_1_1.plist.meta b/assets/resources/Particle/right_1_1_1.plist.meta new file mode 100644 index 0000000..4c0b6a5 --- /dev/null +++ b/assets/resources/Particle/right_1_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "aefab8fc-93d1-46a4-bcad-37868e23ed88", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_1_2.plist b/assets/resources/Particle/right_1_2.plist new file mode 100644 index 0000000..ddd437b --- /dev/null +++ b/assets/resources/Particle/right_1_2.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +121.000000 +sourcePositiony +308.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_1_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_1_2.plist.meta b/assets/resources/Particle/right_1_2.plist.meta new file mode 100644 index 0000000..c215c86 --- /dev/null +++ b/assets/resources/Particle/right_1_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "abe40804-998a-4602-a647-ea4bffb74929", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_1_2_1.plist b/assets/resources/Particle/right_1_2_1.plist new file mode 100644 index 0000000..ddd437b --- /dev/null +++ b/assets/resources/Particle/right_1_2_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +121.000000 +sourcePositiony +308.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_1_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_1_2_1.plist.meta b/assets/resources/Particle/right_1_2_1.plist.meta new file mode 100644 index 0000000..b675fb2 --- /dev/null +++ b/assets/resources/Particle/right_1_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "12e1b849-ce38-42b3-ad4c-afc5ecc39f53", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_1_3.plist b/assets/resources/Particle/right_1_3.plist new file mode 100644 index 0000000..70691cb --- /dev/null +++ b/assets/resources/Particle/right_1_3.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +94.000000 +sourcePositiony +170.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_1_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_1_3.plist.meta b/assets/resources/Particle/right_1_3.plist.meta new file mode 100644 index 0000000..e4b5a40 --- /dev/null +++ b/assets/resources/Particle/right_1_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "259cbf2f-a53d-49c6-9c0d-c28875e8bcd4", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_1_3_1.plist b/assets/resources/Particle/right_1_3_1.plist new file mode 100644 index 0000000..70691cb --- /dev/null +++ b/assets/resources/Particle/right_1_3_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +40.000000 +sourcePositionx +94.000000 +sourcePositiony +170.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_1_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_1_3_1.plist.meta b/assets/resources/Particle/right_1_3_1.plist.meta new file mode 100644 index 0000000..0f8a262 --- /dev/null +++ b/assets/resources/Particle/right_1_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "91939f84-461f-4e10-8fc6-9d5d1c0a755f", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_2_1.plist b/assets/resources/Particle/right_2_1.plist new file mode 100644 index 0000000..bd49334 --- /dev/null +++ b/assets/resources/Particle/right_2_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +91.000000 +sourcePositiony +272.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_2_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/right_2_1.plist.meta b/assets/resources/Particle/right_2_1.plist.meta new file mode 100644 index 0000000..353aa9a --- /dev/null +++ b/assets/resources/Particle/right_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "7d728925-7cba-4ba2-83ac-9902652f55bf", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_2_1_1.plist b/assets/resources/Particle/right_2_1_1.plist new file mode 100644 index 0000000..bd49334 --- /dev/null +++ b/assets/resources/Particle/right_2_1_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +91.000000 +sourcePositiony +272.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_2_1.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/right_2_1_1.plist.meta b/assets/resources/Particle/right_2_1_1.plist.meta new file mode 100644 index 0000000..90fea59 --- /dev/null +++ b/assets/resources/Particle/right_2_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "e9fa150a-0934-49b2-8ff1-7a3731a51ef5", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_2_2.plist b/assets/resources/Particle/right_2_2.plist new file mode 100644 index 0000000..322e8c9 --- /dev/null +++ b/assets/resources/Particle/right_2_2.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +96.000000 +sourcePositiony +252.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_2_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/right_2_2.plist.meta b/assets/resources/Particle/right_2_2.plist.meta new file mode 100644 index 0000000..4ac6efc --- /dev/null +++ b/assets/resources/Particle/right_2_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "68e20e2a-61c1-4058-8cdb-4994aec5f8ce", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_2_2_1.plist b/assets/resources/Particle/right_2_2_1.plist new file mode 100644 index 0000000..322e8c9 --- /dev/null +++ b/assets/resources/Particle/right_2_2_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +96.000000 +sourcePositiony +252.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_2_2.png +textureImageData +eJwBxww484lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxpSURBVGiBxZpdbFzHdcd/Z+bu3eUuP0RKJpekPiyKFmnJFGkpsdsgRpC4sERLEeUUAgqjKFDEcOyiBYo+9Kl9yHuBPrVx0j4UKIIUNhrLsi0ZSdHCtoo2DZxItqVICmW7jWWJ3x+73I9778z04d6lRUkUl+Qq/gMEgd17z5z/npn/nHNmhAbj0POHUtFk/lGwj+Fkvzj6rKJPYbYZo3NgFFpf0bhz54cfe5Hvftc22gcAaYSRQ88c7o6c+n1xHEHkaN0vWt44f/rMNxvhw+3YFLEDY0cPi9g/EeT4skER2tvb6OjYQktLM83NWXK5LL7v43kaEaFQWOLcuf+hVCqjI7XrvTfe+L/NU1kJbyMvPTp25Enn1F8i7ikQlFL09HTR25snn+8klUrMuru/39KSQ6n4N7US+BvyfA2si9ihY8eykWe/5+CPEEinffr7d7Nnzy58P7VMxDlHEFmqkSGMLIE1RJHFOfC1YnFulmKxhMO8c/71n4x/ocSGxo4+YVz094J6RGvNwEAfAwN70FqDi8mUgoilSshSEGGdQ0TIeJogMljn8JRCaeH6b64DIE6/fj9I1U1seOzp74m4FxDFtm0dfPnLw+RyWXBgrGWhHLBQCpadb/JTZDyNEiE0ltAYBFBKsGHI7PQsAIG/9NIXRmz4xNP/IPAcwOBgP/v370UQnHPMl6rMlQKcc6S0pi2dQilFGBmKlYDQGlwyPZUInhImr0/inAPnXrn0ytvFL4TYyInR7wPPKSV86UvD7NzZCw4qUcTUYpnAWESE1kyadMqjVA0oh9XY8duglKCVYuLmRPyBcy/fD0LL4632xcjY6LMgz4sIjz9+cJnUfLnKZ3NLBMbie5rOliyeEmaLJUpBeFdSIqBFCKtVFuYWADj/6OM/vn+0VonYoW8dGwxC+09aw8jIfnp78zjnmCqUKVRClAgtGR9faxbLVSphdM9BBEEpYfrmdPyB44f3K+Oo4a7EIhP9rdYqtXv3Dvbs2QXOMblYplgN0Upoa8oka6yCsWv7p0TQSpiZngHA4u6bGtZwB7GRsdG/RuRILtfE8PA+cDBdrFKsxpHamstSDkOKlaCuAWI1BHEwOxOrYcoP32ooi7tgxRo7dOzYNmPlRYCDB4fwtEehGrBQrqJEaM9mqIQhS3WSgjjFUqKYn5vFGot1/PS9V/5tocE87sCKiEXa/pUWunt68nR1PUBkLLOFCgI0pTyscxTWQQoS4VDCzGQ8DZXw7w3z/h5YjthjR460WmdOADz8cD84mClWMMmmq5WiUKmuf4BkfU1PxcJhnHuzUc7fC8sRq2bUdzTsyuc7aW9voxxELFVDAFKephpFGLtKVrsKRGJi5aUSlXIFA5c+eO3sB42lcHcsR0wcRwD6+naCg7mlz6MjQGjWr841mV+YmwdA497drMP1QgEMHT88gPAN30+Rzz9AJYyo3rI3VaPorhvvWqhtzAvzsVaIk/9skN9rQgEoUWMAvb15lFIUKsGKUmq9U7AGEUFEKBbilNDCb2UaQkJMnDwB0NPThbWOUvXemUS9EEAJLC0tAeAZdbUhhuuAAjDK/A5AR0c75TCupRoBESGKIqyxYJh97403Sg0xXAfU0PHDAxq9raUlRzrtUw6i1Sr6dUGSvzCMldVqZhtgtm4oJfp3AbZubQdYM6GtG0mbyCVqqqDcGMP1QYnwMEBLSzORsUQbFIrbUYvYFwWFc7sBcrksYWRX7SzVi2VCLjalvTgHsNi2zVleHxSWXQDZbFNcym+Q2e0RcsQNHj/tx4kwaufJkyf15l2uDwptewGamjKExm0oYqtNOUesjE3ZJgDGKwu7N+jnuqEMugXA8zyMtcu8tFp7hay1jpxzWOdobs4BYCU1tEl/64YCsgBaa6KagiU11GqoVxicA2sdrVvi5SXivrFZh+uFwpgwduLzJFeJIHfxfL1K53AY6+jY2pEYMF/dhK/rgkLrEOJftpZwxFXvSgobkW7nwDpHtqU5brCiRw6cGD22SZ/rghKYBKhWq4jcSWBz+5FgHBjj6N3RGw9o5TsbNrcOKLAJsSCOUlLxprTa5AYbv+2sI7KWfG9PfAqjODZyYnR0867fG0ohVwEKhSJaKRRxDZVJpTZocmWMHXHZ45RiT3+i9lb+fFNe1wFVq5EWF4t4KhaNamTwk0OF+rH6pLXOERlL1/beeK0pnkra5/cNShQ/A5iZmYunn0i8nzlHk19P1NZehc7FUTNOGB55BBEB5PnhZ56u/1h3nVChbv45wNzcPM6YWOqBUhDS0pRe4/X6I+psHLVULse+fXvjtx3/OvLM0eGNOn8v6KlLl0zXYP9BHANb2lrws1lMsuDbc01Uw4jojjZ2/Vp565OOeEvZurUdG4XMzy96wAudg/2Ficvj/9U4WqABugf25hCOg6OzuysmZiytmTTNmTQL5cqmCN2Kmpjs2N6NNRFzcwsIcjg/2P9kfnDvjq6BhxYm/uDZSd5+e1N1hgAMj41tEQnnRISvff2rBCgCY0hpza5tW5hYWGKxXH+zdC3qSgRPKzqa08xMTfPhh5cpFJZWPmQ5Z8VdE/hExE1YJ7Og5pWy1gklbVUFwCibEUfWWqUURped/+6V06cLyz6MHB/9Z5T8Yd+eXWzv66MSGoy1dLY209qU5uOpuTW7VevSUAGtFB3NGbJpj4mJaW7cmGBiYupOkuvDJ2XrHVj25cDxI48qpX6hteYrX/sKRjRBFKvjgw9swVjLb2YWN03o9vdECc3pFG1ZH63jxDsMIxYWFikWS5RKJarVgKAaEIQROEdkDDZZ90opPK0hyW9v3pwCZ4+u8GlkbPRlRE72bu+mf9/DcdSMxdOandvaKJSrTBdL2CRyjSz9RYSsr2lKp8ikNJ66pbqoc6Dz5y8yPv4JDvdnK05bjHJ/oZ39veuf3mjP93STbW2jmvxCEwtF8m3NpLTmxnxhQ53he8E5x1I1YqkaLd8w8D2NpxUpLcuHG3HSEEcnzh/i7Wl2do5r1/43MSbnVpTqk5fHF/MDe31Evj43O0fv9h601ljnqIaGQqVKZ1uOJt9bl5hsjChExhJGhkpgkkOSiGIlXP5bqkQEkaEahPz8Z+8RhhHgvn/htbP/eEcP4uaV8Xe6BvsPmsgMFBcX6dnevTyQsY6lakhbU4Z0yqMaNa65ejfcawaKQEpr/JTm0vsXWZhfwMKZC6fOPgur3BqQlHsOuDg7M8fVi5dJpzS+p1AiVMOIT2cW0ErobM3RkkknKdJvkRSxoqa04uPxa0xOTGIMNySU52vP3LVrdPPSeKl78KH/MJg/Li4upaIgpDP/ABBvsDaJnFaKXCZFLp0iNLaug/Z6CK1JSit8TzF9c4Krl38d+yVy9P3X3/zw1udWxdDY6JAWeR+gu6ebwUcGiSzx3SgbN+oyKY/mjI/vxWtxsVylEqxvitYb79re53uKmckpLr5/EecczvHShdfOvLgum0Njo0OInNPQ2t7RziPDQ4jWBEmEbr1S1JbN0NqUphyEFCoBlXDtc7V6SSkleMn0u/nZZ1y5dCWx7X5w/tTZO6ryuuweODG6VyE/Bvan0z77Duyntb2dKLJE1i5Hr2awNZuhJeNjHZSDkHIQLt+Au33wRLFZjX9N+lOeJqWEj8av8clHiayvQqpuYpBclfDMD0CeAejd3kP/wEM4pYiMxdi4h3hrQ6jJ98il42kKsXzXqgWbPG/sysivIK0+b1OYIOTSBxeZnZ2rPfLs+VNnfrSav+uWs/iKHy8A+H6KB/sepGfHdmziuEm6Xc6tbJbXlKzWMKp955xbkYPWDuRrU08r4ean1/n11WtEUYSBSymx3/7Fq2/997383JBOJ1Pzb4BvAmQyaXY+uJN8bw+idBwF53AWLA5xcS1WO6hYMXhS2MaZhCSZf/x/enKKj8c/olhMkmLHD8vOe/HK6dOFtXzc1AY0PDZ6ApE/FXgS4m5yV76TznwXWzraQSTpVyZRrB15uHhkSVIjlRBSSqiUy0zemOD6p9cpJ3Wgtbyttbz0y1ff/Jd6fWvIzjo8NnpCnHwbxXIzVHuajo4OWltbaG5ppimXxfdTKK3RWmMiQxSFlEplSsUlioUic7Pzy+fVMX/zDqJevvDq2b9br08NTRmGvnW0TxlOCu4phA316S2MK9w5h/vRhVNv/WSjvty3Q8eho0fbPc0TVuxBgSFEBgymC0NOa92EoWi1nVVwzSK/EtQFhXv3l6fO/KoR4/8/R8yEIF2Ty+kAAAAASUVORK5CYIIHrFUP + diff --git a/assets/resources/Particle/right_2_2_1.plist.meta b/assets/resources/Particle/right_2_2_1.plist.meta new file mode 100644 index 0000000..7c5b322 --- /dev/null +++ b/assets/resources/Particle/right_2_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "08e0f120-6617-416b-8415-9d1e8df99eac", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_2_3.plist b/assets/resources/Particle/right_2_3.plist new file mode 100644 index 0000000..844084a --- /dev/null +++ b/assets/resources/Particle/right_2_3.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +220.000000 +sourcePositiony +257.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_2_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_2_3.plist.meta b/assets/resources/Particle/right_2_3.plist.meta new file mode 100644 index 0000000..6d6af35 --- /dev/null +++ b/assets/resources/Particle/right_2_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "471933f9-e1c4-4830-a7a4-db3e48eff87c", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_2_3_1.plist b/assets/resources/Particle/right_2_3_1.plist new file mode 100644 index 0000000..844084a --- /dev/null +++ b/assets/resources/Particle/right_2_3_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +80.000000 +sourcePositionx +220.000000 +sourcePositiony +257.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_2_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_2_3_1.plist.meta b/assets/resources/Particle/right_2_3_1.plist.meta new file mode 100644 index 0000000..12ffe74 --- /dev/null +++ b/assets/resources/Particle/right_2_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "ce0d2338-8b1e-46ac-b938-9e2e78bec2c4", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_3_1.plist b/assets/resources/Particle/right_3_1.plist new file mode 100644 index 0000000..14bf905 --- /dev/null +++ b/assets/resources/Particle/right_3_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +136.000000 +sourcePositiony +208.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_3_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_3_1.plist.meta b/assets/resources/Particle/right_3_1.plist.meta new file mode 100644 index 0000000..08ab06d --- /dev/null +++ b/assets/resources/Particle/right_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "636f36f4-76c6-43be-b0de-95c017bc0749", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_3_1_1.plist b/assets/resources/Particle/right_3_1_1.plist new file mode 100644 index 0000000..14bf905 --- /dev/null +++ b/assets/resources/Particle/right_3_1_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +136.000000 +sourcePositiony +208.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_3_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_3_1_1.plist.meta b/assets/resources/Particle/right_3_1_1.plist.meta new file mode 100644 index 0000000..31f59fd --- /dev/null +++ b/assets/resources/Particle/right_3_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "4f669477-e069-48c9-8ac4-3a78a906acdc", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_3_2.plist b/assets/resources/Particle/right_3_2.plist new file mode 100644 index 0000000..0890d73 --- /dev/null +++ b/assets/resources/Particle/right_3_2.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +100.000000 +sourcePositiony +215.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_3_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_3_2.plist.meta b/assets/resources/Particle/right_3_2.plist.meta new file mode 100644 index 0000000..7ec2e04 --- /dev/null +++ b/assets/resources/Particle/right_3_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "514ab07a-7f5c-46a5-87f0-88cb5dadc0cf", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_3_2_1.plist b/assets/resources/Particle/right_3_2_1.plist new file mode 100644 index 0000000..0890d73 --- /dev/null +++ b/assets/resources/Particle/right_3_2_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +100.000000 +sourcePositiony +215.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_3_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_3_2_1.plist.meta b/assets/resources/Particle/right_3_2_1.plist.meta new file mode 100644 index 0000000..3fb945b --- /dev/null +++ b/assets/resources/Particle/right_3_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "3ca8a558-0473-46b4-bf9e-8219bd053d31", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_3_3.plist b/assets/resources/Particle/right_3_3.plist new file mode 100644 index 0000000..9e4d9e9 --- /dev/null +++ b/assets/resources/Particle/right_3_3.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +99.000000 +sourcePositiony +235.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_3_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_3_3.plist.meta b/assets/resources/Particle/right_3_3.plist.meta new file mode 100644 index 0000000..a601f90 --- /dev/null +++ b/assets/resources/Particle/right_3_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "d6d986d6-5774-4d13-9207-4b44d4396852", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/right_3_3_1.plist b/assets/resources/Particle/right_3_3_1.plist new file mode 100644 index 0000000..9e4d9e9 --- /dev/null +++ b/assets/resources/Particle/right_3_3_1.plist @@ -0,0 +1,106 @@ + +angle +0.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +150.000000 +gravityy +0.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +0.000000 +sourcePositionVariancey +120.000000 +sourcePositionx +99.000000 +sourcePositiony +235.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +right_3_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/right_3_3_1.plist.meta b/assets/resources/Particle/right_3_3_1.plist.meta new file mode 100644 index 0000000..fc707ab --- /dev/null +++ b/assets/resources/Particle/right_3_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "7cd70a8a-d647-4879-bb5d-581af7354952", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/sp1.png b/assets/resources/Particle/sp1.png new file mode 100644 index 0000000..9163080 Binary files /dev/null and b/assets/resources/Particle/sp1.png differ diff --git a/assets/resources/Particle/sp1.png.meta b/assets/resources/Particle/sp1.png.meta new file mode 100644 index 0000000..69177bd --- /dev/null +++ b/assets/resources/Particle/sp1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "363f650c-0113-40a7-b8d0-1e941f51f056", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 56, + "height": 61, + "platformSettings": {}, + "subMetas": { + "sp1": { + "ver": "1.0.6", + "uuid": "213688d0-d284-47b2-804c-fe21c2e22398", + "importer": "sprite-frame", + "rawTextureUuid": "363f650c-0113-40a7-b8d0-1e941f51f056", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 56, + "height": 61, + "rawWidth": 56, + "rawHeight": 61, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp10.png b/assets/resources/Particle/sp10.png new file mode 100644 index 0000000..47a17ee Binary files /dev/null and b/assets/resources/Particle/sp10.png differ diff --git a/assets/resources/Particle/sp10.png.meta b/assets/resources/Particle/sp10.png.meta new file mode 100644 index 0000000..a9a2f92 --- /dev/null +++ b/assets/resources/Particle/sp10.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f3366754-10f0-45e6-91f6-39784b12abd5", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 65, + "height": 51, + "platformSettings": {}, + "subMetas": { + "sp10": { + "ver": "1.0.6", + "uuid": "afaa09e1-5511-4dc9-8db6-197ff8bc7ee2", + "importer": "sprite-frame", + "rawTextureUuid": "f3366754-10f0-45e6-91f6-39784b12abd5", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 65, + "height": 51, + "rawWidth": 65, + "rawHeight": 51, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp10_1.png b/assets/resources/Particle/sp10_1.png new file mode 100644 index 0000000..47a17ee Binary files /dev/null and b/assets/resources/Particle/sp10_1.png differ diff --git a/assets/resources/Particle/sp10_1.png.meta b/assets/resources/Particle/sp10_1.png.meta new file mode 100644 index 0000000..d785d47 --- /dev/null +++ b/assets/resources/Particle/sp10_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a31899db-3035-4aa4-a9fe-7fded073dd86", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 65, + "height": 51, + "platformSettings": {}, + "subMetas": { + "sp10_1": { + "ver": "1.0.6", + "uuid": "9e2244e5-8ac9-4bee-99e8-48eb739c38b2", + "importer": "sprite-frame", + "rawTextureUuid": "a31899db-3035-4aa4-a9fe-7fded073dd86", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 65, + "height": 51, + "rawWidth": 65, + "rawHeight": 51, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp1_1.png b/assets/resources/Particle/sp1_1.png new file mode 100644 index 0000000..9163080 Binary files /dev/null and b/assets/resources/Particle/sp1_1.png differ diff --git a/assets/resources/Particle/sp1_1.png.meta b/assets/resources/Particle/sp1_1.png.meta new file mode 100644 index 0000000..4dcaf66 --- /dev/null +++ b/assets/resources/Particle/sp1_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d3490b80-4d19-4947-813e-0bcc1befc7c8", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 56, + "height": 61, + "platformSettings": {}, + "subMetas": { + "sp1_1": { + "ver": "1.0.6", + "uuid": "5b267ffc-be40-4a25-af7e-fc65a61731b3", + "importer": "sprite-frame", + "rawTextureUuid": "d3490b80-4d19-4947-813e-0bcc1befc7c8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 56, + "height": 61, + "rawWidth": 56, + "rawHeight": 61, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp2.png b/assets/resources/Particle/sp2.png new file mode 100644 index 0000000..1794c5c Binary files /dev/null and b/assets/resources/Particle/sp2.png differ diff --git a/assets/resources/Particle/sp2.png.meta b/assets/resources/Particle/sp2.png.meta new file mode 100644 index 0000000..599c9f4 --- /dev/null +++ b/assets/resources/Particle/sp2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5cd8d33e-2fec-4ca3-aaad-d0fd7b123bf2", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 68, + "height": 68, + "platformSettings": {}, + "subMetas": { + "sp2": { + "ver": "1.0.6", + "uuid": "8fc92573-fa3b-4437-ac58-ee8bebf147af", + "importer": "sprite-frame", + "rawTextureUuid": "5cd8d33e-2fec-4ca3-aaad-d0fd7b123bf2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 68, + "height": 68, + "rawWidth": 68, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp2_1.png b/assets/resources/Particle/sp2_1.png new file mode 100644 index 0000000..1794c5c Binary files /dev/null and b/assets/resources/Particle/sp2_1.png differ diff --git a/assets/resources/Particle/sp2_1.png.meta b/assets/resources/Particle/sp2_1.png.meta new file mode 100644 index 0000000..7a30721 --- /dev/null +++ b/assets/resources/Particle/sp2_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "13185b79-88d9-48ff-95ad-2f6cb45b602a", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 68, + "height": 68, + "platformSettings": {}, + "subMetas": { + "sp2_1": { + "ver": "1.0.6", + "uuid": "12590a4e-0d2f-4252-8fa2-335004a08f47", + "importer": "sprite-frame", + "rawTextureUuid": "13185b79-88d9-48ff-95ad-2f6cb45b602a", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 68, + "height": 68, + "rawWidth": 68, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp3.png b/assets/resources/Particle/sp3.png new file mode 100644 index 0000000..b25dfa6 Binary files /dev/null and b/assets/resources/Particle/sp3.png differ diff --git a/assets/resources/Particle/sp3.png.meta b/assets/resources/Particle/sp3.png.meta new file mode 100644 index 0000000..8ad6669 --- /dev/null +++ b/assets/resources/Particle/sp3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "68620429-1b3d-400e-832c-25e8358d9062", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 61, + "height": 60, + "platformSettings": {}, + "subMetas": { + "sp3": { + "ver": "1.0.6", + "uuid": "04c5ecd6-8fd0-4cf0-aa0e-61849dbeb18b", + "importer": "sprite-frame", + "rawTextureUuid": "68620429-1b3d-400e-832c-25e8358d9062", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 61, + "height": 60, + "rawWidth": 61, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp3_1.png b/assets/resources/Particle/sp3_1.png new file mode 100644 index 0000000..b25dfa6 Binary files /dev/null and b/assets/resources/Particle/sp3_1.png differ diff --git a/assets/resources/Particle/sp3_1.png.meta b/assets/resources/Particle/sp3_1.png.meta new file mode 100644 index 0000000..9d155ee --- /dev/null +++ b/assets/resources/Particle/sp3_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "613e4638-41b7-425b-a51a-6b79fa173623", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 61, + "height": 60, + "platformSettings": {}, + "subMetas": { + "sp3_1": { + "ver": "1.0.6", + "uuid": "69a7bc44-c126-48e5-85c8-b9173233c5a1", + "importer": "sprite-frame", + "rawTextureUuid": "613e4638-41b7-425b-a51a-6b79fa173623", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 61, + "height": 60, + "rawWidth": 61, + "rawHeight": 60, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp4.png b/assets/resources/Particle/sp4.png new file mode 100644 index 0000000..524e171 Binary files /dev/null and b/assets/resources/Particle/sp4.png differ diff --git a/assets/resources/Particle/sp4.png.meta b/assets/resources/Particle/sp4.png.meta new file mode 100644 index 0000000..c5fe0b5 --- /dev/null +++ b/assets/resources/Particle/sp4.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d5e17fe2-ec17-4842-8bfb-7d68719eecaf", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 59, + "height": 65, + "platformSettings": {}, + "subMetas": { + "sp4": { + "ver": "1.0.6", + "uuid": "b6ec7265-e4a6-4f2c-aa8c-88647b9b1afe", + "importer": "sprite-frame", + "rawTextureUuid": "d5e17fe2-ec17-4842-8bfb-7d68719eecaf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 59, + "height": 65, + "rawWidth": 59, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp4_1.png b/assets/resources/Particle/sp4_1.png new file mode 100644 index 0000000..524e171 Binary files /dev/null and b/assets/resources/Particle/sp4_1.png differ diff --git a/assets/resources/Particle/sp4_1.png.meta b/assets/resources/Particle/sp4_1.png.meta new file mode 100644 index 0000000..ab6bb10 --- /dev/null +++ b/assets/resources/Particle/sp4_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e70e4bb3-725c-48ca-a6ff-be6a51cecab6", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 59, + "height": 65, + "platformSettings": {}, + "subMetas": { + "sp4_1": { + "ver": "1.0.6", + "uuid": "e64bee89-3ab8-4e97-b6e3-b111ae14d3dc", + "importer": "sprite-frame", + "rawTextureUuid": "e70e4bb3-725c-48ca-a6ff-be6a51cecab6", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 59, + "height": 65, + "rawWidth": 59, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp5.png b/assets/resources/Particle/sp5.png new file mode 100644 index 0000000..1fd2e71 Binary files /dev/null and b/assets/resources/Particle/sp5.png differ diff --git a/assets/resources/Particle/sp5.png.meta b/assets/resources/Particle/sp5.png.meta new file mode 100644 index 0000000..7814314 --- /dev/null +++ b/assets/resources/Particle/sp5.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "7fd24a6a-f4ee-4180-8a76-97d073262354", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 60, + "height": 58, + "platformSettings": {}, + "subMetas": { + "sp5": { + "ver": "1.0.6", + "uuid": "70628582-7715-46ec-97ec-026e33a3dd81", + "importer": "sprite-frame", + "rawTextureUuid": "7fd24a6a-f4ee-4180-8a76-97d073262354", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 60, + "height": 58, + "rawWidth": 60, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp5_1.png b/assets/resources/Particle/sp5_1.png new file mode 100644 index 0000000..1fd2e71 Binary files /dev/null and b/assets/resources/Particle/sp5_1.png differ diff --git a/assets/resources/Particle/sp5_1.png.meta b/assets/resources/Particle/sp5_1.png.meta new file mode 100644 index 0000000..d62dc80 --- /dev/null +++ b/assets/resources/Particle/sp5_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5b2973a1-a163-4dc2-819f-2b5e6857af9c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 60, + "height": 58, + "platformSettings": {}, + "subMetas": { + "sp5_1": { + "ver": "1.0.6", + "uuid": "5d22f9e6-299c-411c-a22f-ce28bb311ed1", + "importer": "sprite-frame", + "rawTextureUuid": "5b2973a1-a163-4dc2-819f-2b5e6857af9c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 60, + "height": 58, + "rawWidth": 60, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp6.png b/assets/resources/Particle/sp6.png new file mode 100644 index 0000000..eccb920 Binary files /dev/null and b/assets/resources/Particle/sp6.png differ diff --git a/assets/resources/Particle/sp6.png.meta b/assets/resources/Particle/sp6.png.meta new file mode 100644 index 0000000..a51d918 --- /dev/null +++ b/assets/resources/Particle/sp6.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "91339250-5bb5-461e-9d46-aa86181e755c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 65, + "height": 58, + "platformSettings": {}, + "subMetas": { + "sp6": { + "ver": "1.0.6", + "uuid": "ef05cab6-7421-4057-92f6-7466fa2d1123", + "importer": "sprite-frame", + "rawTextureUuid": "91339250-5bb5-461e-9d46-aa86181e755c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 65, + "height": 58, + "rawWidth": 65, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp6_1.png b/assets/resources/Particle/sp6_1.png new file mode 100644 index 0000000..eccb920 Binary files /dev/null and b/assets/resources/Particle/sp6_1.png differ diff --git a/assets/resources/Particle/sp6_1.png.meta b/assets/resources/Particle/sp6_1.png.meta new file mode 100644 index 0000000..ad49042 --- /dev/null +++ b/assets/resources/Particle/sp6_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "c4aa25d1-758f-43cd-a8ee-a3dbacc15789", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 65, + "height": 58, + "platformSettings": {}, + "subMetas": { + "sp6_1": { + "ver": "1.0.6", + "uuid": "8d4274b3-d4bb-4e66-a5ef-721d16398789", + "importer": "sprite-frame", + "rawTextureUuid": "c4aa25d1-758f-43cd-a8ee-a3dbacc15789", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 65, + "height": 58, + "rawWidth": 65, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp7.png b/assets/resources/Particle/sp7.png new file mode 100644 index 0000000..cf41830 Binary files /dev/null and b/assets/resources/Particle/sp7.png differ diff --git a/assets/resources/Particle/sp7.png.meta b/assets/resources/Particle/sp7.png.meta new file mode 100644 index 0000000..3b4448d --- /dev/null +++ b/assets/resources/Particle/sp7.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5dc63b37-a57d-4a7c-a696-95e0f14daf93", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 61, + "height": 65, + "platformSettings": {}, + "subMetas": { + "sp7": { + "ver": "1.0.6", + "uuid": "53acff61-c462-4834-9d48-b9fe3d7b325b", + "importer": "sprite-frame", + "rawTextureUuid": "5dc63b37-a57d-4a7c-a696-95e0f14daf93", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 61, + "height": 65, + "rawWidth": 61, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp7_1.png b/assets/resources/Particle/sp7_1.png new file mode 100644 index 0000000..cf41830 Binary files /dev/null and b/assets/resources/Particle/sp7_1.png differ diff --git a/assets/resources/Particle/sp7_1.png.meta b/assets/resources/Particle/sp7_1.png.meta new file mode 100644 index 0000000..7fc8768 --- /dev/null +++ b/assets/resources/Particle/sp7_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "7c24de34-6445-4eb1-8e25-e67099420921", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 61, + "height": 65, + "platformSettings": {}, + "subMetas": { + "sp7_1": { + "ver": "1.0.6", + "uuid": "9960e832-5f57-4914-ab50-efae7288e695", + "importer": "sprite-frame", + "rawTextureUuid": "7c24de34-6445-4eb1-8e25-e67099420921", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 61, + "height": 65, + "rawWidth": 61, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp8.png b/assets/resources/Particle/sp8.png new file mode 100644 index 0000000..e1d1c37 Binary files /dev/null and b/assets/resources/Particle/sp8.png differ diff --git a/assets/resources/Particle/sp8.png.meta b/assets/resources/Particle/sp8.png.meta new file mode 100644 index 0000000..91a9d1c --- /dev/null +++ b/assets/resources/Particle/sp8.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f5f04e60-a876-43ed-b0f6-f829aee17c65", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 57, + "height": 53, + "platformSettings": {}, + "subMetas": { + "sp8": { + "ver": "1.0.6", + "uuid": "5c98e132-ba5f-4b56-8cb6-15e95b8364a8", + "importer": "sprite-frame", + "rawTextureUuid": "f5f04e60-a876-43ed-b0f6-f829aee17c65", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 57, + "height": 53, + "rawWidth": 57, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp8_1.png b/assets/resources/Particle/sp8_1.png new file mode 100644 index 0000000..e1d1c37 Binary files /dev/null and b/assets/resources/Particle/sp8_1.png differ diff --git a/assets/resources/Particle/sp8_1.png.meta b/assets/resources/Particle/sp8_1.png.meta new file mode 100644 index 0000000..9c406aa --- /dev/null +++ b/assets/resources/Particle/sp8_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "939ebf75-c659-407b-9c0f-d7076254b88f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 57, + "height": 53, + "platformSettings": {}, + "subMetas": { + "sp8_1": { + "ver": "1.0.6", + "uuid": "964fed8d-190e-48d1-b6dd-ac491cb3732a", + "importer": "sprite-frame", + "rawTextureUuid": "939ebf75-c659-407b-9c0f-d7076254b88f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 57, + "height": 53, + "rawWidth": 57, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp9.png b/assets/resources/Particle/sp9.png new file mode 100644 index 0000000..c5d9e77 Binary files /dev/null and b/assets/resources/Particle/sp9.png differ diff --git a/assets/resources/Particle/sp9.png.meta b/assets/resources/Particle/sp9.png.meta new file mode 100644 index 0000000..1a74fcf --- /dev/null +++ b/assets/resources/Particle/sp9.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "3041839a-879f-4de0-aac8-11fc29132a3a", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 60, + "height": 56, + "platformSettings": {}, + "subMetas": { + "sp9": { + "ver": "1.0.6", + "uuid": "4555ccb8-761f-4426-b5d4-c58228724d22", + "importer": "sprite-frame", + "rawTextureUuid": "3041839a-879f-4de0-aac8-11fc29132a3a", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 60, + "height": 56, + "rawWidth": 60, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/sp9_1.png b/assets/resources/Particle/sp9_1.png new file mode 100644 index 0000000..c5d9e77 Binary files /dev/null and b/assets/resources/Particle/sp9_1.png differ diff --git a/assets/resources/Particle/sp9_1.png.meta b/assets/resources/Particle/sp9_1.png.meta new file mode 100644 index 0000000..dbbaf05 --- /dev/null +++ b/assets/resources/Particle/sp9_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a6a556b5-3b8d-4783-b187-5c19590004c4", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 60, + "height": 56, + "platformSettings": {}, + "subMetas": { + "sp9_1": { + "ver": "1.0.6", + "uuid": "70f05263-a650-4788-8f11-569506d17b86", + "importer": "sprite-frame", + "rawTextureUuid": "a6a556b5-3b8d-4783-b187-5c19590004c4", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 60, + "height": 56, + "rawWidth": 60, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Particle/top_1_1.plist b/assets/resources/Particle/top_1_1.plist new file mode 100644 index 0000000..7aee92b --- /dev/null +++ b/assets/resources/Particle/top_1_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +104.000000 +sourcePositiony +188.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_1_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_1_1.plist.meta b/assets/resources/Particle/top_1_1.plist.meta new file mode 100644 index 0000000..234b4bc --- /dev/null +++ b/assets/resources/Particle/top_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "01fcca73-6a36-405e-98fb-9e6f37cd2c13", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_1_1_1.plist b/assets/resources/Particle/top_1_1_1.plist new file mode 100644 index 0000000..7aee92b --- /dev/null +++ b/assets/resources/Particle/top_1_1_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +104.000000 +sourcePositiony +188.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_1_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_1_1_1.plist.meta b/assets/resources/Particle/top_1_1_1.plist.meta new file mode 100644 index 0000000..c7d93c7 --- /dev/null +++ b/assets/resources/Particle/top_1_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "cd676662-9e94-4ce6-a646-75e290df3035", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_1_2.plist b/assets/resources/Particle/top_1_2.plist new file mode 100644 index 0000000..0376696 --- /dev/null +++ b/assets/resources/Particle/top_1_2.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +117.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +200.000000 +sourcePositiony +73.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_1_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_1_2.plist.meta b/assets/resources/Particle/top_1_2.plist.meta new file mode 100644 index 0000000..fba2d7e --- /dev/null +++ b/assets/resources/Particle/top_1_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "40f60783-36f6-4831-b55c-3f7aef910438", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_1_2_1.plist b/assets/resources/Particle/top_1_2_1.plist new file mode 100644 index 0000000..0376696 --- /dev/null +++ b/assets/resources/Particle/top_1_2_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +117.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +200.000000 +sourcePositiony +73.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_1_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_1_2_1.plist.meta b/assets/resources/Particle/top_1_2_1.plist.meta new file mode 100644 index 0000000..50fb253 --- /dev/null +++ b/assets/resources/Particle/top_1_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "a2c01fb9-38c6-4c61-90ae-ebf10eb9ed97", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_1_3.plist b/assets/resources/Particle/top_1_3.plist new file mode 100644 index 0000000..eae99c6 --- /dev/null +++ b/assets/resources/Particle/top_1_3.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +70.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +156.000000 +sourcePositiony +69.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_1_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_1_3.plist.meta b/assets/resources/Particle/top_1_3.plist.meta new file mode 100644 index 0000000..d1ef747 --- /dev/null +++ b/assets/resources/Particle/top_1_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "27f92c6a-8bde-4a6e-a6a9-9c187bba0ef9", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_1_3_1.plist b/assets/resources/Particle/top_1_3_1.plist new file mode 100644 index 0000000..eae99c6 --- /dev/null +++ b/assets/resources/Particle/top_1_3_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +70.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +40.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +156.000000 +sourcePositiony +69.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_1_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_1_3_1.plist.meta b/assets/resources/Particle/top_1_3_1.plist.meta new file mode 100644 index 0000000..6a1d4fe --- /dev/null +++ b/assets/resources/Particle/top_1_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "acf7e102-5bfb-43d0-baba-dc86655425c7", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_2_1.plist b/assets/resources/Particle/top_2_1.plist new file mode 100644 index 0000000..09b8e79 --- /dev/null +++ b/assets/resources/Particle/top_2_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +184.000000 +sourcePositiony +112.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_2_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_2_1.plist.meta b/assets/resources/Particle/top_2_1.plist.meta new file mode 100644 index 0000000..eb42910 --- /dev/null +++ b/assets/resources/Particle/top_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "829311c5-ad5c-4756-9a8e-f0968c6e0162", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_2_1_1.plist b/assets/resources/Particle/top_2_1_1.plist new file mode 100644 index 0000000..09b8e79 --- /dev/null +++ b/assets/resources/Particle/top_2_1_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +184.000000 +sourcePositiony +112.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_2_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_2_1_1.plist.meta b/assets/resources/Particle/top_2_1_1.plist.meta new file mode 100644 index 0000000..3349b42 --- /dev/null +++ b/assets/resources/Particle/top_2_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "7ac2cc5d-cb5e-46e6-b8fd-a0d0fab58f94", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_2_2.plist b/assets/resources/Particle/top_2_2.plist new file mode 100644 index 0000000..27b16f2 --- /dev/null +++ b/assets/resources/Particle/top_2_2.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +115.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +182.000000 +sourcePositiony +182.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_2_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_2_2.plist.meta b/assets/resources/Particle/top_2_2.plist.meta new file mode 100644 index 0000000..9b2e067 --- /dev/null +++ b/assets/resources/Particle/top_2_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "fe21168e-d899-4afc-82a6-e9c7585df025", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_2_2_1.plist b/assets/resources/Particle/top_2_2_1.plist new file mode 100644 index 0000000..27b16f2 --- /dev/null +++ b/assets/resources/Particle/top_2_2_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +115.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +182.000000 +sourcePositiony +182.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_2_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_2_2_1.plist.meta b/assets/resources/Particle/top_2_2_1.plist.meta new file mode 100644 index 0000000..56f1e75 --- /dev/null +++ b/assets/resources/Particle/top_2_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "9b32ae82-e69e-4dd1-a8fa-5dcbc2f557d6", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_2_3.plist b/assets/resources/Particle/top_2_3.plist new file mode 100644 index 0000000..33e34bb --- /dev/null +++ b/assets/resources/Particle/top_2_3.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +179.000000 +sourcePositiony +183.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_2_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_2_3.plist.meta b/assets/resources/Particle/top_2_3.plist.meta new file mode 100644 index 0000000..0934969 --- /dev/null +++ b/assets/resources/Particle/top_2_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "1b494dbb-d786-4f0c-a69d-e4f4db0d889b", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_2_3_1.plist b/assets/resources/Particle/top_2_3_1.plist new file mode 100644 index 0000000..33e34bb --- /dev/null +++ b/assets/resources/Particle/top_2_3_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +120.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +80.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +179.000000 +sourcePositiony +183.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_2_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_2_3_1.plist.meta b/assets/resources/Particle/top_2_3_1.plist.meta new file mode 100644 index 0000000..f137c3b --- /dev/null +++ b/assets/resources/Particle/top_2_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "904fab90-af16-403d-ae7d-92cda0ffdf88", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_3_1.plist b/assets/resources/Particle/top_3_1.plist new file mode 100644 index 0000000..04d7a8f --- /dev/null +++ b/assets/resources/Particle/top_3_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +191.000000 +sourcePositiony +136.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_3_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_3_1.plist.meta b/assets/resources/Particle/top_3_1.plist.meta new file mode 100644 index 0000000..c0e18a6 --- /dev/null +++ b/assets/resources/Particle/top_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "75feb7e8-e734-4102-b055-93e74d5aed50", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_3_1_1.plist b/assets/resources/Particle/top_3_1_1.plist new file mode 100644 index 0000000..04d7a8f --- /dev/null +++ b/assets/resources/Particle/top_3_1_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.330000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +110.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +191.000000 +sourcePositiony +136.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_3_1.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_3_1_1.plist.meta b/assets/resources/Particle/top_3_1_1.plist.meta new file mode 100644 index 0000000..7da8ccb --- /dev/null +++ b/assets/resources/Particle/top_3_1_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "5efe1712-3acb-4700-a318-3f851110e111", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_3_2.plist b/assets/resources/Particle/top_3_2.plist new file mode 100644 index 0000000..a538999 --- /dev/null +++ b/assets/resources/Particle/top_3_2.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +179.000000 +sourcePositiony +96.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_3_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_3_2.plist.meta b/assets/resources/Particle/top_3_2.plist.meta new file mode 100644 index 0000000..f51d967 --- /dev/null +++ b/assets/resources/Particle/top_3_2.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "89d0ea0c-b527-4f7a-a1da-9c0047f9e40e", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_3_2_1.plist b/assets/resources/Particle/top_3_2_1.plist new file mode 100644 index 0000000..a538999 --- /dev/null +++ b/assets/resources/Particle/top_3_2_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +0.660000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +179.000000 +sourcePositiony +96.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_3_2.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_3_2_1.plist.meta b/assets/resources/Particle/top_3_2_1.plist.meta new file mode 100644 index 0000000..e0ea482 --- /dev/null +++ b/assets/resources/Particle/top_3_2_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "c86193d7-6eb3-416b-bc19-43fd0106e56e", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_3_3.plist b/assets/resources/Particle/top_3_3.plist new file mode 100644 index 0000000..205d000 --- /dev/null +++ b/assets/resources/Particle/top_3_3.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +208.000000 +sourcePositiony +160.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_3_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_3_3.plist.meta b/assets/resources/Particle/top_3_3.plist.meta new file mode 100644 index 0000000..24b7007 --- /dev/null +++ b/assets/resources/Particle/top_3_3.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "63e77e87-7700-4af5-afcc-c540b8af10a0", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Particle/top_3_3_1.plist b/assets/resources/Particle/top_3_3_1.plist new file mode 100644 index 0000000..205d000 --- /dev/null +++ b/assets/resources/Particle/top_3_3_1.plist @@ -0,0 +1,106 @@ + +angle +90.000000 +angleVariance +0.000000 +duration +1.000000 +startParticleSize +32.000000 +startParticleSizeVariance +9.000000 +finishParticleSize +34.000000 +finishParticleSizeVariance +15.000000 +gravityx +0.000000 +gravityy +150.000000 +maxParticles +130.000000 +maxRadius +0.000000 +maxRadiusVariance +0.000000 +minRadius +0.000000 +particleLifespan +3.000000 +particleLifespanVariance +0.000000 +rotatePerSecond +0.000000 +rotatePerSecondVariance +0.000000 +rotationEnd +0.000000 +rotationEndVariance +15.000000 +rotationStart +0.000000 +rotationStartVariance +60.000000 +sourcePositionVariancex +120.000000 +sourcePositionVariancey +0.000000 +sourcePositionx +208.000000 +sourcePositiony +160.000000 +speed +60.000000 +speedVariance +90.000000 +startColorAlpha +1.000000 +startColorBlue +1.000000 +startColorGreen +1.000000 +startColorRed +1.000000 +startColorVarianceAlpha +0.000000 +startColorVarianceBlue +0.000000 +startColorVarianceGreen +0.000000 +startColorVarianceRed +0.000000 +finishColorAlpha +1.000000 +finishColorBlue +1.000000 +finishColorGreen +1.000000 +finishColorRed +1.000000 +finishColorVarianceAlpha +0.000000 +finishColorVarianceBlue +0.000000 +finishColorVarianceGreen +0.000000 +finishColorVarianceRed +0.000000 +tangentialAccelVariance +80.000000 +tangentialAcceleration +0.000000 +radialAccelVariance +0.000000 +radialAcceleration +30.000000 +blendFuncSource +770 +blendFuncDestination +771 +emitterType +0 +textureFileName +top_3_3.png +textureImageData +eJwBwww884lQTkcNChoKAAAADUlIRFIAAAA2AAAAOwgGAAAAMNt5AwAAAARzQklUCAgICHwIZIgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAxlSURBVGiBxZpbbFzXdYa/tfaZM8MZXkRKJoekLNkULdKWKdJSYrdBjCBxYYuWIsopBBRGUaCI4dhFCxR96FP7kPcCfWrjpH0oUAQpbDS+X5AULWyraNPAiWRbiqRQtttYlni/zHBu55y9+3DO0KIkikNyFP8AQWDmnLXXP2vvf6+19haajMNPH06F0/kHwD6IkwPiGLDKgGJ3Was5sIrqBcWdOj364LN897u22T4ASDOMHH7isd7Q6e+L4wgiRxt+0fLa6Vfe+GYzfLge2yJ2cOLoYyL2TwQ5vmpQhM7ODrq6dtDW1kpra5ZcLovv+3ieQUQoFFY4dep/KJXKmFD3vvfaa/+3fSpr4W3lpQcmjjzinP4l4h4FQVXp6+uhvz9PPt9NKpWYdTd/v60th2r8m1qp+VvyfANsitjhY8eyoWe/5+CPEEinfQYH72bfvr34fmqViHOOWmiphhFBaKnZiDC0OAe+UZYX5ikWSzjsO6df/cnkF0psZOLow5EL/17Q+40xDA0NMDS0D2MMuJhMqRayUglYqYVY5xARMp6hFkZY5/BUUSNc/s1lAMTpq7eDVMPERice/56IewZRdu3q4stfHiWXy4KDyFqWyjWWSrVV51v8FBnPoCIEkSWIIgRQFWwQMD87D0DNX3nuCyM2euLxfxB4CmB4eJADB/YjCM45FktVFko1nHOkjKEjnUJVCcKIYqVGYCNcMj1VBE+F6cvTOOfAuRfOvfB28QshNnZi/PvAU6rCl740yp49/eCgEobMLJepRRYRoT2TJp3yKFVrlINq7Ph1UBWMKlNXp+IPnHv+dhBaHW+9L8Ymxp8EeVpEeOihQ6ukFstVPltYoRZZfM/Q3ZbFU2G+WKJUC25KSgSMCEG1ytLCEgCnH3jox7eP1joRO/ytY8NBaP9JBcbGDtDfn8c5x0yhTKESoCK0ZXx8Y1guV6kE4S0HEQRVYfbqbPyB44e3K+Oo46bEwij8W1VN3X33nezbtxecY3q5TLEaYFToaMkka6xCZDf2T0UwKszNzgFgcbdNDeu4gdjYxPhfI3Ikl2thdPQ+cDBbrFKsxpHamctSDgKKlVpDA8RqCOJgfi5Ww5QfvNVUFjfBmjV2+NixXdbJswCHDo3gGY9CtcZSuYqK0JnNUAkCVhokBXGKpaIsLsxjI4t1/PS9F/5tqck8bsCaiIXG/pUKvX19eXp67iCMLPOFCgK0pDyscxQ2QQoS4VBhbjqehir8e9O8vwVWI/bgkSPtztkTAPfeOwgO5ooVomTTNaoUKtXND5Csr9mZWDgi515vlvO3wmrEqhn9jsLefL6bzs4OyrWQlWoAQMozVMOQyK6T1a4DkZhYeaVEpVzBwrkPXn7zg+ZSuDlWIyaOIwADA3vAwcLK59ERIIg2r851mV9aWEwGc+9u1+FGoQAjxx8bQviG76fI5++gEoRUr9mbqmF40413I9Q35qXFWCvEyX82ye8NoQAqOgHQ359HVSlUamtKqc1OwTpEBBGhWIhTQgu/lWkICTFx8jBAX18P1jpK1VtnEo1CABVYWVkBwIv0YlMMNwAFsGp/B6Crq5NyENdSzYCIEIYhNrJgmX/vtddKTTHcAHTk+GNDiu5qa8uRTvuUa+F6Ff2mIMlfEMTKapX5JphtGKpifhdg585OgA0T2oaRtIlcoqYK5eYYbgwqwr0AbW2thJEl3KJQXI96xL4oKM7dDZDLZQlCu25nqVGsEnKxKePFOYDFdmzP8uagOPYCZLMtcSm/RWbXR8gRN3j8tB8nwuiekydPmu273BgUdf0ALS0ZgshtKWLrTTlHrIwt2RYAJitLd2/Rz01DLdoG4HkekbWrvIxuvEI2WkfOOaxztLbmALCSGtmmvw1DgSyAMYawrmBJDbUeGhUG58BaR/uOeHmJuG9s1+FGoVgbxE58nuSqCHITzzerdA5HZB1dO7sSA/ar2/B1U1BUA4h/2XrCEVe9aylsRbqdA+sc2bbWuMGKjh08MX5smz43BAWmAarVKiI3EtjefiREDqLI0X9nfzygle9s2dwmoGATYrU4SknFmzK6zQ02fttZR2gt+f6++BRGOTZ2Ynx8+67fGqrIRYBCoYhRRYlrqEwqtUWTa2PsiMsep8q+wUTtrfz5trxuAFqvkZaXi3gai0Y1jPCTQ4XGsf6ktc4RRpae3f3xWlMeTdrntw0qys8A5uYW4uknEu9nztHiNxK1jVehc3HUIieMjt2PiADy9OgTjzd+rLtJaGBafw6wsLCIi6JY6oFSLaCtJb3B641H1Nk4aqlcjvvu2x+/7fjXsSeOjm7V+VvBzJw7F/UMDx7CMbSjow0/myVKFnxnroVqEBLe0MZuXCuvfdIRbyk7d3Ziw4DFxWUPeKZ7eLAwdX7yv5pHCwxA79D+HMJxcHT39sTEIkt7Jk1rJs1SubItQteiLiZ37u7FRiELC0sI8lh+ePCR/PD+O3uG7lma+oMnp3n77W3VGQIwOjGxQyRYEBG+9vWvUkOpRREpY9i7awdTSysslxtvlm5EXUXwjNLVmmZuZpYPPzxPobCy9iHLKSvuksAnIm7KOpkHXVS11gklY7UCEKnNiCNrraoSmbLz373wyiuFVR/Gjo//Myp/OLBvL7sHBqgEEZG1dLe30t6S5uOZhQ27VZvSUAGjSldrhmzaY2pqlitXppiamrmR5ObwSdl6B1d9OXj8yAOq+gtjDF/52leIxFALY3W8644dRNbym7nlbRO6/j1RoTWdoiPrY0yceAdByNLSMsViiVKpRLVao1atUQtCcI4wirDJuldVPGMgyW+vXp0BZ4+u8WlsYvx5RE727+5l8L5746hFFs8Y9uzqoFCuMlssYZPINbP0FxGyvqElnSKTMnh6TXXR4ECnT59lcvITHO7P1py2ROr+wjj3e5c/vdKZ7+sl295BNfmFppaK5DtaSRnDlcXCljrDt4JzjpVqyEo1XL1h4HsGzygpI6uHG3HSEEcnzh/i7Wl+foFLl/43MSan1pTq0+cnl/ND9/iIfH1hfoH+3X0YY7DOUQ0iCpUq3R05WnxvU2KyNaIQRpYgjKjUouSQJKRYCVb/ViohtTCiWgv4+c/eIwhCwH3/zMtv/uMNPYirFybf6RkePBSF0VBxeZm+3b2rA0XWsVIN6GjJkE55VMPmNVdvhlvNQBFIGYOfMpx7/yxLi0tYeOPMS28+CevcGpCUewo4Oz+3wMWz50mnDL6nqAjVIOTTuSWMCt3tOdoy6SRF+i2SIlbUlFE+nrzE9NQ01nJFAnm6/sxNu0ZXz02Weofv+Q+L/ePicjEV1gK683cA8QZrk8gZVXKZFLl0iiCyDR20N0JoQ1JG8T1l9uoUF8//GgCLHH3/1dc/vPa5dTEyMT5iRN4H6O3rZfj+YUJLfDfKxo26TMqjNePje/FaXC5XqdQ2N0UbjXd97/M9ZW56hrPvn8U5h3M8d+blN57dlM2RifERETml0N7Z1cn9oyOIMdSSCF17pagjm6G9JU25FlCo1KgEG5+rNUpKVfCS6Xf1s8+4cO5CYtv94PRLb95QlTdk9+CJ8f2K/Bg4kE773HfwAO2dnYShJbR2NXp1g+3ZDG0ZH+ugXAso14LVG3DXD54oNuvxr0t/yjOkVPho8hKffJTI+jqkGiYG8VWJyIt+APIEQP/uPgaH7sGpEkaWyMY9xGsbQi2+Ry4dT1OI5bteLdjk+ciujfwa0vp5myKqBZz74Czz8wv1R548/dIbP1rP303LWXzFj2cAfD/FXQN30XfnbmzieJR0u5xb2yyvK1m9YVT/zjm3JgetH8jXp55R4eqnl/n1xUvxWRuc88R++xcvvvXft/JzSzqdTM2/Ab4JkMmk2XPXHvL9fYiaOArO4SxYHOLiWqx+ULFm8KSwjTMJSTL/+P/s9AwfT35EsZgkxY4flp337IVXXils5OO2NqDRifETiPypwCMQd5N78t1053vY0dUJIkm/Moli/cjDxSNLkhppQkhVqJTLTF+Z4vKnlykndaC1vG2MPPfLF1//l0Z9a8rOOjoxfkKcfBtltRlqPENXVxft7W20trXSksvi+ynUGIwxRGFEGAaUSmVKxRWKhSIL84ur59Uxf/sOIs+fefHNv9usT01NGUa+dXRAI04K7lGELfXpLUwq7pTD/ejMS2/9ZKu+3LZDx5GjRzs9w8NW7CGBEUSGLLYHS05VW7AUrdp5hUsW+ZWgZxT37i9feuNXzRj//wEy+oQgeJ/S3wAAAABJRU5ErkJggipRSBQ= + diff --git a/assets/resources/Particle/top_3_3_1.plist.meta b/assets/resources/Particle/top_3_3_1.plist.meta new file mode 100644 index 0000000..18a5416 --- /dev/null +++ b/assets/resources/Particle/top_3_3_1.plist.meta @@ -0,0 +1,6 @@ +{ + "ver": "2.0.3", + "uuid": "ff5bc8e1-d5a7-4667-9a01-6eb1173dee63", + "importer": "particle", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Window_Prop.meta b/assets/resources/Window_Prop.meta new file mode 100644 index 0000000..f7b4b1b --- /dev/null +++ b/assets/resources/Window_Prop.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "034840bc-3824-492a-9542-0b64edfb4046", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/ban.png b/assets/resources/Window_Prop/ban.png new file mode 100644 index 0000000..1b0ae12 Binary files /dev/null and b/assets/resources/Window_Prop/ban.png differ diff --git a/assets/resources/Window_Prop/ban.png.meta b/assets/resources/Window_Prop/ban.png.meta new file mode 100644 index 0000000..b9fd5dd --- /dev/null +++ b/assets/resources/Window_Prop/ban.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "485efaf3-8f31-441b-8264-6597e43bedea", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 985, + "height": 1467, + "platformSettings": {}, + "subMetas": { + "ban": { + "ver": "1.0.6", + "uuid": "5e42985a-fee5-4f47-ba31-1f4a102e2ec1", + "importer": "sprite-frame", + "rawTextureUuid": "485efaf3-8f31-441b-8264-6597e43bedea", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -0.5, + "trimX": 0, + "trimY": 1, + "width": 985, + "height": 1466, + "rawWidth": 985, + "rawHeight": 1467, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/btn 2.png b/assets/resources/Window_Prop/btn 2.png new file mode 100644 index 0000000..0bc8af6 Binary files /dev/null and b/assets/resources/Window_Prop/btn 2.png differ diff --git a/assets/resources/Window_Prop/btn 2.png.meta b/assets/resources/Window_Prop/btn 2.png.meta new file mode 100644 index 0000000..3784acb --- /dev/null +++ b/assets/resources/Window_Prop/btn 2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b56981d3-e42d-455f-81b9-418f92cd72ef", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 455, + "height": 143, + "platformSettings": {}, + "subMetas": { + "btn 2": { + "ver": "1.0.6", + "uuid": "5b5d3046-ecbd-4ed2-bb1d-c4ea702b5cde", + "importer": "sprite-frame", + "rawTextureUuid": "b56981d3-e42d-455f-81b9-418f92cd72ef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 455, + "height": 143, + "rawWidth": 455, + "rawHeight": 143, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/btn.png b/assets/resources/Window_Prop/btn.png new file mode 100644 index 0000000..25286ef Binary files /dev/null and b/assets/resources/Window_Prop/btn.png differ diff --git a/assets/resources/Window_Prop/btn.png.meta b/assets/resources/Window_Prop/btn.png.meta new file mode 100644 index 0000000..3c9a244 --- /dev/null +++ b/assets/resources/Window_Prop/btn.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "10bd800c-0cf0-4fd1-b081-59bdb30d45c3", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 519, + "height": 159, + "platformSettings": {}, + "subMetas": { + "btn": { + "ver": "1.0.6", + "uuid": "630d0587-e533-48fb-b313-b55e6905db06", + "importer": "sprite-frame", + "rawTextureUuid": "10bd800c-0cf0-4fd1-b081-59bdb30d45c3", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 519, + "height": 159, + "rawWidth": 519, + "rawHeight": 159, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju1.png b/assets/resources/Window_Prop/daoju1.png new file mode 100644 index 0000000..81584ed Binary files /dev/null and b/assets/resources/Window_Prop/daoju1.png differ diff --git a/assets/resources/Window_Prop/daoju1.png.meta b/assets/resources/Window_Prop/daoju1.png.meta new file mode 100644 index 0000000..45c07c6 --- /dev/null +++ b/assets/resources/Window_Prop/daoju1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "1c111e49-b82d-4996-b6e9-bc78e698c880", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 733, + "height": 669, + "platformSettings": {}, + "subMetas": { + "daoju1": { + "ver": "1.0.6", + "uuid": "bf904b6e-7a5b-447c-a0a4-bf4151811fd1", + "importer": "sprite-frame", + "rawTextureUuid": "1c111e49-b82d-4996-b6e9-bc78e698c880", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 6, + "width": 733, + "height": 657, + "rawWidth": 733, + "rawHeight": 669, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju10.png b/assets/resources/Window_Prop/daoju10.png new file mode 100644 index 0000000..271e2ef Binary files /dev/null and b/assets/resources/Window_Prop/daoju10.png differ diff --git a/assets/resources/Window_Prop/daoju10.png.meta b/assets/resources/Window_Prop/daoju10.png.meta new file mode 100644 index 0000000..f03b680 --- /dev/null +++ b/assets/resources/Window_Prop/daoju10.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "56bb68cb-b9e7-4e96-b7de-2a974e468856", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 689, + "height": 528, + "platformSettings": {}, + "subMetas": { + "daoju10": { + "ver": "1.0.6", + "uuid": "2692332a-ba65-4e13-bb54-40af830a664f", + "importer": "sprite-frame", + "rawTextureUuid": "56bb68cb-b9e7-4e96-b7de-2a974e468856", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 689, + "height": 528, + "rawWidth": 689, + "rawHeight": 528, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju11.png b/assets/resources/Window_Prop/daoju11.png new file mode 100644 index 0000000..9e04cf2 Binary files /dev/null and b/assets/resources/Window_Prop/daoju11.png differ diff --git a/assets/resources/Window_Prop/daoju11.png.meta b/assets/resources/Window_Prop/daoju11.png.meta new file mode 100644 index 0000000..bd1ce8e --- /dev/null +++ b/assets/resources/Window_Prop/daoju11.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "ca324a72-c9a6-4539-be8a-9db36b7f4952", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 591, + "height": 721, + "platformSettings": {}, + "subMetas": { + "daoju11": { + "ver": "1.0.6", + "uuid": "dc936637-2ef4-40b6-95a3-f67a000803f7", + "importer": "sprite-frame", + "rawTextureUuid": "ca324a72-c9a6-4539-be8a-9db36b7f4952", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 591, + "height": 721, + "rawWidth": 591, + "rawHeight": 721, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju12.png b/assets/resources/Window_Prop/daoju12.png new file mode 100644 index 0000000..4f61144 Binary files /dev/null and b/assets/resources/Window_Prop/daoju12.png differ diff --git a/assets/resources/Window_Prop/daoju12.png.meta b/assets/resources/Window_Prop/daoju12.png.meta new file mode 100644 index 0000000..eb1ca11 --- /dev/null +++ b/assets/resources/Window_Prop/daoju12.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "9c437e8d-6a67-483f-829b-859d339ee270", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 676, + "height": 566, + "platformSettings": {}, + "subMetas": { + "daoju12": { + "ver": "1.0.6", + "uuid": "44f93c2f-a775-4468-a0c9-ec58e9acd9e8", + "importer": "sprite-frame", + "rawTextureUuid": "9c437e8d-6a67-483f-829b-859d339ee270", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 676, + "height": 566, + "rawWidth": 676, + "rawHeight": 566, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju2.png b/assets/resources/Window_Prop/daoju2.png new file mode 100644 index 0000000..6b39c67 Binary files /dev/null and b/assets/resources/Window_Prop/daoju2.png differ diff --git a/assets/resources/Window_Prop/daoju2.png.meta b/assets/resources/Window_Prop/daoju2.png.meta new file mode 100644 index 0000000..1745166 --- /dev/null +++ b/assets/resources/Window_Prop/daoju2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "0049e9ab-7e39-49fa-abfd-27482b158ae2", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 733, + "height": 711, + "platformSettings": {}, + "subMetas": { + "daoju2": { + "ver": "1.0.6", + "uuid": "5c4ec0b0-f6da-4435-8f7f-11b53005bbdc", + "importer": "sprite-frame", + "rawTextureUuid": "0049e9ab-7e39-49fa-abfd-27482b158ae2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 0.5, + "trimX": 40, + "trimY": 5, + "width": 652, + "height": 700, + "rawWidth": 733, + "rawHeight": 711, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju3.png b/assets/resources/Window_Prop/daoju3.png new file mode 100644 index 0000000..c428ada Binary files /dev/null and b/assets/resources/Window_Prop/daoju3.png differ diff --git a/assets/resources/Window_Prop/daoju3.png.meta b/assets/resources/Window_Prop/daoju3.png.meta new file mode 100644 index 0000000..381bcac --- /dev/null +++ b/assets/resources/Window_Prop/daoju3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b6ae8682-943e-426b-a202-84f37dc1e843", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 733, + "height": 669, + "platformSettings": {}, + "subMetas": { + "daoju3": { + "ver": "1.0.6", + "uuid": "eb6bfe8d-8ea7-4efa-b416-19b7ef4fbc0e", + "importer": "sprite-frame", + "rawTextureUuid": "b6ae8682-943e-426b-a202-84f37dc1e843", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0.5, + "trimX": 35, + "trimY": 5, + "width": 663, + "height": 658, + "rawWidth": 733, + "rawHeight": 669, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju4.png b/assets/resources/Window_Prop/daoju4.png new file mode 100644 index 0000000..4271024 Binary files /dev/null and b/assets/resources/Window_Prop/daoju4.png differ diff --git a/assets/resources/Window_Prop/daoju4.png.meta b/assets/resources/Window_Prop/daoju4.png.meta new file mode 100644 index 0000000..dbf831f --- /dev/null +++ b/assets/resources/Window_Prop/daoju4.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "0b24a717-3022-47c4-8739-9b8de223209a", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 733, + "height": 669, + "platformSettings": {}, + "subMetas": { + "daoju4": { + "ver": "1.0.6", + "uuid": "a085ff1c-7df7-4a7f-8239-91b464161e83", + "importer": "sprite-frame", + "rawTextureUuid": "0b24a717-3022-47c4-8739-9b8de223209a", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0.5, + "trimX": 18, + "trimY": 8, + "width": 697, + "height": 652, + "rawWidth": 733, + "rawHeight": 669, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju5.png b/assets/resources/Window_Prop/daoju5.png new file mode 100644 index 0000000..35abbe9 Binary files /dev/null and b/assets/resources/Window_Prop/daoju5.png differ diff --git a/assets/resources/Window_Prop/daoju5.png.meta b/assets/resources/Window_Prop/daoju5.png.meta new file mode 100644 index 0000000..a854cd6 --- /dev/null +++ b/assets/resources/Window_Prop/daoju5.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "5e6f2066-cb12-41b7-a171-fc2003da60cf", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 733, + "height": 690, + "platformSettings": {}, + "subMetas": { + "daoju5": { + "ver": "1.0.6", + "uuid": "5818a4e9-7942-4ac5-9511-a90f24e89322", + "importer": "sprite-frame", + "rawTextureUuid": "5e6f2066-cb12-41b7-a171-fc2003da60cf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 0, + "trimX": 5, + "trimY": 4, + "width": 722, + "height": 682, + "rawWidth": 733, + "rawHeight": 690, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju6.png b/assets/resources/Window_Prop/daoju6.png new file mode 100644 index 0000000..87e32ca Binary files /dev/null and b/assets/resources/Window_Prop/daoju6.png differ diff --git a/assets/resources/Window_Prop/daoju6.png.meta b/assets/resources/Window_Prop/daoju6.png.meta new file mode 100644 index 0000000..b6ff0ce --- /dev/null +++ b/assets/resources/Window_Prop/daoju6.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "97c09743-de26-4de2-b679-165a0f109674", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 733, + "height": 690, + "platformSettings": {}, + "subMetas": { + "daoju6": { + "ver": "1.0.6", + "uuid": "b8f5b30b-44bf-4d01-8b47-a5552540788a", + "importer": "sprite-frame", + "rawTextureUuid": "97c09743-de26-4de2-b679-165a0f109674", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 19, + "trimY": 21, + "width": 695, + "height": 648, + "rawWidth": 733, + "rawHeight": 690, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju7.png b/assets/resources/Window_Prop/daoju7.png new file mode 100644 index 0000000..3c3ebc5 Binary files /dev/null and b/assets/resources/Window_Prop/daoju7.png differ diff --git a/assets/resources/Window_Prop/daoju7.png.meta b/assets/resources/Window_Prop/daoju7.png.meta new file mode 100644 index 0000000..15771e8 --- /dev/null +++ b/assets/resources/Window_Prop/daoju7.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "9c5c2e4c-dc57-4743-ba73-189a3050d7af", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 785, + "height": 690, + "platformSettings": {}, + "subMetas": { + "daoju7": { + "ver": "1.0.6", + "uuid": "d920c246-6cb4-4aff-97ac-5acfaeba2132", + "importer": "sprite-frame", + "rawTextureUuid": "9c5c2e4c-dc57-4743-ba73-189a3050d7af", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0.5, + "trimX": 10, + "trimY": 30, + "width": 765, + "height": 629, + "rawWidth": 785, + "rawHeight": 690, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju8.png b/assets/resources/Window_Prop/daoju8.png new file mode 100644 index 0000000..ca2ea23 Binary files /dev/null and b/assets/resources/Window_Prop/daoju8.png differ diff --git a/assets/resources/Window_Prop/daoju8.png.meta b/assets/resources/Window_Prop/daoju8.png.meta new file mode 100644 index 0000000..a523cce --- /dev/null +++ b/assets/resources/Window_Prop/daoju8.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "6c12637c-2bb7-4e7f-881b-96809e32c6cb", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 733, + "height": 669, + "platformSettings": {}, + "subMetas": { + "daoju8": { + "ver": "1.0.6", + "uuid": "1ffc9d43-7e87-48f1-9ed2-594de9b1310f", + "importer": "sprite-frame", + "rawTextureUuid": "6c12637c-2bb7-4e7f-881b-96809e32c6cb", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 0, + "trimX": 15, + "trimY": 52, + "width": 702, + "height": 565, + "rawWidth": 733, + "rawHeight": 669, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/daoju9.png b/assets/resources/Window_Prop/daoju9.png new file mode 100644 index 0000000..0ee6bd3 Binary files /dev/null and b/assets/resources/Window_Prop/daoju9.png differ diff --git a/assets/resources/Window_Prop/daoju9.png.meta b/assets/resources/Window_Prop/daoju9.png.meta new file mode 100644 index 0000000..6dbc602 --- /dev/null +++ b/assets/resources/Window_Prop/daoju9.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "a57bdbd8-3153-459e-b71c-9dc08d255d09", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 733, + "height": 669, + "platformSettings": {}, + "subMetas": { + "daoju9": { + "ver": "1.0.6", + "uuid": "50f8a3be-4c6c-48c5-a884-26934dec7d9b", + "importer": "sprite-frame", + "rawTextureUuid": "a57bdbd8-3153-459e-b71c-9dc08d255d09", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 38, + "trimY": 45, + "width": 657, + "height": 579, + "rawWidth": 733, + "rawHeight": 669, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/light1.png b/assets/resources/Window_Prop/light1.png new file mode 100644 index 0000000..80b51ba Binary files /dev/null and b/assets/resources/Window_Prop/light1.png differ diff --git a/assets/resources/Window_Prop/light1.png.meta b/assets/resources/Window_Prop/light1.png.meta new file mode 100644 index 0000000..ef80179 --- /dev/null +++ b/assets/resources/Window_Prop/light1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f3638483-b203-466d-bd77-27450b756fa9", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 712, + "height": 458, + "platformSettings": {}, + "subMetas": { + "light1": { + "ver": "1.0.6", + "uuid": "debddcbf-4939-4d99-a2ba-55ac643ab33b", + "importer": "sprite-frame", + "rawTextureUuid": "f3638483-b203-466d-bd77-27450b756fa9", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 712, + "height": 458, + "rawWidth": 712, + "rawHeight": 458, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/light2.png b/assets/resources/Window_Prop/light2.png new file mode 100644 index 0000000..a7c523f Binary files /dev/null and b/assets/resources/Window_Prop/light2.png differ diff --git a/assets/resources/Window_Prop/light2.png.meta b/assets/resources/Window_Prop/light2.png.meta new file mode 100644 index 0000000..21e6621 --- /dev/null +++ b/assets/resources/Window_Prop/light2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "31334095-1bce-4819-afb1-b9f04de73f2a", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 712, + "height": 479, + "platformSettings": {}, + "subMetas": { + "light2": { + "ver": "1.0.6", + "uuid": "bfe330b1-16fc-4e22-bee8-d99c11892008", + "importer": "sprite-frame", + "rawTextureUuid": "31334095-1bce-4819-afb1-b9f04de73f2a", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 712, + "height": 479, + "rawWidth": 712, + "rawHeight": 479, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/light3.png b/assets/resources/Window_Prop/light3.png new file mode 100644 index 0000000..487ac6e Binary files /dev/null and b/assets/resources/Window_Prop/light3.png differ diff --git a/assets/resources/Window_Prop/light3.png.meta b/assets/resources/Window_Prop/light3.png.meta new file mode 100644 index 0000000..8205fb8 --- /dev/null +++ b/assets/resources/Window_Prop/light3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f0d6a1ff-e29a-4846-b6a9-9c96f90bd6df", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 714, + "height": 481, + "platformSettings": {}, + "subMetas": { + "light3": { + "ver": "1.0.6", + "uuid": "ca85b271-68bc-440a-9919-959d4f1f9514", + "importer": "sprite-frame", + "rawTextureUuid": "f0d6a1ff-e29a-4846-b6a9-9c96f90bd6df", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 714, + "height": 481, + "rawWidth": 714, + "rawHeight": 481, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/next.png b/assets/resources/Window_Prop/next.png new file mode 100644 index 0000000..dd6d553 Binary files /dev/null and b/assets/resources/Window_Prop/next.png differ diff --git a/assets/resources/Window_Prop/next.png.meta b/assets/resources/Window_Prop/next.png.meta new file mode 100644 index 0000000..297ae28 --- /dev/null +++ b/assets/resources/Window_Prop/next.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4f0a5f34-c7eb-40f1-b9d4-f05d45bf9157", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 246, + "height": 86, + "platformSettings": {}, + "subMetas": { + "next": { + "ver": "1.0.6", + "uuid": "78b4f3cf-0c44-402c-a11f-f588a7f58329", + "importer": "sprite-frame", + "rawTextureUuid": "4f0a5f34-c7eb-40f1-b9d4-f05d45bf9157", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 246, + "height": 86, + "rawWidth": 246, + "rawHeight": 86, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/return.png b/assets/resources/Window_Prop/return.png new file mode 100644 index 0000000..bac7645 Binary files /dev/null and b/assets/resources/Window_Prop/return.png differ diff --git a/assets/resources/Window_Prop/return.png.meta b/assets/resources/Window_Prop/return.png.meta new file mode 100644 index 0000000..76a39fa --- /dev/null +++ b/assets/resources/Window_Prop/return.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "6a766e17-7786-4eb0-9786-3e420d1dbfab", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 320, + "height": 67, + "platformSettings": {}, + "subMetas": { + "return": { + "ver": "1.0.6", + "uuid": "f1e64e18-e174-4eb1-bdad-447dadb60cc1", + "importer": "sprite-frame", + "rawTextureUuid": "6a766e17-7786-4eb0-9786-3e420d1dbfab", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 320, + "height": 67, + "rawWidth": 320, + "rawHeight": 67, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/Window_Prop/title.png b/assets/resources/Window_Prop/title.png new file mode 100644 index 0000000..271ff23 Binary files /dev/null and b/assets/resources/Window_Prop/title.png differ diff --git a/assets/resources/Window_Prop/title.png.meta b/assets/resources/Window_Prop/title.png.meta new file mode 100644 index 0000000..482c6cf --- /dev/null +++ b/assets/resources/Window_Prop/title.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "1fb08231-41e8-4fdb-86e3-ab67463b088f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 687, + "height": 149, + "platformSettings": {}, + "subMetas": { + "title": { + "ver": "1.0.6", + "uuid": "865c8e71-f691-4836-b4dd-2cb1dcba26fa", + "importer": "sprite-frame", + "rawTextureUuid": "1fb08231-41e8-4fdb-86e3-ab67463b088f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 687, + "height": 149, + "rawWidth": 687, + "rawHeight": 149, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/bg.meta b/assets/resources/bg.meta new file mode 100644 index 0000000..82bff14 --- /dev/null +++ b/assets/resources/bg.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "e9baff1b-7642-4be9-88ca-f3f9a4e2f510", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/bg/bg1.jpg b/assets/resources/bg/bg1.jpg new file mode 100644 index 0000000..0873487 Binary files /dev/null and b/assets/resources/bg/bg1.jpg differ diff --git a/assets/resources/bg/bg1.jpg.meta b/assets/resources/bg/bg1.jpg.meta new file mode 100644 index 0000000..9871629 --- /dev/null +++ b/assets/resources/bg/bg1.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "02990639-fe0f-4ad3-803c-df7b0f848c77", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg1": { + "ver": "1.0.6", + "uuid": "c948481a-54d5-400b-bdc0-06803c844edf", + "importer": "sprite-frame", + "rawTextureUuid": "02990639-fe0f-4ad3-803c-df7b0f848c77", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/bg/bg2.jpg b/assets/resources/bg/bg2.jpg new file mode 100644 index 0000000..3e04c6f Binary files /dev/null and b/assets/resources/bg/bg2.jpg differ diff --git a/assets/resources/bg/bg2.jpg.meta b/assets/resources/bg/bg2.jpg.meta new file mode 100644 index 0000000..a0c81e6 --- /dev/null +++ b/assets/resources/bg/bg2.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "932f20e4-718e-42cd-a735-f39449ebb955", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg2": { + "ver": "1.0.6", + "uuid": "f9546ab8-4040-4251-b3b9-1569564aa6d9", + "importer": "sprite-frame", + "rawTextureUuid": "932f20e4-718e-42cd-a735-f39449ebb955", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/bg/bg3.jpg b/assets/resources/bg/bg3.jpg new file mode 100644 index 0000000..178ea3b Binary files /dev/null and b/assets/resources/bg/bg3.jpg differ diff --git a/assets/resources/bg/bg3.jpg.meta b/assets/resources/bg/bg3.jpg.meta new file mode 100644 index 0000000..5be9e65 --- /dev/null +++ b/assets/resources/bg/bg3.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f2ea2a0e-1212-40d4-9a37-340cec0bb051", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg3": { + "ver": "1.0.6", + "uuid": "3c2d7a50-778e-4743-81fb-1ea7a0197831", + "importer": "sprite-frame", + "rawTextureUuid": "f2ea2a0e-1212-40d4-9a37-340cec0bb051", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/bg/bg4.jpg b/assets/resources/bg/bg4.jpg new file mode 100644 index 0000000..782b19a Binary files /dev/null and b/assets/resources/bg/bg4.jpg differ diff --git a/assets/resources/bg/bg4.jpg.meta b/assets/resources/bg/bg4.jpg.meta new file mode 100644 index 0000000..af564d0 --- /dev/null +++ b/assets/resources/bg/bg4.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "352b95f2-1985-4a53-975f-76dcf7d4b46b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg4": { + "ver": "1.0.6", + "uuid": "e9f7aff6-f58c-480d-8d37-53e28ef3e3f0", + "importer": "sprite-frame", + "rawTextureUuid": "352b95f2-1985-4a53-975f-76dcf7d4b46b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/bg/bg5.jpg b/assets/resources/bg/bg5.jpg new file mode 100644 index 0000000..c06bbd2 Binary files /dev/null and b/assets/resources/bg/bg5.jpg differ diff --git a/assets/resources/bg/bg5.jpg.meta b/assets/resources/bg/bg5.jpg.meta new file mode 100644 index 0000000..58cedb7 --- /dev/null +++ b/assets/resources/bg/bg5.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "90680057-c6bd-4b0a-a386-8c948af5a7b4", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg5": { + "ver": "1.0.6", + "uuid": "ad3ab70a-ea4c-4bb0-bc3b-3d273905c7ac", + "importer": "sprite-frame", + "rawTextureUuid": "90680057-c6bd-4b0a-a386-8c948af5a7b4", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/bg/bg6.jpg b/assets/resources/bg/bg6.jpg new file mode 100644 index 0000000..104eb0d Binary files /dev/null and b/assets/resources/bg/bg6.jpg differ diff --git a/assets/resources/bg/bg6.jpg.meta b/assets/resources/bg/bg6.jpg.meta new file mode 100644 index 0000000..d4c8e1c --- /dev/null +++ b/assets/resources/bg/bg6.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "400ebc7f-8b6d-4fab-9510-228f4a852233", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg6": { + "ver": "1.0.6", + "uuid": "0039defc-8674-467b-9256-ec7eb9515e46", + "importer": "sprite-frame", + "rawTextureUuid": "400ebc7f-8b6d-4fab-9510-228f4a852233", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/bg/bg7.jpg b/assets/resources/bg/bg7.jpg new file mode 100644 index 0000000..d3bc370 Binary files /dev/null and b/assets/resources/bg/bg7.jpg differ diff --git a/assets/resources/bg/bg7.jpg.meta b/assets/resources/bg/bg7.jpg.meta new file mode 100644 index 0000000..f420aad --- /dev/null +++ b/assets/resources/bg/bg7.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "984f38d2-a029-4f40-926d-e83a6d99809a", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg7": { + "ver": "1.0.6", + "uuid": "7503ea5f-d921-4747-ac62-6c04e483f140", + "importer": "sprite-frame", + "rawTextureUuid": "984f38d2-a029-4f40-926d-e83a6d99809a", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/bg/bg8.jpg b/assets/resources/bg/bg8.jpg new file mode 100644 index 0000000..fa8b1a9 Binary files /dev/null and b/assets/resources/bg/bg8.jpg differ diff --git a/assets/resources/bg/bg8.jpg.meta b/assets/resources/bg/bg8.jpg.meta new file mode 100644 index 0000000..09ad7d0 --- /dev/null +++ b/assets/resources/bg/bg8.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "78991791-82f2-4a52-a829-5bd78ecf9e09", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "bg8": { + "ver": "1.0.6", + "uuid": "5e952c59-d2d3-489e-b46b-ca8ed5d7dee4", + "importer": "sprite-frame", + "rawTextureUuid": "78991791-82f2-4a52-a829-5bd78ecf9e09", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/resources/prefab.meta b/assets/resources/prefab.meta new file mode 100644 index 0000000..5543d5c --- /dev/null +++ b/assets/resources/prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "4e7ff711-8a91-49f7-8580-bf07609eaaa9", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block.meta b/assets/resources/prefab/block.meta new file mode 100644 index 0000000..c4c55a1 --- /dev/null +++ b/assets/resources/prefab/block.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "a500df91-fa68-49df-9b91-3087fab64e20", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block0.prefab b/assets/resources/prefab/block/block0.prefab new file mode 100644 index 0000000..71057b6 --- /dev/null +++ b/assets/resources/prefab/block/block0.prefab @@ -0,0 +1,1425 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block0", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 122, + "height": 129 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -1, + -7, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a6/njtoR5ONq1ObGzkqO+7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "69i7DVjElBdrtH/nGe9s8t", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d5XvMsOL5DvLBzZ1Dw1J0z", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "22QWLhKxRIxadvckyRFmG4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a8hzz+oPFG0JV6HhoJ9yIW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.54, + 112.441, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98d5+x26ZEALO5hcRKGrUE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.373, + 112.731, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e2fqhyOwxPypNUKAFl9lVV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.484, + 7.519, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8ddmQMl6RNdoQ7MY7X781C", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.486, + 7.483, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "32rhoGLuBDmp+cb5MtLx9y", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 1, + "shu": 1, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -120, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block0.prefab.meta b/assets/resources/prefab/block/block0.prefab.meta new file mode 100644 index 0000000..83a76e6 --- /dev/null +++ b/assets/resources/prefab/block/block0.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "92dfa35c-14f5-48b7-8f57-583c7a23d434", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block1.prefab b/assets/resources/prefab/block/block1.prefab new file mode 100644 index 0000000..4ba644f --- /dev/null +++ b/assets/resources/prefab/block/block1.prefab @@ -0,0 +1,1425 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block1", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -4, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a294GdpSRGzrIjOyQkfHcN", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 212, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "30aeknEzdJnKCVjjMlAeD0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 212, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b8fGZW38lDS7miVdXbA3xC", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2dm+SPKwBOArmyb38NeJ4v", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e9YUZAmK9HCJEc5eGwDOl7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.598, + 112.663, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0dBLH92JBBkL/CeBEk1IB5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.432, + 112.567, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3cSC6ez01IB74ebZJx0jnB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.506, + 7.467, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4cORlEludJQ5XpAVgqn8ze", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.471, + 7.208, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "76A1r+rztHALFVunhxUSui", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 0, + "heng": 2, + "shu": 1, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block1.prefab.meta b/assets/resources/prefab/block/block1.prefab.meta new file mode 100644 index 0000000..38c6390 --- /dev/null +++ b/assets/resources/prefab/block/block1.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "e1e1fde9-4548-4234-97c0-b571d29d6964", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block10.prefab b/assets/resources/prefab/block/block10.prefab new file mode 100644 index 0000000..df9e7c7 --- /dev/null +++ b/assets/resources/prefab/block/block10.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block10", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 360 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 244, + "height": 371 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "abPvCGiiJBH7NFI8TaCGD8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 352, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77eeWpFBlB+5Om1Llm1m1z", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2981hOtf1Nm6G5IV+HrjCS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112, + 300, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7abZSKTrxN16ZAZs3WB+5T", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 126, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 226 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "79XhpQRM9Emql2aMXDdVwc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f65otjDDxK/5NjfhsYX4P4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 53, + 248, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3fqtakn1xAU6rne5NKW2tW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.544, + 352.572, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f5omS2TB1E0bT+EcRXXLdA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.987, + 352.64, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2d+n9CkOBKMIXpbtSr/Wzb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.451, + 7.674, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "59hRdJ0/pBh46qTXqqEUIU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.257, + 7.603, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "43/TZjqLtIPZTRQ17ZDcvE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.544, + 247.387, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7b0SpArxPTqg4ajK/lYLw", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 3, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -120, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block10.prefab.meta b/assets/resources/prefab/block/block10.prefab.meta new file mode 100644 index 0000000..de40d69 --- /dev/null +++ b/assets/resources/prefab/block/block10.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "2873d380-eeb8-4805-af74-462d711f466a", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block11.prefab b/assets/resources/prefab/block/block11.prefab new file mode 100644 index 0000000..477a077 --- /dev/null +++ b/assets/resources/prefab/block/block11.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block11", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.33, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 366, + "height": 254 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.33, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d5InvnU5xOjq90zDeApSir", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 113, + 128, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 230, + "height": 8 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "76OyBRL31DL4/XhEVWz+y4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3fnvU1gHVKaKa28LgplxIh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 232, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "96swWXGtxOnqhdk+kG6DJb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 67, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6dE71q2ClHEbLBwoTcTO6y", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fd3go23/dOC7AZQUMrYk09", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fdL42sgylIS642V/6or5nB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 232.475, + 232.584, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "95/UvSsOpMbqFrB86ZP1Zr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.033, + 232.484, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8dQXiK/glDRrtNGn192RKn", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.646, + 7.528, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "881LwJ/iFLhL8KKi8VuDuV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.175, + 7.58, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "95tMFfxzJEiZ3/D0Lfb+48", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 232.458, + 128.507, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f9jG43Cr9LuotTAqGhAWrs", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 3, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -120, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block11.prefab.meta b/assets/resources/prefab/block/block11.prefab.meta new file mode 100644 index 0000000..f4c2209 --- /dev/null +++ b/assets/resources/prefab/block/block11.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "2ea4f287-fa08-4f3e-8c66-6f9738b0fd0a", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block12.prefab b/assets/resources/prefab/block/block12.prefab new file mode 100644 index 0000000..dcf130d --- /dev/null +++ b/assets/resources/prefab/block/block12.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block12", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 360 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 246, + "height": 370 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 4, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "47LcGXal1PNKG0ftDaQtOE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1aBG7qlpNIm5C5ZJ7s7UlS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 352, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6c3WyRkKpKu4nNDZhpKTw4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8S1Omp6xKxpWzzpdJg81A", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 226 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "18ftE2LdxBQKUWMlT6kiXl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "89Fjt5LlFGOopUZb8OPUzT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -172, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ddwFSF+CBD+ogHMAejLDXf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.443, + 352.463, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dcl3mcUmhOAZ/OVX9MO4qJ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.033, + 351.218, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "204BFP+7xFpoLdyou/N3Ey", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.941, + 112.29, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "66tfBJgzBOd7Lu8d17v6Jr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.646, + 7.61, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "acmfF12p1M16FjBUhrTyJd", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.38, + 7.631, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "05uQ19pDhEXaZ8VP2xngSP", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 3, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block12.prefab.meta b/assets/resources/prefab/block/block12.prefab.meta new file mode 100644 index 0000000..dc7ab7b --- /dev/null +++ b/assets/resources/prefab/block/block12.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "3f275c96-62b0-417f-9224-aeb073192f1d", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block13.prefab b/assets/resources/prefab/block/block13.prefab new file mode 100644 index 0000000..76056c7 --- /dev/null +++ b/assets/resources/prefab/block/block13.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block13", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 363, + "height": 249 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "412rNj0t9MJq7Gik5BF2pm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -127, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 230, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4cGC08nW5JkL4lW0L3z2+C", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -300, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e4IH+qJdhKnbYRIOfXn9ag", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d8NTWG1b1L5K7ioMxR0mrp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -248, + 173, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2eVepgcvdO3JrIq3jXDhFc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2eUCYyv+xKk53w2e3Cmzb6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dbLlIrQB1OZbep1IZXAakQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.525, + 112.444, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ec1g8O069Ig4ryNAsziANc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -247.977, + 232.453, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c7lSMpgdFI1pF/syJwJ0FW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.339, + 232.563, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6fyM1Dm1ZG/7l11vK4+qYn", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.234, + 7.363, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bb2343KUhJerAjpMHrUGAe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.491, + 7.471, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "feka9aMslH2r6J9UKCJf7Q", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 3, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -360, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block13.prefab.meta b/assets/resources/prefab/block/block13.prefab.meta new file mode 100644 index 0000000..2c7d4e0 --- /dev/null +++ b/assets/resources/prefab/block/block13.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "4c1187d9-40bd-4210-acd7-0eecf4b2706f", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block14.prefab b/assets/resources/prefab/block/block14.prefab new file mode 100644 index 0000000..b2b9845 --- /dev/null +++ b/assets/resources/prefab/block/block14.prefab @@ -0,0 +1,2175 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block14", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + }, + { + "__id__": 49 + }, + { + "__id__": 53 + } + ], + "_active": true, + "_components": [ + { + "__id__": 57 + }, + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.66, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 364, + "height": 251 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.66, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "31yU6wE9FFKKUTZ6P5e1EB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "75OOLU+fxOYK/2r2s7h26/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 128, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9gSjSk7BLxJqOSlB0ekHY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28icNRXR5DX7KGx2B6jK6L", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 68, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4eW+teEVhAQak/7IQMfuxy", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "43lB6jsIVIsbCwuPIrIRV5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f9MXpWSrVEso495D5HwqXu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 68, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fbPri7frJJJpf0whW3EHbz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.652, + 232.496, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ffj7leAsFDpaHA+P+j+6Vf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.348, + 232.579, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60zDwidJVCK6JCpgfVIBmP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.03, + 7.829, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7dtbBVVdB/JW26YidOjp/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.545, + 127.335, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "61z9R+p+1O2I+D8NmJrW5p", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 50 + }, + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.035, + 127.529, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2aK1KRiA5C0YuYPhsgEC4a", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + }, + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 56 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.116, + 7.612, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7bYFAiUYNDZISxEvZFg7SW", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 3, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 120 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 120 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block14.prefab.meta b/assets/resources/prefab/block/block14.prefab.meta new file mode 100644 index 0000000..a3840ad --- /dev/null +++ b/assets/resources/prefab/block/block14.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "b54f9b14-fdec-476f-98f8-f0a519f7e844", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block15.prefab b/assets/resources/prefab/block/block15.prefab new file mode 100644 index 0000000..aea1069 --- /dev/null +++ b/assets/resources/prefab/block/block15.prefab @@ -0,0 +1,2175 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block15", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + }, + { + "__id__": 49 + }, + { + "__id__": 53 + } + ], + "_active": true, + "_components": [ + { + "__id__": 57 + }, + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 364, + "height": 252 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "054bzEIb5I1qoDKo3UCg36", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b00g52mWZG25WxtR9rvaUK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "731CTj015Fqp017Qv/I9f+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "90hbJPCWlD+Ij/HelbTX3X", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 173, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "44SimryNZANaBdaTbNrq/l", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "faJA80WhdIGpSvlKB/JyaX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a1mo4IjVlO2ospD7gOGez8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -128, + 173, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5fZrHZLutOZ4PQRc26CEJ6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -127.744, + 232.372, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "63fl/QuCJDJ7rgl6Ir5RzC", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.722, + 112.423, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c4IviJ0xtE9qndw3W7yxuL", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.932, + 232.174, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d2n1Q6fcpBnrzHTZ47fJrF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -351.765, + 112.005, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8m3SqKxlL56fUv+AOB6KH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 50 + }, + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.086, + 8.097, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5dN0XbwBZJ4r+rvy9IM8/i", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + }, + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 56 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.14, + 7.661, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "beXOqRhSRM6I1RWE5Mu+5B", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 3, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -360, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block15.prefab.meta b/assets/resources/prefab/block/block15.prefab.meta new file mode 100644 index 0000000..d15bfc1 --- /dev/null +++ b/assets/resources/prefab/block/block15.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "be5782f3-3dc7-43b8-a66a-ec50c83d0077", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block16.prefab b/assets/resources/prefab/block/block16.prefab new file mode 100644 index 0000000..37943b2 --- /dev/null +++ b/assets/resources/prefab/block/block16.prefab @@ -0,0 +1,2175 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block16", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + }, + { + "__id__": 49 + }, + { + "__id__": 53 + } + ], + "_active": true, + "_components": [ + { + "__id__": 57 + }, + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 360 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 243, + "height": 368 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3emXQv2ChCsr8O1H7mObwS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 352, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7dJ57CnN5OT6H+m5TZckYe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 53, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "65mMM6MgNLKZriDURZiCUM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "22qoqHyqVAzr9lEIXSqrGk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 53, + 128, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1cMfmsJ9tH44Nemv0fKGLS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50+64rl3lOwJervcdnz3Yw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3BBY7iENJvZ+dMta07Olf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6avWrBeBhJF4CJX0eBnYvR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.795, + 352.381, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "271tr7/6ZHc5jLk1T9NDj4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.427, + 232.055, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fa9Pig7WBAxYzTO1AuIFjj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.817, + 352.201, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8fqG5UqWNE2I0zkrSxhuYc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.568, + 7.496, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9z7uMl99CeIoZzlLii0nH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 50 + }, + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.301, + 127.619, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "57f/Zj3tRILIqulr99YmWD", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + }, + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 56 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.133, + 7.819, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9fHgUHrgRKIo3ja0Dcp73z", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 3, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -120, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block16.prefab.meta b/assets/resources/prefab/block/block16.prefab.meta new file mode 100644 index 0000000..4d86362 --- /dev/null +++ b/assets/resources/prefab/block/block16.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "4df8b354-d4c6-4219-852d-37ea032eb450", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block17.prefab b/assets/resources/prefab/block/block17.prefab new file mode 100644 index 0000000..602e65e --- /dev/null +++ b/assets/resources/prefab/block/block17.prefab @@ -0,0 +1,2175 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block17", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + }, + { + "__id__": 49 + }, + { + "__id__": 53 + } + ], + "_active": true, + "_components": [ + { + "__id__": 57 + }, + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 360 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 242, + "height": 369 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3w2IkvIlLeJKK1t/+3p0b", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 352, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3MXGVw5BMGZl/b6I4/o6B", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -173, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b2Sec1cRJL/qIRDyuCwVRi", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f9NlfnlvxJf7p5G+V0R55x", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -173, + 128, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "70HQQ/KLxJnIP8DrUxMvNM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "83IaRfao9B26Scq5vuu25V", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bezCRyMdpJ1pXS+hqeEhvL", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bd0WTL29JAP725qjY2w0oW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -10.104, + 349.66, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "71+Jdk2sFMT5+/3t+SVdwt", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -109.755, + 349.644, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7fdediPeZAA44gcfsdbpGf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -229.698, + 229.661, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b2y2YmGTNIFbpra4scAS5E", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -10.203, + 10.002, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "82lIlJErFDoKStXJiNwf4f", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 50 + }, + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -109.91, + 10.465, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5LcYxa+hN261n3QymuX3/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + }, + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 56 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -229.709, + 130.3, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dewslijUBAPrhC/5lGI1U3", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 3, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 120 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block17.prefab.meta b/assets/resources/prefab/block/block17.prefab.meta new file mode 100644 index 0000000..36f6c8e --- /dev/null +++ b/assets/resources/prefab/block/block17.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "fe980cba-a552-4d61-a357-19c19262f33e", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block18.prefab b/assets/resources/prefab/block/block18.prefab new file mode 100644 index 0000000..06f408b --- /dev/null +++ b/assets/resources/prefab/block/block18.prefab @@ -0,0 +1,2633 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block18", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + }, + { + "__id__": 49 + }, + { + "__id__": 53 + }, + { + "__id__": 57 + }, + { + "__id__": 61 + }, + { + "__id__": 65 + } + ], + "_active": true, + "_components": [ + { + "__id__": 69 + }, + { + "__id__": 70 + } + ], + "_prefab": { + "__id__": 71 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 360 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.66, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 364, + "height": 374 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.66, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -3, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3w2IkvIlLeJKK1t/+3p0b", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 352, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "22dJcr80ZC96B7ffaCA9si", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e8CDnbaGdNDLxFvis6LTus", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 128, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "11ml4CYcZGOapxoD4Fqo9Q", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "36UwxzKwtK76QM0GU+GlvD", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "22ln7CEt5AC7zZaS1RcDqT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "76clhZsQ9GNL3WZ6gTWjLH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aa0e35OkpOn7euW9iYlB7R", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e2l6sUHVlCN4lJX0bWyFvH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.564, + 352.412, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "73SszWP3VK84cLEbRpOfNr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.331, + 232.257, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4503auGk1KzYEm3LNeD6qm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.064, + 352.118, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f9LZplMLhDcIuQyQoycphZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 50 + }, + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.736, + 232.106, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ec31z6OoBC6YNXYNhAZyue", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + }, + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 56 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.825, + 7.624, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b9epVXtXJNgane9apdSoea", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 58 + }, + { + "__id__": 59 + } + ], + "_prefab": { + "__id__": 60 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.246, + 127.748, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ddgiL5wZdLlKvOgl9ihdnx", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 62 + }, + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.815, + 8.136, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 61 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 61 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eaO7ZkwfdF4K0xnyoGZFrF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 66 + }, + { + "__id__": 67 + } + ], + "_prefab": { + "__id__": 68 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.932, + 127.866, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0fnwqZx9FNT6/DuFY/oaC9", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 3, + "shu": 3, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 120 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block18.prefab.meta b/assets/resources/prefab/block/block18.prefab.meta new file mode 100644 index 0000000..94683ea --- /dev/null +++ b/assets/resources/prefab/block/block18.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "15e917cb-b4e4-4694-a025-45bd3a31ccc3", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block19.prefab b/assets/resources/prefab/block/block19.prefab new file mode 100644 index 0000000..3faacde --- /dev/null +++ b/assets/resources/prefab/block/block19.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block19", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 246, + "height": 248 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "abPvCGiiJBH7NFI8TaCGD8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50+M28UXJP4r0NZJ2M1fvx", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -173, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "67jV/6E1BD5oiNief9G0Hs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e6nUnw/E5KLoAzZMyX2utJ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 173, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cbw4lRqMlC2pqzjry7tRYY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c2CySaSjZCvrI8wPdix4fo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a132v2HgNNQajhVXLzJP7J", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.63, + 232.279, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5akoNN7V9K/a8b/Vmm7/tZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.545, + 232.093, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "27pF51InhCX7VtilLlUQW+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.859, + 112.134, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "53jEIXKgBLlJK4Q50v2pJe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.086, + 7.885, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "70EYku6kVNX4PHgdio9X6o", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.15, + 7.744, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "44HZz6Kx1PgbT8tslx+i0Q", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block19.prefab.meta b/assets/resources/prefab/block/block19.prefab.meta new file mode 100644 index 0000000..0750a56 --- /dev/null +++ b/assets/resources/prefab/block/block19.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "3a3098c2-78cb-4f85-834f-9a282d864462", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block2.prefab b/assets/resources/prefab/block/block2.prefab new file mode 100644 index 0000000..c317f81 --- /dev/null +++ b/assets/resources/prefab/block/block2.prefab @@ -0,0 +1,1425 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block2", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 127, + "height": 254 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 127, + "height": 254 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 2, + -6, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "01/2XZVJVET6oKYHBBUwn5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "36/+jAyRVJfoGT+wlvAAC5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5c2ItDrDZHCqDFQA+LhJq9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 212 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5efeX9lC5AKL0z87IrSEXw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 212 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c8rm4s589EYZ/Tji7rgueB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.569, + 232.32, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ae8jB/IfFD6Z0lTuhVAueo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.416, + 232.465, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "947ah/py1Pb7CmHg9QbUvh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.253, + 7.435, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b6/GI1+KtJqZ6o3tXjmVOn", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.816, + 7.459, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "17TnsvytdJjpeUAgLq3rQ9", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 1, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -120, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block2.prefab.meta b/assets/resources/prefab/block/block2.prefab.meta new file mode 100644 index 0000000..7a9173d --- /dev/null +++ b/assets/resources/prefab/block/block2.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "503530e7-cfb4-4bcb-ac38-d4dd3ce3d1af", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block20.prefab b/assets/resources/prefab/block/block20.prefab new file mode 100644 index 0000000..88368f9 --- /dev/null +++ b/assets/resources/prefab/block/block20.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block20", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 244, + "height": 249 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "abPvCGiiJBH7NFI8TaCGD8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "86ut1q9VRM1IsffNTIVHXj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -67, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b2hMJTj7hNdohFFFlWSzks", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fb5YM9LYxCbrpJLvHPG4/N", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -128, + 173, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "13SPXLg9NIA4eq9X4fcULZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a62RZPwPJKEYwiyimDI7PW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5fsC7n00pOOqIJYOwraZfh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.881, + 112.057, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3dwdra2gJN8bbScLpB98SQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -127.833, + 232.185, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f9jKFsI3dCJ5+tKxOMTkzO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.592, + 231.763, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "612Qt/mJ1MNoXAF6Ej+GIP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.141, + 7.858, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f65gXYrB1F/4qivf4X8JNj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.985, + 8.156, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "26+5Gsq/NAAqqGSEfYdWO5", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block20.prefab.meta b/assets/resources/prefab/block/block20.prefab.meta new file mode 100644 index 0000000..f607846 --- /dev/null +++ b/assets/resources/prefab/block/block20.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "6acd6f05-53d0-4866-b1a3-3fdc05bea16e", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block21.prefab b/assets/resources/prefab/block/block21.prefab new file mode 100644 index 0000000..ce626a3 --- /dev/null +++ b/assets/resources/prefab/block/block21.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block21", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 247, + "height": 252 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "abPvCGiiJBH7NFI8TaCGD8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e7C1ja4gZKvq5rxCf2wTER", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 53, + 128, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "44e2GECidDFJJ3+0A41urI", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "27bzVea0JOF5937rqLuVco", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 67, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a4G58/N8tODJg+3ODoi+CM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "26VC0IFdRBI5O+9zdcufLO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "40vo4N485NVJDZyY9X5IAn", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.444, + 232.566, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45CpnLLOFPqrLsAEIKNn9R", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.696, + 232.257, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a5OPszgAVMr74nhdM9BOi9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.468, + 8.139, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5dZ5UITOpHJ7b5vI4t8UYU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.713, + 128.361, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "08djWOZyRBn68hh/uwA2id", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.588, + 7.937, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4a3MK+/BdA2bKwseY1KHaq", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -120, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block21.prefab.meta b/assets/resources/prefab/block/block21.prefab.meta new file mode 100644 index 0000000..33c306c --- /dev/null +++ b/assets/resources/prefab/block/block21.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "bc027956-4f24-4f96-b705-359a19cccb53", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block22.prefab b/assets/resources/prefab/block/block22.prefab new file mode 100644 index 0000000..900185c --- /dev/null +++ b/assets/resources/prefab/block/block22.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block22", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 244, + "height": 251 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "abPvCGiiJBH7NFI8TaCGD8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "51Exs3U/tCXL0w0P18lnYQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72F2eNHVhNM7U6HgQbMB80", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3d7DFjRVFCxYH7hRH5iTj7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 67, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e2ZmXLQW1LYLBV+2gitcEq", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d4/KQz91NHh4AsTTXAeulM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -173, + 128, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c6BQI2DxROg5NJgUGDXZxH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.867, + 232.468, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "05AgXTlGVKiLccZqpa4b+M", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.058, + 232.125, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a8BEFVMLZCZa/uL7RpJvwl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.908, + 7.885, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1cCLv8Vc9Me4TY10wmiu+i", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.892, + 7.772, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5mVULkF1F2aYP9a0NmBtA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.289, + 127.774, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "34AeN5wHBNy7zUvW1VmKXx", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 120 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block22.prefab.meta b/assets/resources/prefab/block/block22.prefab.meta new file mode 100644 index 0000000..3eab658 --- /dev/null +++ b/assets/resources/prefab/block/block22.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "59a8c009-6f37-4960-b842-18f457d55412", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block23.prefab b/assets/resources/prefab/block/block23.prefab new file mode 100644 index 0000000..b074416 --- /dev/null +++ b/assets/resources/prefab/block/block23.prefab @@ -0,0 +1,391 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block23", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 132, + "height": 137 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a747Mv5MhG8q+708kGf9Ip", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 108, + "height": 108 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": -1, + "y": 1 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a0hvPuMqNDOZhULHc4nyGY", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e200ed15-b2bf-49eb-864b-d0ead7b9fbd6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "cc01997d-495e-480d-871e-be405a6c38b5" + }, + "_id": "" + }, + { + "__type__": "90c37YHUUVPsY0mlNmom67u", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block23.prefab.meta b/assets/resources/prefab/block/block23.prefab.meta new file mode 100644 index 0000000..8b58a72 --- /dev/null +++ b/assets/resources/prefab/block/block23.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "eec86efa-7642-410f-934a-7af388c0311a", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block3.prefab b/assets/resources/prefab/block/block3.prefab new file mode 100644 index 0000000..6592374 --- /dev/null +++ b/assets/resources/prefab/block/block3.prefab @@ -0,0 +1,1425 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block3", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 362, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -4, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "42DFF5g+xAfrrEXc9e9JkF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dcgGuHteRK0YD4DKP5YnWD", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "39KXgZhfJMZZ2MgEYQkgzY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eauA/oEDxKSrwYRcS2nz4V", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "87m7vzA7pAgYHkEJ/xO+tL", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.33, + 112.737, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0407SW9cpH8a4Jpv0jirWt", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.214, + 112.61, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b8sWf/mnJGR6okh+UA+R0y", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.319, + 7.188, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "29G/Zw4mhLd5pIzZrXfe50", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.837, + 7.235, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2561Z6cvhLQbS31uh5vuF5", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 3, + "shu": 1, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -360, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 120 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block3.prefab.meta b/assets/resources/prefab/block/block3.prefab.meta new file mode 100644 index 0000000..70013c1 --- /dev/null +++ b/assets/resources/prefab/block/block3.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "90a9eb51-3d7f-4094-add0-ad20f9379337", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block4.prefab b/assets/resources/prefab/block/block4.prefab new file mode 100644 index 0000000..ee30b38 --- /dev/null +++ b/assets/resources/prefab/block/block4.prefab @@ -0,0 +1,1425 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block4", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 122, + "height": 368 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 122, + "height": 368 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4, + -4, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45pKXV7HBGdb6ywzlrs/uK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 352, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2dqgf7OIhPc7NXxgYlCPXe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f9ux6dUUxAho0MPOdll/Q2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "35HZo5rXtMAY8+5vUgiVxs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "38Hw5xkP5D1pz0l3Ht2pPt", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.338, + 352.526, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3dmOKGEDNG/JNIc7fDpAhY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.641, + 352.705, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02aaedcHZBApkJIHBTFtbf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.318, + 7.499, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6dhTX7nwtIy6BLn6UhgSlG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.648, + 7.299, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "21YpX0Yx1H9bNt8XfVjklK", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 1, + "shu": 3, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -120, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 360 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block4.prefab.meta b/assets/resources/prefab/block/block4.prefab.meta new file mode 100644 index 0000000..bde2ddf --- /dev/null +++ b/assets/resources/prefab/block/block4.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "6c53e21f-0dfa-4273-b08a-951f6792467b", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block5.prefab b/assets/resources/prefab/block/block5.prefab new file mode 100644 index 0000000..fe3ad83 --- /dev/null +++ b/assets/resources/prefab/block/block5.prefab @@ -0,0 +1,1425 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block5", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 242, + "height": 253 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "09ejILWZhKgq7HTBLxA9ZI", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -10.607, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 8, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "46JDELudZDdLTPeGYYxLM2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -230, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 8, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2bI09nJi1DhYtBl8oiszGN", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 229.895, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 8 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f0UMQMHrNHhppxTFmHGKEC", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 9.604, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 8 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b175+4xCZKMooNbUHBXnFm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.209, + 231.315, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 4, + "height": 4 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3aR4ohmlZLkpYATZs08yA/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.338, + 231.318, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 4, + "height": 4 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77LvmvcDFLwYg5qsEDuc21", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.175, + 8.066, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 4, + "height": 4 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3fgbBjoRBGD4taY/IAYCdZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -231.305, + 8.212, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 4, + "height": 4 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "83/iHf1ldMM6h6p9l8+JyS", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block5.prefab.meta b/assets/resources/prefab/block/block5.prefab.meta new file mode 100644 index 0000000..8ae1724 --- /dev/null +++ b/assets/resources/prefab/block/block5.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "92f23179-46e7-4f6c-8d1f-3b68910937db", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block6.prefab b/assets/resources/prefab/block/block6.prefab new file mode 100644 index 0000000..c860be6 --- /dev/null +++ b/assets/resources/prefab/block/block6.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block6", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 360 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 241, + "height": 371 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -4, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dd9ikoPzRCSrbO14Ldjb0u", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 352, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8fFIsa2mlHw7+Pj63Wi6Kk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "49rYm0+dFKE7khfmLIkPNA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 300, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ab8XD6qOhJFpPFFWiAYOiF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 126, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 226 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "53P92gzoJOv5m6GNb3z7m7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8HqQPbbFJmrfxsYk0fkmb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -172, + 248, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0b9fb+hlNCYLq8891atJEx", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.24, + 352.767, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c8GaVWd4pANbVjeSHCAONe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.424, + 352.591, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "722mOsrBFMmrR4ToeR4JbU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.253, + 7.113, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8EUzmohZIibXC/REuXJjg", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.537, + 7.521, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4d37njUgFCSbO8/3Hu1bbm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.549, + 247.263, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8dk+1KsU5McIqomwarT7/9", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 3, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -120, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": -120, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": -120, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 360 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block6.prefab.meta b/assets/resources/prefab/block/block6.prefab.meta new file mode 100644 index 0000000..a6e5564 --- /dev/null +++ b/assets/resources/prefab/block/block6.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "b38991fe-2e45-431c-8f23-974e7905dfaa", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block7.prefab b/assets/resources/prefab/block/block7.prefab new file mode 100644 index 0000000..eb6c1f2 --- /dev/null +++ b/assets/resources/prefab/block/block7.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block7", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 364, + "height": 252 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "29Z0qcjSJAIrfabkk9zjS+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -235.117, + 129.242, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 230, + "height": 8 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6bJYZZBElFmJE60ypCOfP4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "47hFHXsVJLvLlmK7/3xtpc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352, + 181.436, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 94 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dbbX2PDAFBTK2FpM9YO/OE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -113, + 66, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "37DEtbEBxMkKlSs59cbak2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ecgVtzquVP5pEtC7FfjS2x", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "74zQ0qQopK7Y7INKyJuunv", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.156, + 232.617, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "40KuwEPiNKQJ3clmFGjYl/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.151, + 232.492, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45obmGwllIRIq7lP3OAKAF", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.282, + 7.359, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2dSlT7vWtKnbjqKVkBkuJk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -113.444, + 7.274, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f9QTKzRhFH96TTBkroOlTI", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.595, + 129.548, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f7d4CLgRJFHZHnS2ZYdXTE", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 3, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -360, + "y": 120 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": -120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block7.prefab.meta b/assets/resources/prefab/block/block7.prefab.meta new file mode 100644 index 0000000..aa523dc --- /dev/null +++ b/assets/resources/prefab/block/block7.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "7e0a9fcf-7599-443b-814d-05bf5cca516a", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block8.prefab b/assets/resources/prefab/block/block8.prefab new file mode 100644 index 0000000..dffa933 --- /dev/null +++ b/assets/resources/prefab/block/block8.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block8", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 360 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 242, + "height": 371 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -3, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "82HJvouS5HNYhuZ2CcVncN", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5q04cYQJHHr6sTgbqOgWR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 352, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "58c5KPzfhKAZKG5VmCJVuA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "afZhoIkSBKi4VWbJqbEzw0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -128, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 226 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7eOJGAHZlB84K2cYamojga", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 180, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 336 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ddUzsLbmxCR7g+dvQHESoj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -68, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 110, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3+OFY+qJCmY4rdm8S6nYM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -127.721, + 351.341, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19jiWgb+FLnoRGvlVZXfRf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.51, + 112.335, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "acxrHtp85Gz7JHxxklGDN3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.412, + 352.58, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0ahBNWwbRJcJtHJi0XtCBr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.342, + 7.459, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "39MFOdP7ZLIq94sw7x+/MX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232.328, + 7.627, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bcqFj5faBHQLL6kAMbsEJj", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 2, + "shu": 3, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -240, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 360 + }, + { + "__type__": "cc.Vec2", + "x": 120, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block8.prefab.meta b/assets/resources/prefab/block/block8.prefab.meta new file mode 100644 index 0000000..2ad3f96 --- /dev/null +++ b/assets/resources/prefab/block/block8.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "5b0aa537-7f4b-4132-ac45-2101f453a688", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/block/block9.prefab b/assets/resources/prefab/block/block9.prefab new file mode 100644 index 0000000..4004b86 --- /dev/null +++ b/assets/resources/prefab/block/block9.prefab @@ -0,0 +1,1873 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "block9", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 9 + }, + { + "__id__": 13 + }, + { + "__id__": 17 + }, + { + "__id__": 21 + }, + { + "__id__": 25 + }, + { + "__id__": 29 + }, + { + "__id__": 33 + }, + { + "__id__": 37 + }, + { + "__id__": 41 + }, + { + "__id__": 45 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 367, + "height": 250 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 367, + "height": 250 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "efhUz1/1xMa7V78U/OvWWw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -232, + 112, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 230, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "66Up/46QRBJZT9Ej3kwies", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 232, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 96, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "0", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c2yT53oLtCYZ9gFq7fJbaL", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352, + 60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 96 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ecE0FDUPVMTZYvX8Z5Hct3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112, + 173, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 110 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "2", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "793v23K8NJobpCgl2Dmu8B", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 11, + "height": 216 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8, + 120, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 216 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "3", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7eRmPq4iVErZGqSyA78+u/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 216, + "height": 10 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -180, + 8, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 336, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "1", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0cOGORP15AJbWSassqqmar", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.345, + 232.672, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f6PaAcoYBLkpoJiQ5YUzgM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + }, + { + "__id__": 35 + } + ], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -112.179, + 232.286, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1fFK/5S7JE2Za4sRX2ZLbX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_up_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.242, + 112.452, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7duR52Rq9J6oMaXfOz/3Ig", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_right", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7.663, + 7.356, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "41ggI57DlLqanxdRTTnofb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tan_down_left", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -352.615, + 7.271, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": true, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 7, + "height": 7 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "data_string": "5", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "93tSkDJ6RELpdh4Bf4ApXE", + "sync": false + }, + { + "__type__": "c58deN2u1NGZL8nJwvnu1PR", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "type": 0, + "color": 1, + "heng": 3, + "shu": 2, + "ice_SpriteFrame": { + "__uuid__": "ba9a4097-f4d2-4cc8-b325-34405e67b130" + }, + "magic_SkeletonData": { + "__uuid__": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b" + }, + "_id": "" + }, + { + "__type__": "cc.PolygonCollider", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "tag": 0, + "_offset": { + "__type__": "cc.Vec2", + "x": -360, + "y": 0 + }, + "points": [ + { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 120 + }, + { + "__type__": "cc.Vec2", + "x": 240, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 240 + }, + { + "__type__": "cc.Vec2", + "x": 360, + "y": 0 + } + ], + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/block/block9.prefab.meta b/assets/resources/prefab/block/block9.prefab.meta new file mode 100644 index 0000000..bf05e44 --- /dev/null +++ b/assets/resources/prefab/block/block9.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "0237ad36-2cdb-4e29-944a-8720564056bc", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall.meta b/assets/resources/prefab/wall.meta new file mode 100644 index 0000000..5a384d4 --- /dev/null +++ b/assets/resources/prefab/wall.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "74a04df7-a212-4b10-b77c-99e06c88867a", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/down.prefab b/assets/resources/prefab/wall/down.prefab new file mode 100644 index 0000000..36c0975 --- /dev/null +++ b/assets/resources/prefab/wall/down.prefab @@ -0,0 +1,4844 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 14 + }, + { + "__id__": 17 + }, + { + "__id__": 40 + }, + { + "__id__": 110 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 130 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "52vZVyKldLTIfK4i4hv6+q", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + }, + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 138, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -71.171, + -73.484, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 68, + 49, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "febdyZFdNEoYVDzrHtexXj", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6db2aafd-c221-4be9-a20b-5bb361fe22ef" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "freezeSpine": { + "__uuid__": "f8f19cf0-280d-4872-a743-a54314eec6a8" + }, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 120, + "height": 50 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 71, + "y": 40 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "4ecBBRHtJL0I341peTNQqN", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 122, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -62.944, + -60.914, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8enuCO4hZJwYBRkAysrMB2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 18 + }, + { + "__id__": 24 + }, + { + "__id__": 29 + }, + { + "__id__": 34 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "freeze0", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 19 + } + ], + "_active": false, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 238, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -31.693, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 62, + "b": 62, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 56.29, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0czVTi2EJC+LKaUFZNFvZz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": false, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "26CJ/PlzNARquyjPM0nAVg", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze1", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 25 + } + ], + "_active": false, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 138, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -12.095, + -39.207, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 24 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 26 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 59.17, + 14.191, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d5AuxCYL1BMJCCfvdo7lm9", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0e550299-e5d6-472d-bffe-5b207a3419a9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5fVUgv26NKerGJtE2pFoCL", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze2", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 30 + } + ], + "_active": false, + "_components": [ + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 257, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -10.321, + -37.764, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 31 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 120.963, + 14.57, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "24riP1iXJH8LgmaB13kt+P", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f9f9ba4e-cf9b-4642-8e74-90b6dac2399e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4fCf1mEuRGgKJeK1+gh/p7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze3", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 35 + } + ], + "_active": false, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 378, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -12, + -37.764, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 176.35, + 14.804, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3gRNrVglPvZGG3QI9HKub", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "df8cf534-aab6-4e8d-b5b7-0008fcdceba1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dee35PUaxA7b524nIwm2Pc", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "97drqD24pHF54Bfy5Ohjgk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 41 + }, + { + "__id__": 49 + }, + { + "__id__": 69 + }, + { + "__id__": 89 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 109 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "open0", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 42 + }, + { + "__id__": 45 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 41 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 248, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.346, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cer2tXus1Nt69KWFYLVHw4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 41 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 248, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.862, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3blAgXGFNn4KKS4ELzTW0", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9chlOR1hFMVJp+bKqPsRKk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open1", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 50 + }, + { + "__id__": 56 + }, + { + "__id__": 62 + }, + { + "__id__": 65 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 68 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [ + { + "__id__": 51 + } + ], + "_active": true, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.804, + -26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.963, + 0.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5y6NqzlhNO4jqOH70U+21", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3a5EHsoZxLXoDwGaRqxbVy", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [ + { + "__id__": 57 + } + ], + "_active": true, + "_components": [ + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 61 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.356, + -26, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 56 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.221, + 0.386, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + -1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d9nsagqv1JTLgIcnZS0tEP", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 56 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e41Yew8gNCbo7PDCELLFac", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.731, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3bl44LIkNH2aAXqlxp7wid", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 109.525, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6b2TSH9fVKNLU2ZLaMYEjp", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ffYCOLO8xNGaG4fQHKkFFM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open2", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 70 + }, + { + "__id__": 76 + }, + { + "__id__": 82 + }, + { + "__id__": 85 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 88 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 2 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [ + { + "__id__": 71 + } + ], + "_active": true, + "_components": [ + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 75 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.804, + -26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 70 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 116.02, + 0.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98fOInrwhKg4Qsy9qs8emI", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 70 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4aHygCcRRD078ar7f7ByWM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [ + { + "__id__": 77 + } + ], + "_active": true, + "_components": [ + { + "__id__": 80 + } + ], + "_prefab": { + "__id__": 81 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 115, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.959, + -26, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 78 + } + ], + "_prefab": { + "__id__": 79 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.015, + 0.386, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + -1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dfvCBKVxBNqpzW8EID1Kcf", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "61ZNjnE6RKz7WiolVnnoUo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.499, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bdEJJCb5FMargT30TILjhM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 229.661, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4fMiev42VLfY3wNmyYyhXG", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7j/SuFv9FBIonCAR5B+OK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open3", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 90 + }, + { + "__id__": 96 + }, + { + "__id__": 102 + }, + { + "__id__": 105 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 108 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 3 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 91 + } + ], + "_active": true, + "_components": [ + { + "__id__": 94 + } + ], + "_prefab": { + "__id__": 95 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.604, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 93 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.775, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c7p+48P9FLlYogIS6zf9c0", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "db0t3Q9e9OCpfpuO+yjCwv", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 97 + } + ], + "_active": true, + "_components": [ + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 101 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 351.76, + -28.534, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 96 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 98 + } + ], + "_prefab": { + "__id__": 99 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.849, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + -0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 97 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5aHJ05BFVAx59AWoG4ziSJ", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 96 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0cOjb+q9pBI69yngQX53m6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 103 + } + ], + "_prefab": { + "__id__": 104 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.692, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e9dvZ4it5DmYw/vpevZ41B", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 350.814, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "16Cupc71FGIKbY5pE4EJSa", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "25Lk+gYxBHeK2Ecz3zi++E", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9u2mFJCBKm6nGhsoDn+Ud", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "revolving", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 111 + }, + { + "__id__": 117 + }, + { + "__id__": 123 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 129 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "rotate1", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 112 + } + ], + "_active": false, + "_components": [ + { + "__id__": 115 + } + ], + "_prefab": { + "__id__": 116 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -33, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 111 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 113 + } + ], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 112 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "03mmvuDs9PC4KisIzK826i", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 111 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98t3OaM71DaqDgvC5lhJT1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate2", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 118 + } + ], + "_active": false, + "_components": [ + { + "__id__": 121 + } + ], + "_prefab": { + "__id__": 122 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + -33, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 117 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 119 + } + ], + "_prefab": { + "__id__": 120 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 118 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5997+gtnlICqHOwo//gnAy", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 117 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dc7epEnGBAL4dGent5gsTh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate3", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 124 + } + ], + "_active": false, + "_components": [ + { + "__id__": 127 + } + ], + "_prefab": { + "__id__": 128 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 120, + -33, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 123 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 125 + } + ], + "_prefab": { + "__id__": 126 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 124 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "c15c2KtUxM0J/jE0A6fNlq", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0dE0P0/9FCQ6EtKeyVhCMh", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/down.prefab.meta b/assets/resources/prefab/wall/down.prefab.meta new file mode 100644 index 0000000..9bb6c9e --- /dev/null +++ b/assets/resources/prefab/wall/down.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "cef92b6b-13fd-44c8-a4af-848b55a7ba57", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/downleft.prefab b/assets/resources/prefab/wall/downleft.prefab new file mode 100644 index 0000000..4bf8cfa --- /dev/null +++ b/assets/resources/prefab/wall/downleft.prefab @@ -0,0 +1,476 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "downleft", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.999, + -38.349, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "66cdd4ba-4c1c-4221-b6c3-7e4b6f3d3000" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0cXBppYPlK7bOjHXu/M2dR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 10.519, + 31.608, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "dbVoqN4U9LQJm0rLaGX3/7", + "sync": false + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": null, + "freezeSpine": null, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 100 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": -50, + "y": 60 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "2dQvokOBlIT7A25tUb+Jik", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/downleft.prefab.meta b/assets/resources/prefab/wall/downleft.prefab.meta new file mode 100644 index 0000000..34c3d96 --- /dev/null +++ b/assets/resources/prefab/wall/downleft.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "c60f2941-9164-45b7-a6b6-708306fcd39a", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/downright.prefab b/assets/resources/prefab/wall/downright.prefab new file mode 100644 index 0000000..27b5dee --- /dev/null +++ b/assets/resources/prefab/wall/downright.prefab @@ -0,0 +1,476 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "downright", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 82 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0.57, + -28.946, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2ba1f715-79aa-4ceb-8590-ea2271e76f71" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "afdF1qXAtMx53SnSA/u8Ps", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -5.08, + 31.062, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "dfoXua40VOVIZ0yECMF6RC", + "sync": false + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": null, + "freezeSpine": null, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 100 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 50, + "y": 60 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "487dzv0lVEAYRTrAgBdE/q", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/downright.prefab.meta b/assets/resources/prefab/wall/downright.prefab.meta new file mode 100644 index 0000000..b846b95 --- /dev/null +++ b/assets/resources/prefab/wall/downright.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a63ade2f-c476-4f26-84e6-b978db27c435", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/left.prefab b/assets/resources/prefab/wall/left.prefab new file mode 100644 index 0000000..7d4da01 --- /dev/null +++ b/assets/resources/prefab/wall/left.prefab @@ -0,0 +1,4844 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "left", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 14 + }, + { + "__id__": 17 + }, + { + "__id__": 40 + }, + { + "__id__": 110 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 130 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5aKcohrUlG0KFwzIYCyGG3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + }, + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 61, + "height": 146 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -69.998, + -73.268, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 26, + 94, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "0ahXqv/FhM1pRuHeXCPtnJ", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4f65ed94-5d59-48ce-b94f-e199044365cf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "freezeSpine": { + "__uuid__": "f8f19cf0-280d-4872-a743-a54314eec6a8" + }, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 50, + "height": 120 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 38, + "y": 73 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "3bosf+LTVIrKClWSc0imT9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 45, + "height": 124 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60.192, + -61.903, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fbOinrflpPLqLfUDO3dfNB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 18 + }, + { + "__id__": 24 + }, + { + "__id__": 29 + }, + { + "__id__": 34 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -11.432, + 70.357, + 0, + 0, + 0, + -0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "freeze0", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 19 + } + ], + "_active": false, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 238, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -31.693, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 62, + "b": 62, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 56.29, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "39fedoHiNG4LdLl1dBkNPw", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": false, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9cQjGIYSNJwpJaR6CFfRg9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze1", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 25 + } + ], + "_active": false, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 145 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 71.346, + -59.704, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 24 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 26 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 21.13, + 12.531, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "923Qd0OrBMvoSrkphI8dyK", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "618efc2c-3a16-4c55-b4b4-de050462591c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1fL3E2SmxIxpQrVNzjllg0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze2", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 30 + } + ], + "_active": false, + "_components": [ + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 266 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 9.467, + -59.988, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 31 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 18.922, + 0, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "64OVisy5VIm4lz1eUqdEVv", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0df95967-2a3b-46e7-aa94-2a22a556578d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d1ey+F6s5Is4AERw3m2D2D", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze3", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 35 + } + ], + "_active": false, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 386 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -50.283, + -60.788, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 19.32, + 0, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "600rMHAj1PuKizdmMpHKUk", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "cf065294-b4ed-4933-b351-a5169d7e9d42" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d9iSCoL5ZN8LpNthPYhmeL", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f06tI/30JMPJPlCRHEjqm3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 41 + }, + { + "__id__": 49 + }, + { + "__id__": 69 + }, + { + "__id__": 89 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 109 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -65.739, + -41.321, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "open0", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 42 + }, + { + "__id__": 45 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 41 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 248, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.346, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50ZyhGXZlHzbfF61viafcs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 41 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 248, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.862, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f84O30KzJOZI0c/u0vuz4i", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b9u+vdpIpNuIU6PI1WkclB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open1", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 50 + }, + { + "__id__": 56 + }, + { + "__id__": 62 + }, + { + "__id__": 65 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 68 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [ + { + "__id__": 51 + } + ], + "_active": true, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.804, + -26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.963, + 0.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6cEvqUkdxBXLNwneFKeV2y", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "93AcvXrdFCQY4p1gfUhLrl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [ + { + "__id__": 57 + } + ], + "_active": true, + "_components": [ + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 61 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.356, + -26, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 56 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.221, + 0.386, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + -1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bcPigru1ZMHYfaQ0OM2Ad8", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 56 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a1etd7r21PbpvgHTc83X5j", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.731, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45N2BGHJRAGaMY5ZjUeDK1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 109.525, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a4wOuFtZ1EjqNPaEx8u68e", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b0RrijIlVGBII7OSSxl66n", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open2", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 70 + }, + { + "__id__": 76 + }, + { + "__id__": 82 + }, + { + "__id__": 85 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 88 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 2 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [ + { + "__id__": 71 + } + ], + "_active": true, + "_components": [ + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 75 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.804, + -26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 70 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 116.02, + 0.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "32LAL3L7lAMIhFdiI+FvkC", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 70 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0apDY4lwZAhIjSOeg7qDgu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [ + { + "__id__": 77 + } + ], + "_active": true, + "_components": [ + { + "__id__": 80 + } + ], + "_prefab": { + "__id__": 81 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 115, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.959, + -26, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 78 + } + ], + "_prefab": { + "__id__": 79 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.015, + 0.386, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + -1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5rk7qgtpMWJkIlTVOsIPX", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f7poDgOnlK1IX7YHzvP7rQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.499, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2ekm8q7ylDCosJsRFndUmr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 229.661, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9djTsNaItHjqNYNGOws9JA", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d2P8O7x9hKd61MAuAfZYPs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open3", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 90 + }, + { + "__id__": 96 + }, + { + "__id__": 102 + }, + { + "__id__": 105 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 108 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 3 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 91 + } + ], + "_active": true, + "_components": [ + { + "__id__": 94 + } + ], + "_prefab": { + "__id__": 95 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.604, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 93 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.775, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7c80YmasVI06ZTwfK8dYf6", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c4Bi6GnrJJqKdYgcMFXoUs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 97 + } + ], + "_active": true, + "_components": [ + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 101 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 351.76, + -28.534, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 96 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 98 + } + ], + "_prefab": { + "__id__": 99 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.849, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + -0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 97 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19THQDDEFIsreRI+K5kMKX", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 96 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6e+BEKyidIGZ4sRRMFv6o7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 103 + } + ], + "_prefab": { + "__id__": 104 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.692, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "51EefyqnBA1J8RcVefoQ6k", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 350.814, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7aczztoelNgbjGf7p+K5FD", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eemjUJpvZPaZ46mJ4C++27", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2eYpwsmq1KhZT/2sB1vMZ8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "revolving", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 111 + }, + { + "__id__": 117 + }, + { + "__id__": 123 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 129 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "rotate1", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 112 + } + ], + "_active": false, + "_components": [ + { + "__id__": 115 + } + ], + "_prefab": { + "__id__": 116 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -40, + 0, + 0, + 0, + 0, + -0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 111 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 113 + } + ], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 112 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "55U6ftuU9OfIcwRa060a+C", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 111 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0dy+YkDKFF75H9l1J+lmc6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate2", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 118 + } + ], + "_active": false, + "_components": [ + { + "__id__": 121 + } + ], + "_prefab": { + "__id__": 122 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -40, + 60, + 0, + 0, + 0, + -0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 117 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 119 + } + ], + "_prefab": { + "__id__": 120 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 118 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77fRuW2uxDkpGMBVsG9Hhj", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 117 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c7fHc0TOtBE5lMZ2dzAWdu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate3", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 124 + } + ], + "_active": false, + "_components": [ + { + "__id__": 127 + } + ], + "_prefab": { + "__id__": 128 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -40, + 120, + 0, + 0, + 0, + -0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 123 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 125 + } + ], + "_prefab": { + "__id__": 126 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 124 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "c15c2KtUxM0J/jE0A6fNlq", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aeCCFODu1H16nXIA3d5Vpb", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/left.prefab.meta b/assets/resources/prefab/wall/left.prefab.meta new file mode 100644 index 0000000..5251524 --- /dev/null +++ b/assets/resources/prefab/wall/left.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "b6ab43fe-8e9a-48ac-9dc9-9107a47de661", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/leftdown.prefab b/assets/resources/prefab/wall/leftdown.prefab new file mode 100644 index 0000000..6041405 --- /dev/null +++ b/assets/resources/prefab/wall/leftdown.prefab @@ -0,0 +1,476 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "leftdown", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 64, + "height": 114 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -41.23, + 14.983, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "180c4165-112b-4a25-8631-f431f5abd9d1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "20Az0LUIhCNooFpEikVm/Z", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 13.803, + 30.67, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "3bnPJ5YNJA4638aP9ZTQo6", + "sync": false + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": null, + "freezeSpine": null, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 120, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 65, + "y": -49 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "66AGoIxQZOu5Ahe9/s8pOl", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/leftdown.prefab.meta b/assets/resources/prefab/wall/leftdown.prefab.meta new file mode 100644 index 0000000..70ef9bd --- /dev/null +++ b/assets/resources/prefab/wall/leftdown.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "6880788c-f9ff-4a7f-a2a8-d84b636c7175", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/leftup.prefab b/assets/resources/prefab/wall/leftup.prefab new file mode 100644 index 0000000..6128c7c --- /dev/null +++ b/assets/resources/prefab/wall/leftup.prefab @@ -0,0 +1,476 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "leftup", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 76, + "height": 124 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -34.934, + -13.541, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd8e35a7-f384-4898-9af4-58e6fcea5c1c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "adiMZrWKZCiqfb+vrwv0PO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + -60.078, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.965, + 37.927, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "571mEFkJlKKZjlaxTF2a43", + "sync": false + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": null, + "freezeSpine": null, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 100 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 10, + "y": 60 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "3bosf+LTVIrKClWSc0imT9", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/leftup.prefab.meta b/assets/resources/prefab/wall/leftup.prefab.meta new file mode 100644 index 0000000..9976b5c --- /dev/null +++ b/assets/resources/prefab/wall/leftup.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a2e2aab1-b8b2-4858-9d8c-14bdad524c08", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/right.prefab b/assets/resources/prefab/wall/right.prefab new file mode 100644 index 0000000..d281a3f --- /dev/null +++ b/assets/resources/prefab/wall/right.prefab @@ -0,0 +1,4844 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "right", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 14 + }, + { + "__id__": 17 + }, + { + "__id__": 40 + }, + { + "__id__": 110 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 130 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "31vXTda4RCtIPybgttC2a7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + }, + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 61, + "height": 146 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 6.333, + -73.465, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 26, + 90, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "1c/sIYX8hNIr2+mDJ9qxDv", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4f65ed94-5d59-48ce-b94f-e199044365cf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "freezeSpine": { + "__uuid__": "f8f19cf0-280d-4872-a743-a54314eec6a8" + }, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 50, + "height": 120 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 25, + "y": 73.5 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "3bosf+LTVIrKClWSc0imT9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 45, + "height": 124 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.245, + -61.903, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1bumYrXqFOKZrfKZgdN/nD", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 18 + }, + { + "__id__": 24 + }, + { + "__id__": 29 + }, + { + "__id__": 34 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 66.618, + 70.357, + 0, + 0, + 0, + -0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "freeze0", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 19 + } + ], + "_active": false, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 238, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -31.693, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 62, + "b": 62, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 56.29, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a5SzsCFMFMh7s24JqbHRHD", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": false, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8ecgHeP9RM/bWYaqJ/y7M/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze1", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 25 + } + ], + "_active": false, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 145 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 71.346, + -59.704, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 24 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 26 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 22.279, + 12.531, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d8fW8K6L5Cf55dztewv/w8", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "618efc2c-3a16-4c55-b4b4-de050462591c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8fUNsI59ZJpqxGTvEgoh4R", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze2", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 30 + } + ], + "_active": false, + "_components": [ + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 266 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 9.467, + -59.988, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 31 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 20.071, + 0, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "18HgxMP85Prq34qPmyWekX", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0df95967-2a3b-46e7-aa94-2a22a556578d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f4RilItl9LLKXSylsxxQeQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze3", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 35 + } + ], + "_active": false, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 62, + "height": 386 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -50.283, + -60.788, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 20.469, + 0, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "22QChIV2JEEanKbwhRxaqf", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "cf065294-b4ed-4933-b351-a5169d7e9d42" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "75pBxP2/VHvpAY2Lke4A1d", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fanrL1aoJFjKtEWAHtMtoI", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 41 + }, + { + "__id__": 49 + }, + { + "__id__": 69 + }, + { + "__id__": 89 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 109 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 9.78, + -40.493, + 0, + 0, + 0, + 0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "open0", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 42 + }, + { + "__id__": 45 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 41 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 248, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.346, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "92GQniZR1BoYsVqPpsnxKZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 41 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 248, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.862, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e8BLQNdGRJT6KBLHpRwtVc", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7djF06M89OM66V0Uqepl5/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open1", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 50 + }, + { + "__id__": 56 + }, + { + "__id__": 62 + }, + { + "__id__": 65 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 68 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [ + { + "__id__": 51 + } + ], + "_active": true, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.804, + -26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.963, + 0.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c3n6tpv8RMSrNvhVahL40R", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c4fB2TJt5BlpRrI9fQcfQA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [ + { + "__id__": 57 + } + ], + "_active": true, + "_components": [ + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 61 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.356, + -26, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 56 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.221, + 0.386, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + -1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7gxUbdTpKa6FEojCGNnjs", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 56 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48Jt3HrGxGNaz6/QWos41m", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.731, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "75FB/UWLZKL5NAIEn2ZFCM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 109.525, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fb/K7WfqhOUKCgZJDKd0Nz", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ebFlVqe8pD4qjQbIK8ZIxp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open2", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 70 + }, + { + "__id__": 76 + }, + { + "__id__": 82 + }, + { + "__id__": 85 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 88 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 2 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [ + { + "__id__": 71 + } + ], + "_active": true, + "_components": [ + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 75 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.804, + -26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 70 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 116.02, + 0.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9ad1B/4ftF96e/Raa5FfXb", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 70 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "49nNYGf+ZP3KdvY6lRGXCB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [ + { + "__id__": 77 + } + ], + "_active": true, + "_components": [ + { + "__id__": 80 + } + ], + "_prefab": { + "__id__": 81 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 115, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.959, + -26, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 78 + } + ], + "_prefab": { + "__id__": 79 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.015, + 0.386, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + -1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "29i6IurlJHyZSexaX344pX", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3trj17x5LVqfzBNk90s+s", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.499, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7edWhFIFxNgb95NFCAedVA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 229.661, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98ugpk0r5JrpGGK6ITDMJz", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "18NbbZGwVMm6rU1Ue1Q6cb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open3", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 90 + }, + { + "__id__": 96 + }, + { + "__id__": 102 + }, + { + "__id__": 105 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 108 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 3 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 91 + } + ], + "_active": true, + "_components": [ + { + "__id__": 94 + } + ], + "_prefab": { + "__id__": 95 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.604, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 93 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.775, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "90fPVk/ghOt7KWCB4mo8aI", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c2RbMUwM5Bk60gRkEjixY0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 97 + } + ], + "_active": true, + "_components": [ + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 101 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 351.76, + -28.534, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 96 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 98 + } + ], + "_prefab": { + "__id__": 99 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.849, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + -0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 97 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02LoV+e4tHy4OG74ouXkuF", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 96 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8ehaylptNM4acT9lD3rFxk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 103 + } + ], + "_prefab": { + "__id__": 104 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.692, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dePtQXHxxFwYfCydMspivz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 350.814, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7epCBrkjhIs48vd5KjwJCe", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fcw/x+NvpLZKAvZ0p+lgTw", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fd9UM63gFLtZGYn7a56INE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "revolving", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 111 + }, + { + "__id__": 117 + }, + { + "__id__": 123 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 129 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "rotate1", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 112 + } + ], + "_active": false, + "_components": [ + { + "__id__": 115 + } + ], + "_prefab": { + "__id__": 116 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 37.916, + 0, + 0, + 0, + 0, + -0.7071067811865476, + -0.7071067811865475, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -270 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 111 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 113 + } + ], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 112 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3b2YmObq1Ek7FVZxcYfN2p", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 111 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "67MaVyQQZO654EJ2cTkB3C", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate2", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 118 + } + ], + "_active": false, + "_components": [ + { + "__id__": 121 + } + ], + "_prefab": { + "__id__": 122 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 37.916, + 60, + 0, + 0, + 0, + -0.7071067811865476, + -0.7071067811865475, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -270 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 117 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 119 + } + ], + "_prefab": { + "__id__": 120 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 118 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "85GnNR6ilAZaPWo61m14C7", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 117 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "65n50x4YJBFKkiFERWlTcc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate3", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 124 + } + ], + "_active": false, + "_components": [ + { + "__id__": 127 + } + ], + "_prefab": { + "__id__": 128 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 37.916, + 120, + 0, + 0, + 0, + -0.7071067811865476, + -0.7071067811865475, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -270 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 123 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 125 + } + ], + "_prefab": { + "__id__": 126 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 124 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "c15c2KtUxM0J/jE0A6fNlq", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "970Ry1rz1C/5B8Jq1XgWom", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/right.prefab.meta b/assets/resources/prefab/wall/right.prefab.meta new file mode 100644 index 0000000..cc1d18d --- /dev/null +++ b/assets/resources/prefab/wall/right.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "8600d9b3-b4ad-4c84-b458-42b4f31addcd", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/rightdown.prefab b/assets/resources/prefab/wall/rightdown.prefab new file mode 100644 index 0000000..f2f3cca --- /dev/null +++ b/assets/resources/prefab/wall/rightdown.prefab @@ -0,0 +1,476 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "rightdown", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 64, + "height": 108 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 37.549, + 20, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "cfcc36af-42b3-41a5-874e-bb87f2ad3af1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "17F4Ig/RNAUYniDvuLvn4u", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 90.492, + 31.062, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "a9x69Mo3JOaYOJYZFMwnsg", + "sync": false + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": null, + "freezeSpine": null, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 120, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 55, + "y": -49 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "9c4l7rfONPk63bPFtWj9GC", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/rightdown.prefab.meta b/assets/resources/prefab/wall/rightdown.prefab.meta new file mode 100644 index 0000000..6262135 --- /dev/null +++ b/assets/resources/prefab/wall/rightdown.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "58d75799-abbc-454d-bf35-9027ac7cc25e", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/rightup.prefab b/assets/resources/prefab/wall/rightup.prefab new file mode 100644 index 0000000..0cb3d74 --- /dev/null +++ b/assets/resources/prefab/wall/rightup.prefab @@ -0,0 +1,476 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "rightup", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 35.034, + -11.041, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "80f35751-d652-4086-8d03-c7d67a2157ed" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f7G1gnrQNEWZT2UHIrn73w", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -60, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 33.506, + 60.693, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "0eVxennZdEJboXLz17jHwA", + "sync": false + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": null, + "freezeSpine": null, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 10, + "height": 100 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 50, + "y": 60 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "06ziY4X0dPNb77eAVy8rMd", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/rightup.prefab.meta b/assets/resources/prefab/wall/rightup.prefab.meta new file mode 100644 index 0000000..6df54d0 --- /dev/null +++ b/assets/resources/prefab/wall/rightup.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "912be168-513a-43df-9bd9-0a2e53bbc780", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/up.prefab b/assets/resources/prefab/wall/up.prefab new file mode 100644 index 0000000..5bc1190 --- /dev/null +++ b/assets/resources/prefab/wall/up.prefab @@ -0,0 +1,4844 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "up", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 14 + }, + { + "__id__": 17 + }, + { + "__id__": 40 + }, + { + "__id__": 110 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 130 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a5CFlHmFxGh5KkgQxpu3bB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + }, + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 138, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -72, + -0.642, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 69, + 49, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "93sYUl5SxBRoTowrOf+n3a", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6db2aafd-c221-4be9-a20b-5bb361fe22ef" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "freezeSpine": { + "__uuid__": "f8f19cf0-280d-4872-a743-a54314eec6a8" + }, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": false, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 120, + "height": 50 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 72, + "y": 37 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "3bosf+LTVIrKClWSc0imT9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "down", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 122, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -61.054, + 15.241, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "30QeELiRtLR46xl2DgvOph", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 18 + }, + { + "__id__": 24 + }, + { + "__id__": 29 + }, + { + "__id__": 34 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 74, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "freeze0", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 19 + } + ], + "_active": false, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 238, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -31.693, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 62, + "b": 62, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 56.29, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72FngrFShNh4BmvQ4qqqh8", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": false, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "90el2A3j9E2ojp1lZKXbGc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze1", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 25 + } + ], + "_active": false, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 138, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -12.095, + -39.207, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 24 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 26 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60.17, + 14.191, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cftS2FazRHOqi3JOhdmcYF", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0e550299-e5d6-472d-bffe-5b207a3419a9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "89hnX4JzJPXYQ6E3D5fhs4", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze2", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 30 + } + ], + "_active": false, + "_components": [ + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 257, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -12.413, + -39.681, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 31 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 121.963, + 14.57, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cdZ5RhyjNPqrNGogo/IDyI", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f9f9ba4e-cf9b-4642-8e74-90b6dac2399e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6atj/+D4dA6Lr/8o6JoF1b", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze3", + "_objFlags": 0, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 35 + } + ], + "_active": false, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 378, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -12.523, + -39.508, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22.25, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 177.35, + 14.804, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "64Zav5UhhO+Y8xaar9tqlM", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 34 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "df8cf534-aab6-4e8d-b5b7-0008fcdceba1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "3d019ed8-3019-436d-add0-ceeb02a5baaf" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4e/VSNKH9OU6haizI3mhuu", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "53VVJBDwZC3qOkivpWb334", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 41 + }, + { + "__id__": 49 + }, + { + "__id__": 69 + }, + { + "__id__": 89 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 109 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 73, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "open0", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 42 + }, + { + "__id__": 45 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 41 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 248, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.346, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "89XNPTmj9EPLpnPjP9tDj9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 41 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 255, + "b": 248, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 25 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 112.862, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48ZeOrbZZA848Hgs6NjW3P", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45o6KPepVIQJr55XvhqgBW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open1", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 50 + }, + { + "__id__": 56 + }, + { + "__id__": 62 + }, + { + "__id__": 65 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 68 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [ + { + "__id__": 51 + } + ], + "_active": true, + "_components": [ + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.804, + -26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 53 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.963, + 0.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0c1qsPaylDrpT2t17TQb6H", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d2N7h1IthCPJsmDH7G793J", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [ + { + "__id__": 57 + } + ], + "_active": true, + "_components": [ + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 61 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.356, + -26, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 56 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.221, + 0.386, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + -1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a8LMNTsVhHdYwOcx1jr1Op", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 56 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2fEutQbdJFSom0hOdyH5sp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 63 + } + ], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.731, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0796YcjUtK44SylIFuKSfS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 49 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 109.525, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 65 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4cHqgtvGBBpLSd10B/ydHm", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "13gPhoCJ5NJ7p+16JYUk6Z", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open2", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 70 + }, + { + "__id__": 76 + }, + { + "__id__": 82 + }, + { + "__id__": 85 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 88 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 2 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [ + { + "__id__": 71 + } + ], + "_active": true, + "_components": [ + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 75 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 116, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.804, + -26, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 70 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 116.02, + 0.386, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50ZpK5UftFN7Dn7UqBl86Q", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 70 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "21WFocbG5HPI8lfQrwgyIz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [ + { + "__id__": 77 + } + ], + "_active": true, + "_components": [ + { + "__id__": 80 + } + ], + "_prefab": { + "__id__": 81 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 115, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.959, + -26, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 76 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 78 + } + ], + "_prefab": { + "__id__": 79 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.015, + 0.386, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + -1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45pFz1j/5LR4CFe8zwAZsd", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48T4F8NRxMq5JRBqpVxxkp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.499, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "da6dzbF+dD55rj2zIZJC33", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 69 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 229.661, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 85 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "40LWkEnklHga/yKbl7syzW", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dfG/KsjipMErmjpzBeo7XU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "open3", + "_objFlags": 0, + "_parent": { + "__id__": 40 + }, + "_children": [ + { + "__id__": 90 + }, + { + "__id__": 96 + }, + { + "__id__": 102 + }, + { + "__id__": 105 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 108 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 3 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 91 + } + ], + "_active": true, + "_components": [ + { + "__id__": 94 + } + ], + "_prefab": { + "__id__": 95 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.604, + -28.534, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 90 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 93 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.775, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "baXTbZETZNQaJzLop8NoMg", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 90 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98vrc439VOWZpiP1N0LTiu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [ + { + "__id__": 97 + } + ], + "_active": true, + "_components": [ + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 101 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 351.76, + -28.534, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 96 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 98 + } + ], + "_prefab": { + "__id__": 99 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.849, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + -0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 97 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "69J7JKO+JEqLHnNlYrSZd+", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 96 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "15UW1AoJhEiZ/Tz61kaOok", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 103 + } + ], + "_prefab": { + "__id__": 104 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.692, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e0g2Oi7vVIz4B1VykwXa7k", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 89 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 350.814, + -25.614, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.33333 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 105 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2a9jbUEutMsZp1yjeNOHsE", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dbffpoBs9DOavphqYHEdZH", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e1XmFMciFNz4bX/2vLPODX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "revolving", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 111 + }, + { + "__id__": 117 + }, + { + "__id__": 123 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 129 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "rotate1", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 112 + } + ], + "_active": false, + "_components": [ + { + "__id__": 115 + } + ], + "_prefab": { + "__id__": 116 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 40.374, + 0, + 0, + 0, + -1, + 6.123233995736766e-17, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -180 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 111 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 113 + } + ], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 112 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2bmOFTAXZIFIuSiON8PATQ", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 111 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "89k/dU6wBHKoJ7J0dyicGT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate2", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 118 + } + ], + "_active": false, + "_components": [ + { + "__id__": 121 + } + ], + "_prefab": { + "__id__": 122 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 60, + 40.374, + 0, + 0, + 0, + -1, + 6.123233995736766e-17, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -180 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 117 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 119 + } + ], + "_prefab": { + "__id__": 120 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 118 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5aO6OlAspOTZIlQ6bNZMyy", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 117 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bc8uTWLghOFYc3kiCe48cd", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate3", + "_objFlags": 0, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 124 + } + ], + "_active": false, + "_components": [ + { + "__id__": 127 + } + ], + "_prefab": { + "__id__": 128 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 120, + 40.374, + 0, + 0, + 0, + -1, + 6.123233995736766e-17, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -180 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 123 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 125 + } + ], + "_prefab": { + "__id__": 126 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 124 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "c15c2KtUxM0J/jE0A6fNlq", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8Za6jHHxMuafaHTJpkVyj", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/up.prefab.meta b/assets/resources/prefab/wall/up.prefab.meta new file mode 100644 index 0000000..306e4c8 --- /dev/null +++ b/assets/resources/prefab/wall/up.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "f0da65e3-27d4-43c7-9945-ace5c5d815e5", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/upleft.prefab b/assets/resources/prefab/wall/upleft.prefab new file mode 100644 index 0000000..a73c36b --- /dev/null +++ b/assets/resources/prefab/wall/upleft.prefab @@ -0,0 +1,476 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "upleft", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.034, + 32.785, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "80fadb18-45ad-44f2-8fb0-ab08d70c375d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77vP3VtglN0bNXF/JbZT9E", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 61, + 52, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "571mEFkJlKKZjlaxTF2a43", + "sync": false + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": null, + "freezeSpine": null, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 120, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 65, + "y": 55 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "3bosf+LTVIrKClWSc0imT9", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/upleft.prefab.meta b/assets/resources/prefab/wall/upleft.prefab.meta new file mode 100644 index 0000000..e11ee5f --- /dev/null +++ b/assets/resources/prefab/wall/upleft.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "1024689e-c2b8-4ef4-91de-02732703334f", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/upright.prefab b/assets/resources/prefab/wall/upright.prefab new file mode 100644 index 0000000..e963e5d --- /dev/null +++ b/assets/resources/prefab/wall/upright.prefab @@ -0,0 +1,476 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "upright", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.399, + 35.126, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a77a1165-4c89-4e9c-af8c-f3b0e16855bd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "41gnQzAlBNy7AnSvTD4tsp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "wall", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + }, + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -60, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 56.492, + 48.027, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "1eBteEu/JFTaxjHjLOxxGM", + "sync": false + }, + { + "__type__": "87a44m5f/pPAKIrsyArSr/V", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "number": null, + "type": 4, + "special": 0, + "color": 0, + "wall_SpriteFrames": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "down_SpriteFrames": null, + "freezeSpine": null, + "_id": "" + }, + { + "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "auto_update_point": true, + "_id": "" + }, + { + "__type__": "d2addiRqXVKQ4YEp6sK5d6R", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_draw_collide": false, + "can_move": false, + "_collide_shape": 1, + "collide_group_id": 0, + "collide_scle": 1, + "_radius": 50, + "_size": { + "__type__": "cc.Size", + "width": 120, + "height": 10 + }, + "_polygon_points": [ + { + "__type__": "cc.Vec2", + "x": -45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 45, + "y": -45 + }, + { + "__type__": "cc.Vec2", + "x": 60, + "y": 40 + }, + { + "__type__": "cc.Vec2", + "x": 0, + "y": 70 + }, + { + "__type__": "cc.Vec2", + "x": -60, + "y": 40 + } + ], + "_offset": { + "__type__": "cc.Vec2", + "x": 50, + "y": 55 + }, + "data_string": "100", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 5 + }, + "asset": { + "__uuid__": "1c619601-a6ae-4c45-be2c-20b0d95e950f" + }, + "fileId": "29Y14d0V5AM4c1cXc6WpLB", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/resources/prefab/wall/upright.prefab.meta b/assets/resources/prefab/wall/upright.prefab.meta new file mode 100644 index 0000000..88d23bd --- /dev/null +++ b/assets/resources/prefab/wall/upright.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "fc41ae6e-8743-4057-86fa-bff2f8ff171b", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop.meta b/assets/shop.meta new file mode 100644 index 0000000..5957283 --- /dev/null +++ b/assets/shop.meta @@ -0,0 +1,21 @@ +{ + "ver": "1.1.3", + "uuid": "28d9b746-520c-4ddc-95f8-401692d28ffc", + "importer": "folder", + "isBundle": true, + "bundleName": "", + "priority": 8, + "compressionType": { + "wechatgame": "subpackage" + }, + "optimizeHotUpdate": { + "wechatgame": false + }, + "inlineSpriteFrames": { + "wechatgame": false + }, + "isRemoteBundle": { + "wechatgame": false + }, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/img.meta b/assets/shop/img.meta new file mode 100644 index 0000000..131f5f9 --- /dev/null +++ b/assets/shop/img.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "e4b11ec6-5712-4dba-ba33-eb23129e396a", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/img/Revive.plist b/assets/shop/img/Revive.plist new file mode 100644 index 0000000..ecd2ac1 --- /dev/null +++ b/assets/shop/img/Revive.plist @@ -0,0 +1,116 @@ + + + + + frames + + an.png + + aliases + + spriteOffset + {0,0} + spriteSize + {290,100} + spriteSourceSize + {290,100} + textureRect + {{0,0},{290,100}} + textureRotated + + + fenx.png + + aliases + + spriteOffset + {0,0} + spriteSize + {584,100} + spriteSourceSize + {584,100} + textureRect + {{290,0},{584,100}} + textureRotated + + + fhb.png + + aliases + + spriteOffset + {0,0} + spriteSize + {956,332} + spriteSourceSize + {956,332} + textureRect + {{0,100},{956,332}} + textureRotated + + + jixuc.png + + aliases + + spriteOffset + {0,0} + spriteSize + {161,37} + spriteSourceSize + {161,37} + textureRect + {{0,432},{161,37}} + textureRotated + + + mmm.png + + aliases + + spriteOffset + {0,0} + spriteSize + {41,38} + spriteSourceSize + {41,38} + textureRect + {{161,432},{41,38}} + textureRotated + + + tishik.png + + aliases + + spriteOffset + {0,0} + spriteSize + {342,85} + spriteSourceSize + {342,85} + textureRect + {{202,432},{342,85}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + Revive.png + size + {956,517} + smartupdate + $TexturePacker:SmartUpdate:b9e2c1358b9daff3ac16be709c7b2d30:2130556b444cc2f963b7d072eb04e04a:4bc5e2af1b5c2e21a2f402a6d1605d1c$ + textureFileName + Revive.png + + + diff --git a/assets/shop/img/Revive.plist.meta b/assets/shop/img/Revive.plist.meta new file mode 100644 index 0000000..1fd6e34 --- /dev/null +++ b/assets/shop/img/Revive.plist.meta @@ -0,0 +1,151 @@ +{ + "ver": "1.2.6", + "uuid": "2beee6ec-25c2-4485-9924-da395a4cd05a", + "importer": "asset", + "rawTextureUuid": "d9e802f0-13da-4d1b-9b9b-729c3e63d7f8", + "size": { + "width": 956, + "height": 517 + }, + "type": "Texture Packer", + "subMetas": { + "an.png": { + "ver": "1.0.6", + "uuid": "1193af14-f157-46a6-9504-d24b03f50073", + "importer": "sprite-frame", + "rawTextureUuid": "d9e802f0-13da-4d1b-9b9b-729c3e63d7f8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 290, + "height": 100, + "rawWidth": 290, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "fenx.png": { + "ver": "1.0.6", + "uuid": "ea910867-db13-4d95-a0c1-4eb24501001c", + "importer": "sprite-frame", + "rawTextureUuid": "d9e802f0-13da-4d1b-9b9b-729c3e63d7f8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 290, + "trimY": 0, + "width": 584, + "height": 100, + "rawWidth": 584, + "rawHeight": 100, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "fhb.png": { + "ver": "1.0.6", + "uuid": "4c988477-a457-479e-a318-5994fdb5b2c0", + "importer": "sprite-frame", + "rawTextureUuid": "d9e802f0-13da-4d1b-9b9b-729c3e63d7f8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 100, + "width": 956, + "height": 332, + "rawWidth": 956, + "rawHeight": 332, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jixuc.png": { + "ver": "1.0.6", + "uuid": "9dc97e7c-1f7b-4fde-b853-4c47f06ec97b", + "importer": "sprite-frame", + "rawTextureUuid": "d9e802f0-13da-4d1b-9b9b-729c3e63d7f8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 432, + "width": 161, + "height": 37, + "rawWidth": 161, + "rawHeight": 37, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "mmm.png": { + "ver": "1.0.6", + "uuid": "9659ed22-c368-43b3-92fc-8ece78340ec9", + "importer": "sprite-frame", + "rawTextureUuid": "d9e802f0-13da-4d1b-9b9b-729c3e63d7f8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 161, + "trimY": 432, + "width": 41, + "height": 38, + "rawWidth": 41, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tishik.png": { + "ver": "1.0.6", + "uuid": "42a31065-5a4c-46e3-b410-5d129c84b9fa", + "importer": "sprite-frame", + "rawTextureUuid": "d9e802f0-13da-4d1b-9b9b-729c3e63d7f8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 202, + "trimY": 432, + "width": 342, + "height": 85, + "rawWidth": 342, + "rawHeight": 85, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/Revive.png b/assets/shop/img/Revive.png new file mode 100644 index 0000000..190e24b Binary files /dev/null and b/assets/shop/img/Revive.png differ diff --git a/assets/shop/img/Revive.png.meta b/assets/shop/img/Revive.png.meta new file mode 100644 index 0000000..5822d47 --- /dev/null +++ b/assets/shop/img/Revive.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "d9e802f0-13da-4d1b-9b9b-729c3e63d7f8", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 956, + "height": 517, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/img/btn_Buy.png b/assets/shop/img/btn_Buy.png new file mode 100644 index 0000000..0732ec5 Binary files /dev/null and b/assets/shop/img/btn_Buy.png differ diff --git a/assets/shop/img/btn_Buy.png.meta b/assets/shop/img/btn_Buy.png.meta new file mode 100644 index 0000000..1201d33 --- /dev/null +++ b/assets/shop/img/btn_Buy.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "dd2853c1-a82a-4188-8150-05eb4aaa8f82", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 519, + "height": 168, + "platformSettings": {}, + "subMetas": { + "btn_Buy": { + "ver": "1.0.6", + "uuid": "d9be6eea-569b-46da-bb80-0d9c8b8f5263", + "importer": "sprite-frame", + "rawTextureUuid": "dd2853c1-a82a-4188-8150-05eb4aaa8f82", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 519, + "height": 168, + "rawWidth": 519, + "rawHeight": 168, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/chuji.png b/assets/shop/img/chuji.png new file mode 100644 index 0000000..972f901 Binary files /dev/null and b/assets/shop/img/chuji.png differ diff --git a/assets/shop/img/chuji.png.meta b/assets/shop/img/chuji.png.meta new file mode 100644 index 0000000..f214f45 --- /dev/null +++ b/assets/shop/img/chuji.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "6fb3cc31-ec10-41b8-b38c-34ec03eacf8b", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 994, + "height": 426, + "platformSettings": {}, + "subMetas": { + "chuji": { + "ver": "1.0.6", + "uuid": "4f636b08-160e-44dc-96c7-4d19c8fab939", + "importer": "sprite-frame", + "rawTextureUuid": "6fb3cc31-ec10-41b8-b38c-34ec03eacf8b", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -2, + "trimX": 0, + "trimY": 4, + "width": 994, + "height": 422, + "rawWidth": 994, + "rawHeight": 426, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/ditu.jpg b/assets/shop/img/ditu.jpg new file mode 100644 index 0000000..0803569 Binary files /dev/null and b/assets/shop/img/ditu.jpg differ diff --git a/assets/shop/img/ditu.jpg.meta b/assets/shop/img/ditu.jpg.meta new file mode 100644 index 0000000..7472a1b --- /dev/null +++ b/assets/shop/img/ditu.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "acc20498-4f7f-4ada-907b-3f1f7aa75857", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "ditu": { + "ver": "1.0.6", + "uuid": "22372cf5-9d4b-4926-ace8-921c11cf8dd5", + "importer": "sprite-frame", + "rawTextureUuid": "acc20498-4f7f-4ada-907b-3f1f7aa75857", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/gaoji.png b/assets/shop/img/gaoji.png new file mode 100644 index 0000000..859d6eb Binary files /dev/null and b/assets/shop/img/gaoji.png differ diff --git a/assets/shop/img/gaoji.png.meta b/assets/shop/img/gaoji.png.meta new file mode 100644 index 0000000..f0d91ef --- /dev/null +++ b/assets/shop/img/gaoji.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "068d45e2-1f2a-4a81-af5e-90700ce0f83e", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 994, + "height": 426, + "platformSettings": {}, + "subMetas": { + "gaoji": { + "ver": "1.0.6", + "uuid": "7a8bfae9-98ac-416f-8e05-10dc687389d7", + "importer": "sprite-frame", + "rawTextureUuid": "068d45e2-1f2a-4a81-af5e-90700ce0f83e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 994, + "height": 426, + "rawWidth": 994, + "rawHeight": 426, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/kuangt1.png b/assets/shop/img/kuangt1.png new file mode 100644 index 0000000..30f0504 Binary files /dev/null and b/assets/shop/img/kuangt1.png differ diff --git a/assets/shop/img/kuangt1.png.meta b/assets/shop/img/kuangt1.png.meta new file mode 100644 index 0000000..a5612ca --- /dev/null +++ b/assets/shop/img/kuangt1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "99c9d0f0-802e-4b3e-94af-7ec76cbef2af", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 994, + "height": 1462, + "platformSettings": {}, + "subMetas": { + "kuangt1": { + "ver": "1.0.6", + "uuid": "71f0494c-f638-4d7a-a826-a9407bf2b27c", + "importer": "sprite-frame", + "rawTextureUuid": "99c9d0f0-802e-4b3e-94af-7ec76cbef2af", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 994, + "height": 1462, + "rawWidth": 994, + "rawHeight": 1462, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/load.png b/assets/shop/img/load.png new file mode 100644 index 0000000..9a42648 Binary files /dev/null and b/assets/shop/img/load.png differ diff --git a/assets/shop/img/load.png.meta b/assets/shop/img/load.png.meta new file mode 100644 index 0000000..6e4514d --- /dev/null +++ b/assets/shop/img/load.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "05d21d52-d94e-49d8-ac95-2d225e80df66", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1024, + "height": 1024, + "platformSettings": {}, + "subMetas": { + "load": { + "ver": "1.0.6", + "uuid": "794efc8c-624c-469f-84c0-24ce84022c54", + "importer": "sprite-frame", + "rawTextureUuid": "05d21d52-d94e-49d8-ac95-2d225e80df66", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -3.5, + "offsetY": 120, + "trimX": 164, + "trimY": 64, + "width": 689, + "height": 656, + "rawWidth": 1024, + "rawHeight": 1024, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/lqbg.png b/assets/shop/img/lqbg.png new file mode 100644 index 0000000..198db46 Binary files /dev/null and b/assets/shop/img/lqbg.png differ diff --git a/assets/shop/img/lqbg.png.meta b/assets/shop/img/lqbg.png.meta new file mode 100644 index 0000000..6ea4c3e --- /dev/null +++ b/assets/shop/img/lqbg.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "015de0a3-500b-4ffb-98af-9b51007f4f83", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 914, + "height": 1348, + "platformSettings": {}, + "subMetas": { + "lqbg": { + "ver": "1.0.6", + "uuid": "954feb1c-d5fc-4c47-8577-6285e17154d4", + "importer": "sprite-frame", + "rawTextureUuid": "015de0a3-500b-4ffb-98af-9b51007f4f83", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0.5, + "trimX": 0, + "trimY": 0, + "width": 914, + "height": 1347, + "rawWidth": 914, + "rawHeight": 1348, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/shop_1.jpg b/assets/shop/img/shop_1.jpg new file mode 100644 index 0000000..37ae761 Binary files /dev/null and b/assets/shop/img/shop_1.jpg differ diff --git a/assets/shop/img/shop_1.jpg.meta b/assets/shop/img/shop_1.jpg.meta new file mode 100644 index 0000000..d0b1c79 --- /dev/null +++ b/assets/shop/img/shop_1.jpg.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "9c710aa3-45b5-43fb-b76f-8d6af41a21d5", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 2340, + "platformSettings": {}, + "subMetas": { + "shop_1": { + "ver": "1.0.6", + "uuid": "403aa689-5ef4-4978-978a-74b806e0760f", + "importer": "sprite-frame", + "rawTextureUuid": "9c710aa3-45b5-43fb-b76f-8d6af41a21d5", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/shop_1.png b/assets/shop/img/shop_1.png new file mode 100644 index 0000000..d5f055f Binary files /dev/null and b/assets/shop/img/shop_1.png differ diff --git a/assets/shop/img/shop_1.png.meta b/assets/shop/img/shop_1.png.meta new file mode 100644 index 0000000..39f637f --- /dev/null +++ b/assets/shop/img/shop_1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "0fb4aec7-ce6d-40d7-949d-563c8710f75c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1080, + "height": 522, + "platformSettings": {}, + "subMetas": { + "shop_1": { + "ver": "1.0.6", + "uuid": "11bc6aa1-f82e-42c0-8581-7cc70ba6cde0", + "importer": "sprite-frame", + "rawTextureUuid": "0fb4aec7-ce6d-40d7-949d-563c8710f75c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 522, + "rawWidth": 1080, + "rawHeight": 522, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/shuzi.plist b/assets/shop/img/shuzi.plist new file mode 100644 index 0000000..d1069a8 --- /dev/null +++ b/assets/shop/img/shuzi.plist @@ -0,0 +1,521 @@ + + + + + frames + + coins_sz0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,984},{47,63}} + textureRotated + + + coins_sz1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1047},{47,63}} + textureRotated + + + coins_sz10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1614},{47,63}} + textureRotated + + + coins_sz2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1110},{47,63}} + textureRotated + + + coins_sz3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1173},{47,63}} + textureRotated + + + coins_sz4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1236},{47,63}} + textureRotated + + + coins_sz5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1299},{47,63}} + textureRotated + + + coins_sz6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1362},{47,63}} + textureRotated + + + coins_sz7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1425},{47,63}} + textureRotated + + + coins_sz8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1488},{47,63}} + textureRotated + + + coins_sz9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,63} + spriteSourceSize + {47,63} + textureRect + {{0,1551},{47,63}} + textureRotated + + + cost_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,64},{43,46}} + textureRotated + + + cost_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,110},{43,46}} + textureRotated + + + cost_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,42} + spriteSourceSize + {47,42} + textureRect + {{0,22},{47,42}} + textureRotated + + + cost_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,156},{43,46}} + textureRotated + + + cost_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,202},{43,46}} + textureRotated + + + cost_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,248},{43,46}} + textureRotated + + + cost_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,294},{43,46}} + textureRotated + + + cost_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,340},{43,46}} + textureRotated + + + cost_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,386},{43,46}} + textureRotated + + + cost_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,432},{43,46}} + textureRotated + + + cost_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {43,46} + spriteSourceSize + {43,46} + textureRect + {{0,478},{43,46}} + textureRotated + + + month_0.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,524},{40,46}} + textureRotated + + + month_1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,570},{40,46}} + textureRotated + + + month_2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,616},{40,46}} + textureRotated + + + month_3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,662},{40,46}} + textureRotated + + + month_4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,708},{40,46}} + textureRotated + + + month_5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,754},{40,46}} + textureRotated + + + month_6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,800},{40,46}} + textureRotated + + + month_7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,846},{40,46}} + textureRotated + + + month_8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,892},{40,46}} + textureRotated + + + month_9.png + + aliases + + spriteOffset + {0,0} + spriteSize + {40,46} + spriteSourceSize + {40,46} + textureRect + {{0,938},{40,46}} + textureRotated + + + x.png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,22} + spriteSourceSize + {22,22} + textureRect + {{0,0},{22,22}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + shuzi.png + size + {47,1677} + smartupdate + $TexturePacker:SmartUpdate:c8aa294fd6aad81bc43849d7d33776d1:a899c2c8b38a048a17e24b5bb5be28f7:8dfcd9ca55e684c31f5e6d4475a4bd24$ + textureFileName + shuzi.png + + + diff --git a/assets/shop/img/shuzi.plist.meta b/assets/shop/img/shuzi.plist.meta new file mode 100644 index 0000000..3657a79 --- /dev/null +++ b/assets/shop/img/shuzi.plist.meta @@ -0,0 +1,772 @@ +{ + "ver": "1.2.6", + "uuid": "569f5a4d-beff-465f-be16-fc3bcf467850", + "importer": "asset", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "size": { + "width": 47, + "height": 1677 + }, + "type": "Texture Packer", + "subMetas": { + "coins_sz0.png": { + "ver": "1.0.6", + "uuid": "f7cd0a40-56e7-4d44-ae0f-c0b8336cd9a0", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 984, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz1.png": { + "ver": "1.0.6", + "uuid": "5a89f992-acc9-4739-8233-c57b5db0a123", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1047, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz10.png": { + "ver": "1.0.6", + "uuid": "49628cf9-eb96-41b2-a2c9-13168b9b03c1", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1614, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz2.png": { + "ver": "1.0.6", + "uuid": "3109fbd4-cfef-48a7-ac0f-56fb5fe101c7", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1110, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz3.png": { + "ver": "1.0.6", + "uuid": "bfe1bfb2-6b06-4ed2-a183-a20bd676ff2c", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1173, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz4.png": { + "ver": "1.0.6", + "uuid": "4869026f-04ec-47b5-85f7-02ee2a1865d9", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1236, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz5.png": { + "ver": "1.0.6", + "uuid": "993d5de7-a09c-4c74-9d31-7abbe35d2ae1", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1299, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz6.png": { + "ver": "1.0.6", + "uuid": "cc957ffd-6fe4-4f67-80cb-ebf8a1d5d11d", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1362, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz7.png": { + "ver": "1.0.6", + "uuid": "2f5b7b7c-5329-4e26-bc0d-869df502b262", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1425, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz8.png": { + "ver": "1.0.6", + "uuid": "ae8eff19-6ef0-46cc-88ba-5cc74fbd7e19", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1488, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_sz9.png": { + "ver": "1.0.6", + "uuid": "9f12c901-afef-41f1-8111-c7f7c4ec860f", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 1551, + "width": 47, + "height": 63, + "rawWidth": 47, + "rawHeight": 63, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_0.png": { + "ver": "1.0.6", + "uuid": "eda6def7-3f41-4e71-b328-27b858a8f167", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 64, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_1.png": { + "ver": "1.0.6", + "uuid": "3ae58373-6b26-4cad-9373-d00a87902b60", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 110, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_10.png": { + "ver": "1.0.6", + "uuid": "646c3b71-e143-4d0f-94e6-534c77123f6d", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 22, + "width": 47, + "height": 42, + "rawWidth": 47, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_2.png": { + "ver": "1.0.6", + "uuid": "1ced933d-f1a4-404f-893e-46a0e0a8b47f", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 156, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_3.png": { + "ver": "1.0.6", + "uuid": "0474e049-57c0-451a-ba18-17d624cb4aef", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 202, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_4.png": { + "ver": "1.0.6", + "uuid": "2934e269-db62-4cd7-9c0c-c4c9358cfaa6", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 248, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_5.png": { + "ver": "1.0.6", + "uuid": "c27b90ef-5231-40ff-9c47-380561e1cc77", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 294, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_6.png": { + "ver": "1.0.6", + "uuid": "30b3ef49-bd7e-47a6-84b2-da05678348a6", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 340, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_7.png": { + "ver": "1.0.6", + "uuid": "478f346f-7aa8-4f88-bb46-877d0e27e9f6", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 386, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_8.png": { + "ver": "1.0.6", + "uuid": "3ad60e42-8744-4068-b7dd-24ef792c21fe", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 432, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cost_9.png": { + "ver": "1.0.6", + "uuid": "5b7e89b0-02ab-4c9b-814d-15978168c9e7", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 478, + "width": 43, + "height": 46, + "rawWidth": 43, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_0.png": { + "ver": "1.0.6", + "uuid": "0fa187d5-7aff-4d4b-b9ac-13825fc04ebf", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 524, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_1.png": { + "ver": "1.0.6", + "uuid": "05929188-16ec-4075-8f3c-4c7817000a85", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 570, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_2.png": { + "ver": "1.0.6", + "uuid": "c48ff0dd-ea09-4c08-9755-cb10e18b12d2", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 616, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_3.png": { + "ver": "1.0.6", + "uuid": "9b662363-2e1e-4ff9-a128-7ab16695a564", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 662, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_4.png": { + "ver": "1.0.6", + "uuid": "49e6a010-61fb-4f3d-bed6-0a6a724893c8", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 708, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_5.png": { + "ver": "1.0.6", + "uuid": "1dfb7f97-065f-4e71-b737-c4b84831b927", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 754, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_6.png": { + "ver": "1.0.6", + "uuid": "b76e2346-1c35-45d2-b70d-627b422cc4c3", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 800, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_7.png": { + "ver": "1.0.6", + "uuid": "9f0a1e49-b91d-4e84-904f-915db09e59cd", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 846, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_8.png": { + "ver": "1.0.6", + "uuid": "b5ae5b82-cf8f-4f81-8a8b-9394eec7ea38", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 892, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "month_9.png": { + "ver": "1.0.6", + "uuid": "2d5c846f-8e45-4845-88a9-8a5765d031ec", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 938, + "width": 40, + "height": 46, + "rawWidth": 40, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "x.png": { + "ver": "1.0.6", + "uuid": "39d7fe7c-990b-45b0-8693-88548695278b", + "importer": "sprite-frame", + "rawTextureUuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 22, + "height": 22, + "rawWidth": 22, + "rawHeight": 22, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/shuzi.png b/assets/shop/img/shuzi.png new file mode 100644 index 0000000..7da0d09 Binary files /dev/null and b/assets/shop/img/shuzi.png differ diff --git a/assets/shop/img/shuzi.png.meta b/assets/shop/img/shuzi.png.meta new file mode 100644 index 0000000..c594a37 --- /dev/null +++ b/assets/shop/img/shuzi.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "1b0e3a45-c168-4de9-b34e-9f9fa9d30fef", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 47, + "height": 1677, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/img/texture_atlas-1.plist b/assets/shop/img/texture_atlas-1.plist new file mode 100644 index 0000000..dda8f6f --- /dev/null +++ b/assets/shop/img/texture_atlas-1.plist @@ -0,0 +1,506 @@ + + + + + frames + + 1h.png + + aliases + + spriteOffset + {0,0} + spriteSize + {135,38} + spriteSourceSize + {135,38} + textureRect + {{22,0},{135,38}} + textureRotated + + + 2h.png + + aliases + + spriteOffset + {0,0} + spriteSize + {135,38} + spriteSourceSize + {135,38} + textureRect + {{157,0},{135,38}} + textureRotated + + + 30.png + + aliases + + spriteOffset + {0,0} + spriteSize + {130,38} + spriteSourceSize + {130,38} + textureRect + {{425,0},{130,38}} + textureRotated + + + 30m.png + + aliases + + spriteOffset + {0,0} + spriteSize + {135,38} + spriteSourceSize + {135,38} + textureRect + {{555,0},{135,38}} + textureRotated + + + 30min.png + + aliases + + spriteOffset + {0,0} + spriteSize + {162,38} + spriteSourceSize + {162,38} + textureRect + {{690,0},{162,38}} + textureRotated + + + 4h.png + + aliases + + spriteOffset + {0,0} + spriteSize + {133,38} + spriteSourceSize + {133,38} + textureRect + {{292,0},{133,38}} + textureRotated + + + banre.png + + aliases + + spriteOffset + {0,0} + spriteSize + {1000,406} + spriteSourceSize + {1000,406} + textureRect + {{492,490},{1000,406}} + textureRotated + + + btn1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {96,102} + spriteSourceSize + {96,102} + textureRect + {{1080,96},{96,102}} + textureRotated + + + buy.png + + aliases + + spriteOffset + {0,0} + spriteSize + {464,132} + spriteSourceSize + {464,132} + textureRect + {{1382,96},{464,132}} + textureRotated + + + cardm.png + + aliases + + spriteOffset + {0,0} + spriteSize + {123,90} + spriteSourceSize + {123,90} + textureRect + {{1563,0},{123,90}} + textureRotated + + + chakan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {322,96} + spriteSourceSize + {322,96} + textureRect + {{1686,0},{322,96}} + textureRotated + + + coins1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,246} + spriteSourceSize + {246,246} + textureRect + {{342,244},{246,246}} + textureRotated + + + coins2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,246} + spriteSourceSize + {246,246} + textureRect + {{588,244},{246,246}} + textureRotated + + + coins3.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,246} + spriteSourceSize + {246,246} + textureRect + {{834,244},{246,246}} + textureRotated + + + coins4.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,246} + spriteSourceSize + {246,246} + textureRect + {{1080,244},{246,246}} + textureRotated + + + coins5.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,246} + spriteSourceSize + {246,246} + textureRect + {{1326,244},{246,246}} + textureRotated + + + coins6.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,246} + spriteSourceSize + {246,246} + textureRect + {{1572,244},{246,246}} + textureRotated + + + coins7.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,246} + spriteSourceSize + {246,246} + textureRect + {{0,490},{246,246}} + textureRotated + + + coins8.png + + aliases + + spriteOffset + {0,0} + spriteSize + {246,246} + spriteSourceSize + {246,246} + textureRect + {{246,490},{246,246}} + textureRotated + + + coins_di.png + + aliases + + spriteOffset + {0,0} + spriteSize + {304,448} + spriteSourceSize + {304,448} + textureRect + {{1492,490},{304,448}} + textureRotated + + + r_bq.png + + aliases + + spriteOffset + {0,0} + spriteSize + {148,148} + spriteSourceSize + {148,148} + textureRect + {{1846,96},{148,148}} + textureRotated + + + s_bq.png + + aliases + + spriteOffset + {0,0} + spriteSize + {206,122} + spriteSourceSize + {206,122} + textureRect + {{1176,96},{206,122}} + textureRotated + + + shengxiaozhong.png + + aliases + + spriteOffset + {0,0} + spriteSize + {286,42} + spriteSourceSize + {286,42} + textureRect + {{933,0},{286,42}} + textureRotated + + + tian.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,40} + spriteSourceSize + {44,40} + textureRect + {{852,0},{44,40}} + textureRotated + + + tx.png + + aliases + + spriteOffset + {0,0} + spriteSize + {188,207} + spriteSourceSize + {188,207} + textureRect + {{154,244},{188,207}} + textureRotated + + + txt.png + + aliases + + spriteOffset + {0,0} + spriteSize + {1080,97} + spriteSourceSize + {1080,97} + textureRect + {{0,96},{1080,97}} + textureRotated + + + txt1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {148,65} + spriteSourceSize + {148,65} + textureRect + {{1264,0},{148,65}} + textureRotated + + + txt2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {151,65} + spriteSourceSize + {151,65} + textureRect + {{1412,0},{151,65}} + textureRotated + + + x.png + + aliases + + spriteOffset + {0,0} + spriteSize + {22,22} + spriteSourceSize + {22,22} + textureRect + {{0,0},{22,22}} + textureRotated + + + yicon.png + + aliases + + spriteOffset + {0,0} + spriteSize + {154,174} + spriteSourceSize + {154,174} + textureRect + {{0,244},{154,174}} + textureRotated + + + yuan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {37,40} + spriteSourceSize + {37,40} + textureRect + {{896,0},{37,40}} + textureRotated + + + zhe.png + + aliases + + spriteOffset + {0,0} + spriteSize + {45,46} + spriteSourceSize + {45,46} + textureRect + {{1219,0},{45,46}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + texture_atlas-1.png + size + {2008,938} + smartupdate + $TexturePacker:SmartUpdate:451d50daa7daadaa9dd8412f5040c29d:21230410b68532ee0c6da2e54da431cb:7574d8513b69ec3112d43152279b5c18$ + textureFileName + texture_atlas-1.png + + + diff --git a/assets/shop/img/texture_atlas-1.plist.meta b/assets/shop/img/texture_atlas-1.plist.meta new file mode 100644 index 0000000..779c71d --- /dev/null +++ b/assets/shop/img/texture_atlas-1.plist.meta @@ -0,0 +1,749 @@ +{ + "ver": "1.2.6", + "uuid": "88f4116d-72c2-46cc-9f06-d164a85a9275", + "importer": "asset", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "size": { + "width": 2008, + "height": 938 + }, + "type": "Texture Packer", + "subMetas": { + "1h.png": { + "ver": "1.0.6", + "uuid": "af15d004-82c1-403a-99f8-a2e703a2781d", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 22, + "trimY": 0, + "width": 135, + "height": 38, + "rawWidth": 135, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "2h.png": { + "ver": "1.0.6", + "uuid": "636ed2f1-50bf-4d66-a5b1-9dd7509fc277", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 157, + "trimY": 0, + "width": 135, + "height": 38, + "rawWidth": 135, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "30.png": { + "ver": "1.0.6", + "uuid": "793ce71a-76e4-4047-97c7-8bab5465d83d", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 425, + "trimY": 0, + "width": 130, + "height": 38, + "rawWidth": 130, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "30m.png": { + "ver": "1.0.6", + "uuid": "02908464-0e59-4c42-b46f-86094d5c9c38", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 555, + "trimY": 0, + "width": 135, + "height": 38, + "rawWidth": 135, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "30min.png": { + "ver": "1.0.6", + "uuid": "bb238782-ccf7-4b3f-89e7-7ec99a5e39b2", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 690, + "trimY": 0, + "width": 162, + "height": 38, + "rawWidth": 162, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "4h.png": { + "ver": "1.0.6", + "uuid": "75fc2652-6239-434e-b00b-bd2406dcf50a", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 292, + "trimY": 0, + "width": 133, + "height": 38, + "rawWidth": 133, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "banre.png": { + "ver": "1.0.6", + "uuid": "295fa69f-086d-4229-8dcd-446292dc31b0", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 492, + "trimY": 490, + "width": 1000, + "height": 406, + "rawWidth": 1000, + "rawHeight": 406, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "btn1.png": { + "ver": "1.0.6", + "uuid": "225f5c55-2992-4244-88ee-d6186f8099ec", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1080, + "trimY": 96, + "width": 96, + "height": 102, + "rawWidth": 96, + "rawHeight": 102, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "buy.png": { + "ver": "1.0.6", + "uuid": "979ff69f-0560-48a5-a2c2-f5e20ab99171", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1382, + "trimY": 96, + "width": 464, + "height": 132, + "rawWidth": 464, + "rawHeight": 132, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cardm.png": { + "ver": "1.0.6", + "uuid": "9ae532c7-b26d-4396-9bad-2e1916b645f0", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1563, + "trimY": 0, + "width": 123, + "height": 90, + "rawWidth": 123, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "chakan.png": { + "ver": "1.0.6", + "uuid": "4ead5bf9-b54d-4ce9-b0c2-75533c58f4dc", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1686, + "trimY": 0, + "width": 322, + "height": 96, + "rawWidth": 322, + "rawHeight": 96, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins1.png": { + "ver": "1.0.6", + "uuid": "8df4862f-bc72-4038-bc80-6bec5833a561", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 342, + "trimY": 244, + "width": 246, + "height": 246, + "rawWidth": 246, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins2.png": { + "ver": "1.0.6", + "uuid": "639e99e1-c8c1-4891-b07e-5a08962d0193", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 588, + "trimY": 244, + "width": 246, + "height": 246, + "rawWidth": 246, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins3.png": { + "ver": "1.0.6", + "uuid": "36f63644-d9f3-4223-aee9-bc771717015d", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 834, + "trimY": 244, + "width": 246, + "height": 246, + "rawWidth": 246, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins4.png": { + "ver": "1.0.6", + "uuid": "742ec97e-78bc-4998-8ace-80ffe6d8f5eb", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1080, + "trimY": 244, + "width": 246, + "height": 246, + "rawWidth": 246, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins5.png": { + "ver": "1.0.6", + "uuid": "f067ea7e-f754-4022-a031-e519318d28d8", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1326, + "trimY": 244, + "width": 246, + "height": 246, + "rawWidth": 246, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins6.png": { + "ver": "1.0.6", + "uuid": "c389d164-d286-4ba4-821b-939aed4a86ba", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 244, + "width": 246, + "height": 246, + "rawWidth": 246, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins7.png": { + "ver": "1.0.6", + "uuid": "a147d2be-5573-4c90-a507-873ba78247f7", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 490, + "width": 246, + "height": 246, + "rawWidth": 246, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins8.png": { + "ver": "1.0.6", + "uuid": "eed7ca9b-a5e1-4df8-8b92-2f8039bda198", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 246, + "trimY": 490, + "width": 246, + "height": 246, + "rawWidth": 246, + "rawHeight": 246, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "coins_di.png": { + "ver": "1.0.6", + "uuid": "7788da8f-ccb8-4cb4-9a46-1dd01f6186c7", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1492, + "trimY": 490, + "width": 304, + "height": 448, + "rawWidth": 304, + "rawHeight": 448, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "r_bq.png": { + "ver": "1.0.6", + "uuid": "e314ab10-ab70-4ff7-8513-4254be9264ee", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1846, + "trimY": 96, + "width": 148, + "height": 148, + "rawWidth": 148, + "rawHeight": 148, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "s_bq.png": { + "ver": "1.0.6", + "uuid": "3d3ea606-2949-41b9-a98f-86f6f3122b0c", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1176, + "trimY": 96, + "width": 206, + "height": 122, + "rawWidth": 206, + "rawHeight": 122, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shengxiaozhong.png": { + "ver": "1.0.6", + "uuid": "af474d63-41a4-4bdd-a7f1-5666c397332a", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 933, + "trimY": 0, + "width": 286, + "height": 42, + "rawWidth": 286, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tian.png": { + "ver": "1.0.6", + "uuid": "af34206f-080e-4134-8194-452120419154", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 852, + "trimY": 0, + "width": 44, + "height": 40, + "rawWidth": 44, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tx.png": { + "ver": "1.0.6", + "uuid": "23f17079-7397-447a-bb56-20d95acfc987", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 154, + "trimY": 244, + "width": 188, + "height": 207, + "rawWidth": 188, + "rawHeight": 207, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt.png": { + "ver": "1.0.6", + "uuid": "235acd46-ecc5-4d67-8c43-eb46f4900c93", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 96, + "width": 1080, + "height": 97, + "rawWidth": 1080, + "rawHeight": 97, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt1.png": { + "ver": "1.0.6", + "uuid": "84d4bdb5-6201-47d1-8fb9-603ee940f4a7", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1264, + "trimY": 0, + "width": 148, + "height": 65, + "rawWidth": 148, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "txt2.png": { + "ver": "1.0.6", + "uuid": "313d8396-8433-4974-ae28-555f3f846f06", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1412, + "trimY": 0, + "width": 151, + "height": 65, + "rawWidth": 151, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "x.png": { + "ver": "1.0.6", + "uuid": "02c05b53-efa1-4efb-bd26-1cee7c905b72", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 22, + "height": 22, + "rawWidth": 22, + "rawHeight": 22, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yicon.png": { + "ver": "1.0.6", + "uuid": "78bb2534-0f4a-425a-ba88-ee449cbb85bb", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 244, + "width": 154, + "height": 174, + "rawWidth": 154, + "rawHeight": 174, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yuan.png": { + "ver": "1.0.6", + "uuid": "0e4a6725-4caa-4023-9954-f8f059f2c5a1", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 896, + "trimY": 0, + "width": 37, + "height": 40, + "rawWidth": 37, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "zhe.png": { + "ver": "1.0.6", + "uuid": "bd09a391-0f09-4dd6-a17e-29e44be01ed3", + "importer": "sprite-frame", + "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1219, + "trimY": 0, + "width": 45, + "height": 46, + "rawWidth": 45, + "rawHeight": 46, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/texture_atlas-1.png b/assets/shop/img/texture_atlas-1.png new file mode 100644 index 0000000..544de4c Binary files /dev/null and b/assets/shop/img/texture_atlas-1.png differ diff --git a/assets/shop/img/texture_atlas-1.png.meta b/assets/shop/img/texture_atlas-1.png.meta new file mode 100644 index 0000000..66a6d5a --- /dev/null +++ b/assets/shop/img/texture_atlas-1.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "6971355d-0542-42f6-96ec-4244dbcc5897", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2008, + "height": 938, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/img/yueka.plist b/assets/shop/img/yueka.plist new file mode 100644 index 0000000..011951e --- /dev/null +++ b/assets/shop/img/yueka.plist @@ -0,0 +1,296 @@ + + + + + frames + + 30yuan.png + + aliases + + spriteOffset + {0,0} + spriteSize + {516,164} + spriteSourceSize + {516,164} + textureRect + {{1328,0},{516,164}} + textureRotated + + + cardm.png + + aliases + + spriteOffset + {0,0} + spriteSize + {123,90} + spriteSourceSize + {123,90} + textureRect + {{1205,0},{123,90}} + textureRotated + + + faguang.png + + aliases + + spriteOffset + {0,0} + spriteSize + {506,506} + spriteSourceSize + {506,506} + textureRect + {{1496,490},{506,506}} + textureRotated + + + fangkuai.png + + aliases + + spriteOffset + {0,0} + spriteSize + {794,210} + spriteSourceSize + {794,210} + textureRect + {{635,164},{794,210}} + textureRotated + + + guanbi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,58} + spriteSourceSize + {58,58} + textureRect + {{1147,0},{58,58}} + textureRotated + + + haisheng.png + + aliases + + spriteOffset + {0,0} + spriteSize + {89,42} + spriteSourceSize + {89,42} + textureRect + {{772,0},{89,42}} + textureRotated + + + jiantou.png + + aliases + + spriteOffset + {0,0} + spriteSize + {248,326} + spriteSourceSize + {248,326} + textureRect + {{1749,164},{248,326}} + textureRotated + + + jinbi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {320,320} + spriteSourceSize + {320,320} + textureRect + {{1429,164},{320,320}} + textureRotated + + + lq.png + + aliases + + spriteOffset + {0,0} + spriteSize + {635,173} + spriteSourceSize + {635,173} + textureRect + {{0,164},{635,173}} + textureRotated + + + lqtian.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,40} + spriteSourceSize + {44,40} + textureRect + {{684,0},{44,40}} + textureRotated + + + shengxiaozhong.png + + aliases + + spriteOffset + {0,0} + spriteSize + {286,42} + spriteSourceSize + {286,42} + textureRect + {{861,0},{286,42}} + textureRotated + + + shengxiaozit.png + + aliases + + spriteOffset + {0,0} + spriteSize + {215,32} + spriteSourceSize + {215,32} + textureRect + {{34,0},{215,32}} + textureRotated + + + shopbaner.png + + aliases + + spriteOffset + {0,0} + spriteSize + {1000,406} + spriteSourceSize + {1000,406} + textureRect + {{496,490},{1000,406}} + textureRotated + + + star1.png + + aliases + + spriteOffset + {0,0} + spriteSize + {248,326} + spriteSourceSize + {248,326} + textureRect + {{0,490},{248,326}} + textureRotated + + + star2.png + + aliases + + spriteOffset + {0,0} + spriteSize + {248,326} + spriteSourceSize + {248,326} + textureRect + {{248,490},{248,326}} + textureRotated + + + tian.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,40} + spriteSourceSize + {44,40} + textureRect + {{728,0},{44,40}} + textureRotated + + + tt.png + + aliases + + spriteOffset + {0,0} + spriteSize + {34,30} + spriteSourceSize + {34,30} + textureRect + {{0,0},{34,30}} + textureRotated + + + yuekazi.png + + aliases + + spriteOffset + {0,0} + spriteSize + {435,38} + spriteSourceSize + {435,38} + textureRect + {{249,0},{435,38}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + yueka.png + size + {2002,996} + smartupdate + $TexturePacker:SmartUpdate:31468ea6569fed60cde5a27ae2edf1f2:95c923329506deb632b0e819bc5756f8:f9d521de5bc0db19166bcf92821562f3$ + textureFileName + yueka.png + + + diff --git a/assets/shop/img/yueka.plist.meta b/assets/shop/img/yueka.plist.meta new file mode 100644 index 0000000..3904376 --- /dev/null +++ b/assets/shop/img/yueka.plist.meta @@ -0,0 +1,427 @@ +{ + "ver": "1.2.6", + "uuid": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc", + "importer": "asset", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "size": { + "width": 2002, + "height": 996 + }, + "type": "Texture Packer", + "subMetas": { + "30yuan.png": { + "ver": "1.0.6", + "uuid": "8add4fef-94e5-431a-be6c-2694ddf8a827", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1328, + "trimY": 0, + "width": 516, + "height": 164, + "rawWidth": 516, + "rawHeight": 164, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "cardm.png": { + "ver": "1.0.6", + "uuid": "a4d75412-5080-4584-ace0-87a1ed8b89af", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1205, + "trimY": 0, + "width": 123, + "height": 90, + "rawWidth": 123, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "faguang.png": { + "ver": "1.0.6", + "uuid": "7e8f0c9b-9775-4dee-80c5-e42816ec45aa", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1496, + "trimY": 490, + "width": 506, + "height": 506, + "rawWidth": 506, + "rawHeight": 506, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "fangkuai.png": { + "ver": "1.0.6", + "uuid": "d79a5bee-5022-4643-a9d4-e3e8a0ed1957", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 635, + "trimY": 164, + "width": 794, + "height": 210, + "rawWidth": 794, + "rawHeight": 210, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "guanbi.png": { + "ver": "1.0.6", + "uuid": "b7ae1806-b45f-4aa8-b7cc-c97fa29a85af", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1147, + "trimY": 0, + "width": 58, + "height": 58, + "rawWidth": 58, + "rawHeight": 58, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "haisheng.png": { + "ver": "1.0.6", + "uuid": "c4e289ba-3afd-4838-bf0c-571cadce8db2", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 772, + "trimY": 0, + "width": 89, + "height": 42, + "rawWidth": 89, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jiantou.png": { + "ver": "1.0.6", + "uuid": "506a1673-0424-419b-804a-634729897214", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1749, + "trimY": 164, + "width": 248, + "height": 326, + "rawWidth": 248, + "rawHeight": 326, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "jinbi.png": { + "ver": "1.0.6", + "uuid": "f0ad30c5-b441-4e29-bd57-b74a4ca072a3", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1429, + "trimY": 164, + "width": 320, + "height": 320, + "rawWidth": 320, + "rawHeight": 320, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lq.png": { + "ver": "1.0.6", + "uuid": "8419f8d6-48b4-4ecd-8228-34d620ae0da9", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 164, + "width": 635, + "height": 173, + "rawWidth": 635, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "lqtian.png": { + "ver": "1.0.6", + "uuid": "2b6c09cd-62b2-4b90-8f3f-498e1a7b4c3f", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 684, + "trimY": 0, + "width": 44, + "height": 40, + "rawWidth": 44, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shengxiaozhong.png": { + "ver": "1.0.6", + "uuid": "3fa8a798-dfb7-403a-93a7-a57a80e07245", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 861, + "trimY": 0, + "width": 286, + "height": 42, + "rawWidth": 286, + "rawHeight": 42, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shengxiaozit.png": { + "ver": "1.0.6", + "uuid": "4f782e47-7a24-4483-86f5-3c5aca38389e", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 34, + "trimY": 0, + "width": 215, + "height": 32, + "rawWidth": 215, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "shopbaner.png": { + "ver": "1.0.6", + "uuid": "39dbd1cd-c67e-4ff4-b868-dd95054e3fa6", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 496, + "trimY": 490, + "width": 1000, + "height": 406, + "rawWidth": 1000, + "rawHeight": 406, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star1.png": { + "ver": "1.0.6", + "uuid": "caa38b03-cb18-4bad-b47b-0b329f7d3e7a", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 490, + "width": 248, + "height": 326, + "rawWidth": 248, + "rawHeight": 326, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "star2.png": { + "ver": "1.0.6", + "uuid": "a914aa35-d735-4678-b506-ff3ab3c7a8e0", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 248, + "trimY": 490, + "width": 248, + "height": 326, + "rawWidth": 248, + "rawHeight": 326, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tian.png": { + "ver": "1.0.6", + "uuid": "134c5e0f-a9ee-4671-a2dd-3c0cf8cf805e", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 728, + "trimY": 0, + "width": 44, + "height": 40, + "rawWidth": 44, + "rawHeight": 40, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "tt.png": { + "ver": "1.0.6", + "uuid": "f1560937-7835-4688-9c6b-d7fe8e660b5f", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 34, + "height": 30, + "rawWidth": 34, + "rawHeight": 30, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "yuekazi.png": { + "ver": "1.0.6", + "uuid": "580975aa-0cf8-479f-854f-bd526d0e55bd", + "importer": "sprite-frame", + "rawTextureUuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 249, + "trimY": 0, + "width": 435, + "height": 38, + "rawWidth": 435, + "rawHeight": 38, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/yueka.png b/assets/shop/img/yueka.png new file mode 100644 index 0000000..79abd85 Binary files /dev/null and b/assets/shop/img/yueka.png differ diff --git a/assets/shop/img/yueka.png.meta b/assets/shop/img/yueka.png.meta new file mode 100644 index 0000000..391ae8b --- /dev/null +++ b/assets/shop/img/yueka.png.meta @@ -0,0 +1,15 @@ +{ + "ver": "2.3.7", + "uuid": "b72f8f63-5869-4f82-83a6-70c719b5e4ac", + "importer": "texture", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2002, + "height": 996, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/img/yueka1.png b/assets/shop/img/yueka1.png new file mode 100644 index 0000000..44ca2ea Binary files /dev/null and b/assets/shop/img/yueka1.png differ diff --git a/assets/shop/img/yueka1.png.meta b/assets/shop/img/yueka1.png.meta new file mode 100644 index 0000000..27de43b --- /dev/null +++ b/assets/shop/img/yueka1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "91c4090b-98ee-493a-a65f-a0aa980f4e3f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 914, + "height": 1134, + "platformSettings": {}, + "subMetas": { + "yueka1": { + "ver": "1.0.6", + "uuid": "e30e1de6-ef28-4077-8f31-a11e73c8c789", + "importer": "sprite-frame", + "rawTextureUuid": "91c4090b-98ee-493a-a65f-a0aa980f4e3f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 914, + "height": 1134, + "rawWidth": 914, + "rawHeight": 1134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/img/zhongji.png b/assets/shop/img/zhongji.png new file mode 100644 index 0000000..6166731 Binary files /dev/null and b/assets/shop/img/zhongji.png differ diff --git a/assets/shop/img/zhongji.png.meta b/assets/shop/img/zhongji.png.meta new file mode 100644 index 0000000..30c70bc --- /dev/null +++ b/assets/shop/img/zhongji.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "afca2733-2900-4888-a017-3aefc64fa4ee", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 994, + "height": 426, + "platformSettings": {}, + "subMetas": { + "zhongji": { + "ver": "1.0.6", + "uuid": "abec1490-f0e9-4e27-a6ed-ffdebb522e4c", + "importer": "sprite-frame", + "rawTextureUuid": "afca2733-2900-4888-a017-3aefc64fa4ee", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -0.5, + "trimX": 0, + "trimY": 1, + "width": 994, + "height": 425, + "rawWidth": 994, + "rawHeight": 426, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/prefab.meta b/assets/shop/prefab.meta new file mode 100644 index 0000000..012740a --- /dev/null +++ b/assets/shop/prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "ac030bb2-163b-4609-8553-0d6e7e662d03", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/Loading.prefab b/assets/shop/prefab/Loading.prefab new file mode 100644 index 0000000..aed7385 --- /dev/null +++ b/assets/shop/prefab/Loading.prefab @@ -0,0 +1,459 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "Loading", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 6 + }, + { + "__id__": 9 + } + ], + "_active": false, + "_components": [ + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 5 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "load", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 689, + "height": 656 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "794efc8c-624c-469f-84c0-24ce84022c54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e0njfM7epDhL+otsGYSeCR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请稍后", + "_N$string": "请稍后", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/Loading.prefab.meta b/assets/shop/prefab/Loading.prefab.meta new file mode 100644 index 0000000..eaf1ec7 --- /dev/null +++ b/assets/shop/prefab/Loading.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "9fdc6671-8422-410b-b9af-36dab20f1488", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/Revive.prefab b/assets/shop/prefab/Revive.prefab new file mode 100644 index 0000000..da628d5 --- /dev/null +++ b/assets/shop/prefab/Revive.prefab @@ -0,0 +1,2439 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "Revive", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 11 + }, + { + "__id__": 14 + }, + { + "__id__": 28 + }, + { + "__id__": 48 + }, + { + "__id__": 56 + } + ], + "_active": true, + "_components": [ + { + "__id__": 64 + } + ], + "_prefab": { + "__id__": 65 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 956, + "height": 332 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -4.962, + -947.697, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "tishik", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 3 + }, + { + "__id__": 6 + } + ], + "_active": true, + "_components": [ + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 342, + "height": 85 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 310.519, + 22.298, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "jixuc", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 5 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 161, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -56.333, + 6.106, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 3 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9dc97e7c-1f7b-4fde-b853-4c47f06ec97b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "64DD5RDkBN75bB4duvL53v", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mmm", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 41, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 129.918, + 6.412, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9659ed22-c368-43b3-92fc-8ece78340ec9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c45fRHd2JDfZgrBshdnCH/", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "42a31065-5a4c-46e3-b410-5d129c84b9fa" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d6ZfDszpBOZpyflkLd6eU0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "an", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 290, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 312.166, + -79.926, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1193af14-f157-46a6-9504-d24b03f50073" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "58WmXd5RlLH5Nc03zXmnFE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 15 + }, + { + "__id__": 18 + }, + { + "__id__": 21 + }, + { + "__id__": 24 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 27 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 63 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -299.256, + 35.207, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "scoin_1", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -96.02, + 8.65, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bccf63ba-b29f-4020-b862-3480eb2cfcdf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "18QamiYY5H9Iah3EZKln+C", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "scoin_0", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 51 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -58.968, + 7.353, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7cdc23d-abb6-4a7e-a9a7-6c1a46eb5294" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7a5YQMp55FF5ScYyhAXl4g", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "scoin_0", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 51 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -12.475, + 5.514, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7cdc23d-abb6-4a7e-a9a7-6c1a46eb5294" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "00aGM7VI5J44yoHw7eqwEO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "scoin_0", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 25 + } + ], + "_prefab": { + "__id__": 26 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 51 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 34.788, + 6.04, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7cdc23d-abb6-4a7e-a9a7-6c1a46eb5294" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72He1auiRHioDyiDL9svyb", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "26RVbpuElOMIPA5xSDokYK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 29 + }, + { + "__id__": 32 + }, + { + "__id__": 35 + }, + { + "__id__": 38 + }, + { + "__id__": 41 + }, + { + "__id__": 44 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + } + ], + "_prefab": { + "__id__": 31 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -50.818, + -23.375, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4f3aa5b-740d-4a59-bf36-0d1fc85acc0a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9cZMxQxShDKoEigo1kjqaV", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mul1", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 33 + } + ], + "_prefab": { + "__id__": 34 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -20.267, + -22.729, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 32 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "13ddd564-96a4-4f41-ac93-176a65aafaa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "71hQB2sgNOQq2SmQTO0sT8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 36 + } + ], + "_prefab": { + "__id__": 37 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -142.023, + -115.199, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 35 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4f3aa5b-740d-4a59-bf36-0d1fc85acc0a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f0cewEru1FELVJPaogUyfj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mul1", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -111.472, + -114.553, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "13ddd564-96a4-4f41-ac93-176a65aafaa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "12+cXGMKFBjYcot0WgZ5Br", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + } + ], + "_prefab": { + "__id__": 43 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 43.977, + -114.597, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4f3aa5b-740d-4a59-bf36-0d1fc85acc0a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "baU4WUxaVPkadUufaLr7/a", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "mul1", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 45 + } + ], + "_prefab": { + "__id__": 46 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 25, + "height": 37 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 74.528, + -113.951, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "13ddd564-96a4-4f41-ac93-176a65aafaa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c6M8Z2UZVDnpyenM16Xo8Z", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "51S/e8EFNKV4e8+a1Ecpmk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "miao", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 49 + }, + { + "__id__": 52 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 362.266, + 34.728, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "month_2", + "_objFlags": 0, + "_parent": { + "__id__": 48 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 38, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -2.864, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "82d291e7-9a0a-4d7e-8161-a59ef2f5b5c3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "05VbXBTZNIXbU+kMJ8Ue6p", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "month_0", + "_objFlags": 0, + "_parent": { + "__id__": 48 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 53 + } + ], + "_prefab": { + "__id__": 54 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 40.409, + -4.092, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 52 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a5271624-c7f9-44c1-84ac-d09d343073fa" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7aPLVf9U9H0Ly7V32y9Tfk", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02Hu9N8oBCj6ICkE7yzq24", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 57 + }, + { + "__id__": 60 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 63 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 298.857, + -81.221, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "cost_6", + "_objFlags": 0, + "_parent": { + "__id__": 56 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -9.47, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 57 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "30b3ef49-bd7e-47a6-84b2-da05678348a6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "40Vq/RJlJIbYiYQrkzcOPv", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_10", + "_objFlags": 0, + "_parent": { + "__id__": 56 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 61 + } + ], + "_prefab": { + "__id__": 62 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 46.741, + -0.409, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 60 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "646c3b71-e143-4d0f-94e6-534c77123f6d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f4509ztm9F1bN6uB3TbwkM", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8eNg8XXCtL/qv4zJRaslPp", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c988477-a457-479e-a318-5994fdb5b2c0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "2beee6ec-25c2-4485-9924-da395a4cd05a" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/Revive.prefab.meta b/assets/shop/prefab/Revive.prefab.meta new file mode 100644 index 0000000..e148c60 --- /dev/null +++ b/assets/shop/prefab/Revive.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "d9c4e810-8682-496e-b5a9-bc3e7dd7bb93", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/RewardWindow.prefab b/assets/shop/prefab/RewardWindow.prefab new file mode 100644 index 0000000..916981e --- /dev/null +++ b/assets/shop/prefab/RewardWindow.prefab @@ -0,0 +1,284 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "Rward", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + } + ], + "_active": true, + "_components": [ + { + "__id__": 6 + }, + { + "__id__": 7 + }, + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + } + ], + "_prefab": { + "__id__": 5 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bcCjyvB1tKmZrkzvzwccI3", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "f30d3ipM7dP6JubTtb9L2yZ", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "rewardNode": { + "__uuid__": "50bf5efc-889c-4eed-985a-4e204247a251" + }, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/RewardWindow.prefab.meta b/assets/shop/prefab/RewardWindow.prefab.meta new file mode 100644 index 0000000..8b90720 --- /dev/null +++ b/assets/shop/prefab/RewardWindow.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "42afc6d4-1976-49c6-9595-91e157447e82", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/Tops.prefab b/assets/shop/prefab/Tops.prefab new file mode 100644 index 0000000..78dc9b8 --- /dev/null +++ b/assets/shop/prefab/Tops.prefab @@ -0,0 +1,2066 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "Tops", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 26 + }, + { + "__id__": 40 + }, + { + "__id__": 44 + }, + { + "__id__": 48 + } + ], + "_active": true, + "_components": [ + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 750, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 180, + "height": 180 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -418.15, + -85.399, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e21bf9e2-2981-4ab4-8d7a-b3f339a27122" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0ecmfC4WtDwqw2va1D+ynr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Stamina", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + }, + { + "__id__": 9 + }, + { + "__id__": 12 + }, + { + "__id__": 15 + }, + { + "__id__": 18 + }, + { + "__id__": 20 + } + ], + "_active": true, + "_components": [ + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 25 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 350, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -102.46, + -87.107, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 382, + "height": 85 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3063f58-52e1-4552-8660-fe0b4fbc6036" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5evpf3XnRFl4bf4j4Jvb9p", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 63, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120.21, + -1.322, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c00afd58-6ef6-4674-a68a-373015c8d376" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cfoolKUm9N2rxBCXcTxZd8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 147.114, + 0.31, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d13e982d-fed1-454a-b4c4-c92e5bbdfd2d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4f7MYNKJRBGI3DZ3YVEmnu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "man", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 47 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -1.951, + 0.13, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "24643945-c61a-4dce-b2c0-6de0c11ae435" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "501HcOv3tMGrMa3gn6MLBK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "health", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 19 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -61.628, + 1.821, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "adarAr3llA0KcGLWo+aVAz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 21 + } + ], + "_prefab": { + "__id__": 22 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 109, + "g": 70, + "b": 70, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100.1, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 72.788, + -4.433, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 20 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "00:00", + "_N$string": "00:00", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "caitorOWtAQZn2KcRo0mY1", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 24 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 5 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openStamina", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4dAhGM2V1E/Jm8L7wckigH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Coin", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 27 + }, + { + "__id__": 30 + }, + { + "__id__": 33 + }, + { + "__id__": 36 + } + ], + "_active": true, + "_components": [ + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 350, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 315.081, + -87.107, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 28 + } + ], + "_prefab": { + "__id__": 29 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 382, + "height": 85 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 27 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c3063f58-52e1-4552-8660-fe0b4fbc6036" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "03aHGNRx1GupkH/aVgJR0/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120.21, + -1.322, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 30 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "239f5193-a287-40ec-8887-5108d59b569c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ceQLVElcpCBbMZcwQekYo3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 34 + } + ], + "_prefab": { + "__id__": 35 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 147.114, + 0.31, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d13e982d-fed1-454a-b4c4-c92e5bbdfd2d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d9YjiO+mBJj4kU8RxiAudy", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Coin", + "_objFlags": 0, + "_parent": { + "__id__": 26 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 37 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.255, + 1.584, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eeQeilstBGN4djR+E7PkAO", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": false, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 26 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "03ouFAX6JG25+CStgsS95/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 41 + }, + { + "__id__": 42 + } + ], + "_prefab": { + "__id__": 43 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168, + "height": 191 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 408.004, + -588.064, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 40 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "213d54e8-9413-40dd-a7be-bf0e40c4757e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 40 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 40 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7fdgju7V1F/pmbeJylhKgt", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 45 + }, + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 168, + "height": 191 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 408.622, + -334.976, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "43614b1f-b917-4fa8-a281-9fcc6985e35c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + null + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 44 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3eyPqqPUZMbKgcBeW3zhi9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 49 + } + ], + "_prefab": { + "__id__": 50 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 731, + "height": 946 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -418.15, + -86.088, + 0, + 0, + 0, + 0, + 1, + 0.15, + 0.15, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 48 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "46896dd3-d3de-4947-b2dd-eb2b1b69bef1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c6PEBTZt1L2ZQgBb7yEBo+", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 1, + "_left": 0, + "_right": 0, + "_top": 210, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/Tops.prefab.meta b/assets/shop/prefab/Tops.prefab.meta new file mode 100644 index 0000000..9aeb362 --- /dev/null +++ b/assets/shop/prefab/Tops.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "4466b8d6-b468-4cb5-bc57-7a2bd3df12e4", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/item.prefab b/assets/shop/prefab/item.prefab new file mode 100644 index 0000000..c674087 --- /dev/null +++ b/assets/shop/prefab/item.prefab @@ -0,0 +1,664 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 8 + } + ], + "_active": true, + "_components": [ + { + "__id__": 12 + }, + { + "__id__": 13 + }, + { + "__id__": 15 + }, + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 18 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 327, + "height": 454 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8df4862f-bc72-4038-bc80-6bec5833a561" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "87gjIEW31HkZhCTJjiObXe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 106.74, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -162.477, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "100元", + "_N$string": "100元", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6eErwIc4JKyL//Z8c2JRnP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 9 + }, + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110.74, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 150, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "450万", + "_N$string": "450万", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.LabelOutline", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_color": { + "__type__": "cc.Color", + "r": 228, + "g": 255, + "b": 27, + "a": 255 + }, + "_width": 2, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50ucvSzR1LUJ4TQMdow0vG", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7788da8f-ccb8-4cb4-9a46-1dd01f6186c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 14 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 1 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "de906iE/HVHpI6VO7IMvKaI", + "handler": "buyProp", + "customEventData": "" + }, + { + "__type__": "de906iE/HVHpI6VO7IMvKaI", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "label": null, + "text": "hello", + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 17 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "de906iE/HVHpI6VO7IMvKaI", + "handler": "", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/item.prefab.meta b/assets/shop/prefab/item.prefab.meta new file mode 100644 index 0000000..3abfcd1 --- /dev/null +++ b/assets/shop/prefab/item.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "a81d74d9-943b-4d0e-aad5-2999276d3447", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/monthlyCard.prefab b/assets/shop/prefab/monthlyCard.prefab new file mode 100644 index 0000000..8917adf --- /dev/null +++ b/assets/shop/prefab/monthlyCard.prefab @@ -0,0 +1,3220 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "monthlyCard", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 11 + }, + { + "__id__": 50 + }, + { + "__id__": 63 + } + ], + "_active": true, + "_components": [ + { + "__id__": 87 + }, + { + "__id__": 88 + } + ], + "_prefab": { + "__id__": 89 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "ditu", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "22372cf5-9d4b-4926-ace8-921c11cf8dd5" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "65iaLUSnxHHabVNn/FKr5X", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "fangkuai", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + }, + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 794, + "height": 210 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.10300000000000864, + 562.396, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d79a5bee-5022-4643-a9d4-e3e8a0ed1957" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 41, + "_left": 142.897, + "_right": 143.103, + "_top": 292.60400000000004, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 794, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7k3CiSQNOlZH83esFWivq", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "yueka", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 12 + }, + { + "__id__": 15 + }, + { + "__id__": 18 + }, + { + "__id__": 21 + }, + { + "__id__": 24 + }, + { + "__id__": 29 + }, + { + "__id__": 42 + } + ], + "_active": true, + "_components": [ + { + "__id__": 48 + } + ], + "_prefab": { + "__id__": 49 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 914, + "height": 1134 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -395.34899999999993, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "jinbi", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 320 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 209.033, + 343.557, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f0ad30c5-b441-4e29-bd57-b74a4ca072a3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ceRcE84ZNIkYMB5AyjiaH9", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "jiantou", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 248, + "height": 326 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 268.853, + -77.408, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "506a1673-0424-419b-804a-634729897214" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "045bcnl2lM96FHFlrmIAJ6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star1", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 20 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 248, + "height": 326 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -266.724, + -74.959, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "caa38b03-cb18-4bad-b47b-0b329f7d3e7a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c3mgP5wX9GUKXcUoJKBn8G", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "star2", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 23 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 248, + "height": 326 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.399, + -73.036, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 21 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a914aa35-d735-4678-b506-ff3ab3c7a8e0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "07hOEJv15KLqZU4srfdY+t", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "30yuan", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 25 + }, + { + "__id__": 26 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 516, + "height": 164 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -387.679, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8add4fef-94e5-431a-be6c-2694ddf8a827" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 24 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 27 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "191edqNaKdPtJiA4/cSsB1N", + "handler": "buyProduct", + "customEventData": "month_Card" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "05SdP+b/9GrLh7YGugTkcx", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shengxiao", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 30 + }, + { + "__id__": 33 + }, + { + "__id__": 36 + }, + { + "__id__": 39 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 41 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "shengxiaozhong", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 286, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -62.177, + -372.636, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 30 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3fa8a798-dfb7-403a-93a7-a57a80e07245" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "56hrSVHANFi4XkqMb9J+/s", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cardm", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 34 + } + ], + "_prefab": { + "__id__": 35 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 123, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -294.363, + -368.376, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a4d75412-5080-4584-ace0-87a1ed8b89af" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "80vyOXBARH4bGwQR0s1TJT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tian", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 44, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 230.441, + -372.721, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "134c5e0f-a9ee-4671-a2dd-3c0cf8cf805e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fcB9dKiytE0L4ZzAQdXDi/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 161.454, + -371.783, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "78wccJoX5DwoxgFWHxyAek", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48Cpm0OQ5E+La9hRVAmcyn", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "guanbi", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 43 + }, + { + "__id__": 44 + }, + { + "__id__": 45 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 96, + "height": 102 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 400.002, + 519.584, + 0, + 0, + 0, + 0, + 1, + 1.1, + 1.1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "225f5c55-2992-4244-88ee-d6186f8099ec" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 33, + "_left": 0, + "_right": 4.197999999999979, + "_top": -8.683999999999997, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 46 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "191edqNaKdPtJiA4/cSsB1N", + "handler": "closeMonthCard", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "00ttX3TKxLJJRVQogKgZQS", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e30e1de6-ef28-4077-8f31-a11e73c8c789" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6egnD5q+NBGbs/MwTRh+vm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Loading", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 51 + }, + { + "__id__": 55 + }, + { + "__id__": 58 + } + ], + "_active": false, + "_components": [ + { + "__id__": 61 + } + ], + "_prefab": { + "__id__": 62 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 52 + }, + { + "__id__": 53 + } + ], + "_prefab": { + "__id__": 54 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 51 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 50 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "load", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 56 + } + ], + "_prefab": { + "__id__": 57 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 689, + "height": 656 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 55 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "794efc8c-624c-469f-84c0-24ce84022c54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 50 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "e0njfM7epDhL+otsGYSeCR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 50 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 59 + } + ], + "_prefab": { + "__id__": 60 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 58 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请稍后", + "_N$string": "请稍后", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 50 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 50 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "05q/aTGl5Lioy2OJNs5XYl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "ConfirmBox", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 64 + }, + { + "__id__": 68 + }, + { + "__id__": 71 + }, + { + "__id__": 74 + }, + { + "__id__": 77 + } + ], + "_active": false, + "_components": [ + { + "__id__": 85 + } + ], + "_prefab": { + "__id__": 86 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 65 + }, + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 64 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 64 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 70 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 68 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "71f0494c-f638-4d7a-a826-a9407bf2b27c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "eeHwB6Bq5CSbRJy0kYMgo0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 73 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 330.904, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 71 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "月卡充值", + "_N$string": "月卡充值", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 75 + } + ], + "_prefab": { + "__id__": 76 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 195.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 89.865, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 74 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "网络异常\n请重新登录小游戏\n领取月卡奖励", + "_N$string": "网络异常\n请重新登录小游戏\n领取月卡奖励", + "_fontSize": 40, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "9149ix6q1AZ4VyIjmSGbdM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 63 + }, + "_children": [ + { + "__id__": 78 + } + ], + "_active": true, + "_components": [ + { + "__id__": 81 + }, + { + "__id__": 82 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.21, + -77.027, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 77 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 79 + } + ], + "_prefab": { + "__id__": 80 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 100.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 13.174, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 78 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "确定", + "_N$string": "确定", + "_fontSize": 80, + "_lineHeight": 80, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "1f0NO1uLNIxrx1dYb9rOaL", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d9be6eea-569b-46da-bb80-0d9c8b8f5263" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 77 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 83 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 77 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "191edqNaKdPtJiA4/cSsB1N", + "handler": "closeMonthCard", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "58sKElg7lE9I935Fpq7n8Y", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 63 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 63 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "c59E21W4dAgZdQulz+5vqy", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "" + }, + { + "__type__": "191edqNaKdPtJiA4/cSsB1N", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "monthCardTime": { + "__id__": 39 + }, + "monthCardBtn": { + "__id__": 24 + }, + "monthCardBtn2": { + "__id__": 29 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/monthlyCard.prefab.meta b/assets/shop/prefab/monthlyCard.prefab.meta new file mode 100644 index 0000000..3f170b3 --- /dev/null +++ b/assets/shop/prefab/monthlyCard.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "b3b1d033-8197-436e-86f4-87844d1a99e6", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/onMCReward.prefab b/assets/shop/prefab/onMCReward.prefab new file mode 100644 index 0000000..6e68870 --- /dev/null +++ b/assets/shop/prefab/onMCReward.prefab @@ -0,0 +1,1054 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "onMCReward", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 10 + }, + { + "__id__": 13 + }, + { + "__id__": 16 + }, + { + "__id__": 26 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 29 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2340 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": -210, + "_bottom": -210, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7eXokSdchHgrBaWe10DRsX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "lqbg", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 914, + "height": 1347 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -14.747, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "954feb1c-d5fc-4c47-8577-6285e17154d4" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "42LmNoxGhO67Td+h94X++n", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "guang", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + } + ], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 650, + "height": 638 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 96.811, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3+HUycU5AdbsxCnjjG1Gl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "coins4", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 15 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 171, + "height": 191 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -22.21, + 140.391, + 0, + 0, + 0, + 0, + 1, + 1.8, + 1.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2bd513a-a1ab-44fa-9d02-6ce2b94cfd7a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3wiWd90lML4oTnrxJffhK", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "DaysLeft", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 17 + }, + { + "__id__": 20 + }, + { + "__id__": 22 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 25 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -20.005, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "haisheng", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + } + ], + "_prefab": { + "__id__": 19 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 89, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -89.519, + -383.409, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4e289ba-3afd-4838-bf0c-571cadce8db2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02OyPjluNLTLKOCDIXmXmB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 21 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.653, + -380.699, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "22JDmdIklHyKs5k8rBZ9RX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "lqtian", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 44, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 97.657, + -386.642, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2b6c09cd-62b2-4b90-8f3f-498e1a7b4c3f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7eIEnRCypLt66rLHNKf/3I", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c3jBryxn1Lv5BArWkkUxzp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "lq", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 635, + "height": 173 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -545.282, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8419f8d6-48b4-4ecd-8228-34d620ae0da9" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c61FLmjDpNXb2SOtzqo/Gl", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/onMCReward.prefab.meta b/assets/shop/prefab/onMCReward.prefab.meta new file mode 100644 index 0000000..aa4f21a --- /dev/null +++ b/assets/shop/prefab/onMCReward.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "1a9f7d54-86c0-4e75-a1ac-ff623f0c9a1f", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/rewardNode.prefab b/assets/shop/prefab/rewardNode.prefab new file mode 100644 index 0000000..c485ef1 --- /dev/null +++ b/assets/shop/prefab/rewardNode.prefab @@ -0,0 +1,1361 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "rewardNode", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 31 + }, + { + "__id__": 33 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 36 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 360 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "starzha", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 763.62, + "height": 763.62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 1, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "62ae7eaa-1552-4465-9696-f6220311642a" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3246SrjZtDCqJjcNjLJoSJ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 6 + }, + { + "__id__": 9 + }, + { + "__id__": 12 + }, + { + "__id__": 15 + }, + { + "__id__": 18 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 30 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 8 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1.6, + 1.6, + 10 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 6 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b94c323b-3d26-4684-ba64-0f00a13438d2" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "315emM+4FE3ahxG+gJrlde", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "freeze", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 10 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 238, + "height": 284 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 22.703, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 6 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 9 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a8496263-a191-44c8-b3d8-d1e7cd275fdf" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3crJ0GPJBL/rvs/pHPjNL1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "hammer", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 306, + "height": 316 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 6 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bca46f6f-1c18-46c4-b7ee-2b28d311a5ae" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "68PN+eHZ5Bbo8mITd+YvXp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "magic", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 286, + "height": 300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 6.895, + -3.438, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 6 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7ddd5001-543c-4725-ba8d-4e97668eb297" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2cfv2rf4ZHfJ7M7Sfctb2n", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "infinite_health", + "_objFlags": 0, + "_parent": { + "__id__": 5 + }, + "_children": [ + { + "__id__": 19 + }, + { + "__id__": 22 + } + ], + "_active": false, + "_components": [ + { + "__id__": 28 + } + ], + "_prefab": { + "__id__": 29 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 137, + "height": 121 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon1", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 11.361, + -125.613, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ff947612-64d1-4ad2-add0-b7d8fbd5df4f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3e7r+fwbFI7Y1WOygYANcq", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon2", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 23 + } + ], + "_active": false, + "_components": [ + { + "__id__": 26 + } + ], + "_prefab": { + "__id__": 27 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -31.807, + -125.613, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon2", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 25 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 128.22, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 23 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ff947612-64d1-4ad2-add0-b7d8fbd5df4f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2fibc7/3VM9rg71+aW4urO", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ff947612-64d1-4ad2-add0-b7d8fbd5df4f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "33/wdzCEVKY7xMAYSF3jg2", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "591a3b58-c345-4c24-84a2-f4faa8acdda1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c8zThuucNB3oD49yFreXPz", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4ecEJ6eatJpqbvSnXz4AeB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "label", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 88.98, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 20, + -121.815, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7aXb81olxIzp8lpa61lOZY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "xnode", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 34 + } + ], + "_prefab": { + "__id__": 35 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 49 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -19.101, + -121.815, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 33 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ee1f756f-b070-44b1-a415-4809b2634490" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7cGPLzslJHCaN+gsEC5eUm", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/rewardNode.prefab.meta b/assets/shop/prefab/rewardNode.prefab.meta new file mode 100644 index 0000000..31ac7e6 --- /dev/null +++ b/assets/shop/prefab/rewardNode.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "50bf5efc-889c-4eed-985a-4e204247a251", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/prefab/shop.prefab b/assets/shop/prefab/shop.prefab new file mode 100644 index 0000000..649d93d --- /dev/null +++ b/assets/shop/prefab/shop.prefab @@ -0,0 +1,17610 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "shop", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 11 + }, + { + "__id__": 352 + }, + { + "__id__": 425 + }, + { + "__id__": 428 + }, + { + "__id__": 436 + }, + { + "__id__": 449 + } + ], + "_active": true, + "_components": [ + { + "__id__": 473 + }, + { + "__id__": 474 + } + ], + "_prefab": { + "__id__": 475 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "37yYMxbm9Ch6mSwwX/Tozs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shop_2", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + }, + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "403aa689-5ef4-4978-978a-74b806e0760f" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "alignMode": 1, + "_target": { + "__id__": 1 + }, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 2340, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d7kf1rnZdB6KTrT4E+bvIo", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "itemcontent", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 12 + }, + { + "__id__": 19 + } + ], + "_active": true, + "_components": [ + { + "__id__": 17 + }, + { + "__id__": 350 + } + ], + "_prefab": { + "__id__": 351 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -443.25800000000004, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "scrollBar", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 13 + } + ], + "_active": false, + "_components": [ + { + "__id__": 16 + }, + { + "__id__": 348 + } + ], + "_prefab": { + "__id__": 349 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 12, + "height": 1500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bar", + "_objFlags": 0, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 15 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 10, + "height": 30 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d14edZvsdIGLew5wSDs6B8", + "sync": false + }, + { + "__type__": "cc.Scrollbar", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_scrollView": { + "__id__": 17 + }, + "_touching": false, + "_opacity": 255, + "enableAutoHide": true, + "autoHideTime": 1, + "_N$handle": { + "__id__": 14 + }, + "_N$direction": 1, + "_id": "" + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "horizontal": false, + "vertical": true, + "inertia": true, + "brake": 0.75, + "elastic": true, + "bounceDuration": 0.23, + "scrollEvents": [], + "cancelInnerEvents": true, + "_N$content": { + "__id__": 18 + }, + "content": { + "__id__": 18 + }, + "_N$horizontalScrollBar": null, + "_N$verticalScrollBar": { + "__id__": 16 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "_parent": { + "__id__": 19 + }, + "_children": [ + { + "__id__": 22 + }, + { + "__id__": 53 + }, + { + "__id__": 59 + }, + { + "__id__": 75 + }, + { + "__id__": 91 + }, + { + "__id__": 107 + }, + { + "__id__": 123 + }, + { + "__id__": 139 + }, + { + "__id__": 155 + }, + { + "__id__": 161 + }, + { + "__id__": 173 + }, + { + "__id__": 188 + }, + { + "__id__": 200 + }, + { + "__id__": 340 + }, + { + "__id__": 343 + } + ], + "_active": true, + "_components": [ + { + "__id__": 346 + } + ], + "_prefab": { + "__id__": 347 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 3300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 55.944, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [ + { + "__id__": 18 + } + ], + "_active": true, + "_components": [ + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1900 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 944.512, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 19 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0, + "_N$inverted": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7eaCjkUUtJholSqbUUNrQb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "banre", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 23 + }, + { + "__id__": 28 + }, + { + "__id__": 36 + }, + { + "__id__": 39 + } + ], + "_active": true, + "_components": [ + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1000, + "height": 406 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -327.441, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "chakan", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 24 + }, + { + "__id__": 25 + } + ], + "_prefab": { + "__id__": 27 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 322, + "height": 96 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 283.982, + -96.684, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 23 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4ead5bf9-b54d-4ce9-b0c2-75533c58f4dc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 23 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 26 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "openmonthCard", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e1F9rBoRdLLZXoNHM1bz7X", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shengxiaozit", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [ + { + "__id__": 29 + }, + { + "__id__": 32 + } + ], + "_active": true, + "_components": [ + { + "__id__": 34 + } + ], + "_prefab": { + "__id__": 35 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 215, + "height": 32 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 216.908, + -15.498, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "tt", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + } + ], + "_prefab": { + "__id__": 31 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 34, + "height": 30 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 206.398, + -0.456, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f1560937-7835-4688-9c6b-d7fe8e660b5f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a14DI7Qd9J47LEpfm7sgw6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 28 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 33 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 165.443, + -1.596, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e53ovu2kpGt6fVawF5hzhe", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 28 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4f782e47-7a24-4483-86f5-3c5aca38389e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45JISVeTFDfJKzClfJ+Fzu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "yuekazi", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 435, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 222.837, + 69.969, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "580975aa-0cf8-479f-854f-bd526d0e55bd" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6fxO9oPadNsrzAGOg1xJq5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "r_bq", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [ + { + "__id__": 40 + }, + { + "__id__": 43 + }, + { + "__id__": 46 + } + ], + "_active": true, + "_components": [ + { + "__id__": 49 + } + ], + "_prefab": { + "__id__": 50 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 148, + "height": 148 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 19.41, + -93.764, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "discount_8", + "_objFlags": 0, + "_parent": { + "__id__": 39 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 41 + } + ], + "_prefab": { + "__id__": 42 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -22.064, + 19.027, + 0, + 0, + 0, + 0.043619387365336, + 0.9990482215818578, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 5 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 40 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d458276c-fa7a-452d-a01a-fa19cd196e1d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f6wjKbbFpGl7KPki1iIIe5", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "discount_8", + "_objFlags": 0, + "_parent": { + "__id__": 39 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 44 + } + ], + "_prefab": { + "__id__": 45 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 13.641, + 21.769, + 0, + 0, + 0, + 0.043619387365336, + 0.9990482215818578, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 5 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 43 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d458276c-fa7a-452d-a01a-fa19cd196e1d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2fmCwtNJhIVZikexQ4kso1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "zhe", + "_objFlags": 0, + "_parent": { + "__id__": 39 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 48 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 45, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 8.627, + -25.161, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 46 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd09a391-0f09-4dd6-a17e-29e44be01ed3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "25DOpRQR5PPZe/ppoS0q2l", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 39 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e314ab10-ab70-4ff7-8513-4254be9264ee" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cdU6kB5EtDeJb/mO064AEj", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39dbd1cd-c67e-4ff4-b868-dd95054e3fa6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "c60beb21-ffe5-48e6-bc66-f4ba20a401cc" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9aMja0xwFH67E/pVVGEkPB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "txt1", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 54 + } + ], + "_active": true, + "_components": [ + { + "__id__": 57 + } + ], + "_prefab": { + "__id__": 58 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 97 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.798, + -2158.941, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "txt1", + "_objFlags": 0, + "_parent": { + "__id__": 53 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 56 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 148, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 54 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "84d4bdb5-6201-47d1-8fb9-603ee940f4a7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f5hq16A9tBPo1rvZbeIJkO", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "235acd46-ecc5-4d67-8c43-eb46f4900c93" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3z8EpicBIE5RRFkkjjQ8G", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 60 + }, + { + "__id__": 63 + }, + { + "__id__": 65 + }, + { + "__id__": 67 + } + ], + "_active": true, + "_components": [ + { + "__id__": 70 + }, + { + "__id__": 71 + }, + { + "__id__": 73 + } + ], + "_prefab": { + "__id__": 74 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 304, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -339.058, + -2485.25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 59 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 61 + } + ], + "_prefab": { + "__id__": 62 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 60 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "36f63644-d9f3-4223-aee9-bc771717015d" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 59 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "87gjIEW31HkZhCTJjiObXe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 59 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 64 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -42.37, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 59 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "6eErwIc4JKyL//Z8c2JRnP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 59 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 66 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15, + 160, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 59 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "50ucvSzR1LUJ4TQMdow0vG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_yuan", + "_objFlags": 0, + "_parent": { + "__id__": 59 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 68 + } + ], + "_prefab": { + "__id__": 69 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 57, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 67 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "32a301c2-9fce-420b-9018-bc0a0d6f9e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 59 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "76IAsbbkpMSKjr1wSrGwEz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 59 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7788da8f-ccb8-4cb4-9a46-1dd01f6186c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 59 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 72 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 59 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "gold_1" + }, + { + "__type__": "de906iE/HVHpI6VO7IMvKaI", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 59 + }, + "_enabled": true, + "label": null, + "text": "hello", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 59 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "f5iPfzyF1LDLpvRXmkUoer", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 76 + }, + { + "__id__": 79 + }, + { + "__id__": 81 + }, + { + "__id__": 83 + } + ], + "_active": true, + "_components": [ + { + "__id__": 86 + }, + { + "__id__": 87 + }, + { + "__id__": 89 + } + ], + "_prefab": { + "__id__": 90 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 304, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 12.942, + -2485.25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 77 + } + ], + "_prefab": { + "__id__": 78 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "742ec97e-78bc-4998-8ace-80ffe6d8f5eb" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 75 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "87gjIEW31HkZhCTJjiObXe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 80 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -42.37, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 75 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "6eErwIc4JKyL//Z8c2JRnP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 82 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 20, + 160, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 75 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "50ucvSzR1LUJ4TQMdow0vG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_yuan", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 84 + } + ], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 57, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 83 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "32a301c2-9fce-420b-9018-bc0a0d6f9e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 75 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "00OFC891hMvrU7KdFOUmYR", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 75 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7788da8f-ccb8-4cb4-9a46-1dd01f6186c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 75 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 88 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 75 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "gold_2" + }, + { + "__type__": "de906iE/HVHpI6VO7IMvKaI", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 75 + }, + "_enabled": true, + "label": null, + "text": "hello", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 75 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "66+qsnLwJF0LkQjTqG9Xpt", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 92 + }, + { + "__id__": 95 + }, + { + "__id__": 97 + }, + { + "__id__": 99 + } + ], + "_active": true, + "_components": [ + { + "__id__": 102 + }, + { + "__id__": 103 + }, + { + "__id__": 105 + } + ], + "_prefab": { + "__id__": 106 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 304, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 364.942, + -2485.25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 91 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 93 + } + ], + "_prefab": { + "__id__": 94 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 92 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f067ea7e-f754-4022-a031-e519318d28d8" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 91 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "87gjIEW31HkZhCTJjiObXe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 91 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 96 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -42.37, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 91 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "6eErwIc4JKyL//Z8c2JRnP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 91 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 98 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15, + 160, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 91 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "50ucvSzR1LUJ4TQMdow0vG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_yuan", + "_objFlags": 0, + "_parent": { + "__id__": 91 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 101 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 57, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 99 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "32a301c2-9fce-420b-9018-bc0a0d6f9e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 91 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "71CwDuE69O95Qn5epHmcHV", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7788da8f-ccb8-4cb4-9a46-1dd01f6186c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 104 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 91 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "gold_3" + }, + { + "__type__": "de906iE/HVHpI6VO7IMvKaI", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 91 + }, + "_enabled": true, + "label": null, + "text": "hello", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 91 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "48YmE9K01FpaVYgaSxME1L", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 108 + }, + { + "__id__": 111 + }, + { + "__id__": 113 + }, + { + "__id__": 115 + } + ], + "_active": true, + "_components": [ + { + "__id__": 118 + }, + { + "__id__": 119 + }, + { + "__id__": 121 + } + ], + "_prefab": { + "__id__": 122 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 304, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -339.058, + -2979.25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 107 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 109 + } + ], + "_prefab": { + "__id__": 110 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 108 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c389d164-d286-4ba4-821b-939aed4a86ba" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 107 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "87gjIEW31HkZhCTJjiObXe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 107 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 112 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -42.37, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 107 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "6eErwIc4JKyL//Z8c2JRnP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 107 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 18, + 165, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 107 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "50ucvSzR1LUJ4TQMdow0vG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_yuan", + "_objFlags": 0, + "_parent": { + "__id__": 107 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 116 + } + ], + "_prefab": { + "__id__": 117 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 57, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 115 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "32a301c2-9fce-420b-9018-bc0a0d6f9e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 107 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "b77HsDigtHGYY3szViRRml", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 107 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7788da8f-ccb8-4cb4-9a46-1dd01f6186c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 107 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 120 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 107 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "gold_4" + }, + { + "__type__": "de906iE/HVHpI6VO7IMvKaI", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 107 + }, + "_enabled": true, + "label": null, + "text": "hello", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 107 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "f6mohWehlEx5/9GXtk15qJ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 124 + }, + { + "__id__": 127 + }, + { + "__id__": 129 + }, + { + "__id__": 131 + } + ], + "_active": true, + "_components": [ + { + "__id__": 134 + }, + { + "__id__": 135 + }, + { + "__id__": 137 + } + ], + "_prefab": { + "__id__": 138 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 304, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 12.942, + -2979.25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 123 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 125 + } + ], + "_prefab": { + "__id__": 126 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2.5, + 2.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 124 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a147d2be-5573-4c90-a507-873ba78247f7" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "87gjIEW31HkZhCTJjiObXe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 123 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 128 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -42.37, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "6eErwIc4JKyL//Z8c2JRnP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 123 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 130 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 14, + 165, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "50ucvSzR1LUJ4TQMdow0vG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_yuan", + "_objFlags": 0, + "_parent": { + "__id__": 123 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 132 + } + ], + "_prefab": { + "__id__": 133 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 57, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 131 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "32a301c2-9fce-420b-9018-bc0a0d6f9e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "99bY5nvCxG04zEI/o4jwoU", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7788da8f-ccb8-4cb4-9a46-1dd01f6186c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 136 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 123 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "gold_5" + }, + { + "__type__": "de906iE/HVHpI6VO7IMvKaI", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 123 + }, + "_enabled": true, + "label": null, + "text": "hello", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 123 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "d5kpPO81xADLw8urE8HYwZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "item", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 140 + }, + { + "__id__": 143 + }, + { + "__id__": 145 + }, + { + "__id__": 147 + } + ], + "_active": true, + "_components": [ + { + "__id__": 150 + }, + { + "__id__": 151 + }, + { + "__id__": 153 + } + ], + "_prefab": { + "__id__": 154 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 304, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 364.942, + -2979.25, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 139 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 141 + } + ], + "_prefab": { + "__id__": 142 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2.5, + 2.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 140 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eed7ca9b-a5e1-4df8-8b92-2f8039bda198" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 139 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "87gjIEW31HkZhCTJjiObXe", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "_parent": { + "__id__": 139 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 144 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -42.37, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 139 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "6eErwIc4JKyL//Z8c2JRnP", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 139 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 146 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 21, + 165, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 139 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "50ucvSzR1LUJ4TQMdow0vG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_yuan", + "_objFlags": 0, + "_parent": { + "__id__": 139 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 148 + } + ], + "_prefab": { + "__id__": 149 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 57, + -163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 147 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "32a301c2-9fce-420b-9018-bc0a0d6f9e06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 139 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "75GUKLbINIwqIKu5zOJPov", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 139 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7788da8f-ccb8-4cb4-9a46-1dd01f6186c7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 139 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 152 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 139 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "gold_6" + }, + { + "__type__": "de906iE/HVHpI6VO7IMvKaI", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 139 + }, + "_enabled": true, + "label": null, + "text": "hello", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 139 + }, + "asset": { + "__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447" + }, + "fileId": "f6NMyq3+ZJfrCbT4XAJ1Mh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "txt", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 156 + } + ], + "_active": true, + "_components": [ + { + "__id__": 159 + } + ], + "_prefab": { + "__id__": 160 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 97 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0.491, + -599.734, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "txt2", + "_objFlags": 0, + "_parent": { + "__id__": 155 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 157 + } + ], + "_prefab": { + "__id__": 158 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 151, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 156 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "313d8396-8433-4974-ae28-555f3f846f06" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "90KeAa5m5EVZ3BSm9b++d6", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 155 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "235acd46-ecc5-4d67-8c43-eb46f4900c93" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f7gsWMAo1JSoqyNrS77ypg", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "chuji", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 162 + } + ], + "_active": true, + "_components": [ + { + "__id__": 171 + } + ], + "_prefab": { + "__id__": 172 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 422 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -905.205, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "s_bq", + "_objFlags": 0, + "_parent": { + "__id__": 161 + }, + "_children": [ + { + "__id__": 163 + }, + { + "__id__": 166 + } + ], + "_active": true, + "_components": [ + { + "__id__": 169 + } + ], + "_prefab": { + "__id__": 170 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 206, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -115.332, + 83.961, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "zhe", + "_objFlags": 0, + "_parent": { + "__id__": 162 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 164 + } + ], + "_prefab": { + "__id__": 165 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 45, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 58.252, + -16.479, + 0, + 0, + 0, + -0.224951054343865, + 0.9743700647852352, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -26 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 163 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd09a391-0f09-4dd6-a17e-29e44be01ed3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "00VqPSL2lKpKI94EexQU5+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "discount_7", + "_objFlags": 0, + "_parent": { + "__id__": 162 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 167 + } + ], + "_prefab": { + "__id__": 168 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -1.85, + 7.85, + 0, + 0, + 0, + -0.224951054343865, + 0.9743700647852352, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -26 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 166 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "535a83dd-d70a-480e-9190-b8776cc97c65" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bfcswQN0ZB8ZIE9G+jTz8z", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 162 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3d3ea606-2949-41b9-a98f-86f6f3122b0c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9dHuw7Um5P/JUkXXouQ/wj", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 161 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4f636b08-160e-44dc-96c7-4d19c8fab939" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "82Pefoq4tKO6Gsg8y/55Ge", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "zhongji", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 174 + } + ], + "_active": true, + "_components": [ + { + "__id__": 186 + } + ], + "_prefab": { + "__id__": 187 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 425 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.3, + -1389.652, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "s_bq", + "_objFlags": 0, + "_parent": { + "__id__": 173 + }, + "_children": [ + { + "__id__": 175 + }, + { + "__id__": 178 + }, + { + "__id__": 181 + } + ], + "_active": true, + "_components": [ + { + "__id__": 184 + } + ], + "_prefab": { + "__id__": 185 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 206, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -115.332, + 83.961, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "zhe", + "_objFlags": 0, + "_parent": { + "__id__": 174 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 176 + } + ], + "_prefab": { + "__id__": 177 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 45, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 58.252, + -16.479, + 0, + 0, + 0, + -0.224951054343865, + 0.9743700647852352, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -26 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 175 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd09a391-0f09-4dd6-a17e-29e44be01ed3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3bbxGsNIlMLqXhXr9WFHwv", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "discount_7", + "_objFlags": 0, + "_parent": { + "__id__": 174 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 179 + } + ], + "_prefab": { + "__id__": 180 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 38, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -18.381, + 11.059, + 0, + 0, + 0, + -0.224951054343865, + 0.9743700647852352, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -26 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 178 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6143b77a-3c94-42ca-9026-dca9db58f56b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "89R5yfC+1KMYUkV1EetIw7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "discount_7", + "_objFlags": 0, + "_parent": { + "__id__": 174 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 182 + } + ], + "_prefab": { + "__id__": 183 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 38, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 15.54, + -3.262, + 0, + 0, + 0, + -0.224951054343865, + 0.9743700647852352, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -26 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 181 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "6143b77a-3c94-42ca-9026-dca9db58f56b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "11CaEHEPZNAb9YclpltqOj", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 174 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3d3ea606-2949-41b9-a98f-86f6f3122b0c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "87vVFE7edG1Jch2fn8dtGd", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 173 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "abec1490-f0e9-4e27-a6ed-ffdebb522e4c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bfvCfIvipM16AEoR7KSFJX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "gaoji", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 189 + } + ], + "_active": true, + "_components": [ + { + "__id__": 198 + } + ], + "_prefab": { + "__id__": 199 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 426 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -1.476, + -1861.857, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "s_bq", + "_objFlags": 0, + "_parent": { + "__id__": 188 + }, + "_children": [ + { + "__id__": 190 + }, + { + "__id__": 193 + } + ], + "_active": true, + "_components": [ + { + "__id__": 196 + } + ], + "_prefab": { + "__id__": 197 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 206, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -115.332, + 83.961, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "zhe", + "_objFlags": 0, + "_parent": { + "__id__": 189 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 191 + } + ], + "_prefab": { + "__id__": 192 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 45, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 58.252, + -16.479, + 0, + 0, + 0, + -0.224951054343865, + 0.9743700647852352, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -26 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 190 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bd09a391-0f09-4dd6-a17e-29e44be01ed3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "52PdGmNepLQba3V7uL1jcf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "discount_7", + "_objFlags": 0, + "_parent": { + "__id__": 189 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 194 + } + ], + "_prefab": { + "__id__": 195 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 40, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -0.923, + 9.751, + 0, + 0, + 0, + -0.224951054343865, + 0.9743700647852352, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -26 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 193 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7a51cfc8-dc08-482d-91e8-d851ed02b4d0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c1c3m23eNH0IhUwy6/emvS", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 189 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3d3ea606-2949-41b9-a98f-86f6f3122b0c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "89O//cZstL9oI7N8PfLByU", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 188 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7a8bfae9-98ac-416f-8e05-10dc687389d7" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "12xVWO4w5PFZ2NbBnTIKjs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "libao", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 201 + }, + { + "__id__": 203 + }, + { + "__id__": 206 + }, + { + "__id__": 209 + }, + { + "__id__": 212 + }, + { + "__id__": 215 + }, + { + "__id__": 232 + }, + { + "__id__": 235 + }, + { + "__id__": 238 + }, + { + "__id__": 241 + }, + { + "__id__": 244 + }, + { + "__id__": 247 + }, + { + "__id__": 250 + }, + { + "__id__": 267 + }, + { + "__id__": 270 + }, + { + "__id__": 273 + }, + { + "__id__": 276 + }, + { + "__id__": 279 + }, + { + "__id__": 282 + }, + { + "__id__": 285 + }, + { + "__id__": 288 + }, + { + "__id__": 291 + }, + { + "__id__": 294 + }, + { + "__id__": 308 + }, + { + "__id__": 322 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 339 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 1128.049, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 202 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -145.75, + -2185.145, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b1cE/wSa5CRps4iF9NsAq+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 204 + } + ], + "_prefab": { + "__id__": 205 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -228.34, + -2182.017, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 203 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "96x0SZ62ZBo72w3MmVRjHp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 207 + } + ], + "_prefab": { + "__id__": 208 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -200.34, + -2182.017, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 206 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dc+JU05OtLip0XAE7Jn8Xk", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 210 + } + ], + "_prefab": { + "__id__": 211 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -172.34, + -2182.017, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 209 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8ftdGupkpJlbjtEMjG0r5r", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 213 + } + ], + "_prefab": { + "__id__": 214 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -144.34, + -2182.017, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 212 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b9B+ndSYFGLbzmRnSsmRgX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [ + { + "__id__": 216 + }, + { + "__id__": 219 + }, + { + "__id__": 222 + }, + { + "__id__": 225 + }, + { + "__id__": 228 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 231 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -181.113, + -2652.498, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 215 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 217 + } + ], + "_prefab": { + "__id__": 218 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -116.487, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 216 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c56C/bVv9NHLtsR2mmdJx6", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 215 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 220 + } + ], + "_prefab": { + "__id__": 221 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -85.4, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 219 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a0PFqgVXFNZLLOWLbPIcIr", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 215 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 223 + } + ], + "_prefab": { + "__id__": 224 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -48.5, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 222 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d1AMagBzJNmJJqeG8Gelv0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 215 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 226 + } + ], + "_prefab": { + "__id__": 227 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.5, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 225 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "22A4teavFE+Kl/QCWYDqt2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 215 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 229 + } + ], + "_prefab": { + "__id__": 230 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 31.5, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 228 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b0/jQCs+xGboAt0JF1vrmb", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "78xPPvcyBBU4GGwHlZb/v/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 233 + } + ], + "_prefab": { + "__id__": 234 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -63.825, + -2654.028, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 232 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bbhk1ejKZH8YbRjCSZNVRO", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 236 + } + ], + "_prefab": { + "__id__": 237 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -34.863, + -2655.607, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 235 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b0MaAw+nlIiYNxMcYleB6Q", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 239 + } + ], + "_prefab": { + "__id__": 240 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 53.33, + -2654.028, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 238 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8XM1m3bVC6L6W4xC/3CFQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 242 + } + ], + "_prefab": { + "__id__": 243 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 82.292, + -2655.607, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 241 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5UKH6XwRAyb9m6JSHyHba", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 245 + } + ], + "_prefab": { + "__id__": 246 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 164.093, + -2654.028, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 244 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f5J7+o/15NEp+TsyMUM1lc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 248 + } + ], + "_prefab": { + "__id__": 249 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 193.055, + -2655.607, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 247 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "27WCWtbz1PoLwXBSCFi9fT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "coin", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [ + { + "__id__": 251 + }, + { + "__id__": 254 + }, + { + "__id__": 257 + }, + { + "__id__": 260 + }, + { + "__id__": 263 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 266 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -178.367, + -3128.161, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 250 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 252 + } + ], + "_prefab": { + "__id__": 253 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -126.431, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 251 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0474e049-57c0-451a-ba18-17d624cb4aef" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "84A97yHd5FQq1Vu1oF2po1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 250 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 255 + } + ], + "_prefab": { + "__id__": 256 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -88.5, + 6.496390726949488e-13, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 254 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "478f346f-7aa8-4f88-bb46-877d0e27e9f6" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7mEq7/eNCmbiUD4Axxppq", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 250 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 258 + } + ], + "_prefab": { + "__id__": 259 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -48.5, + 6.496390726949488e-13, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 257 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6c3aK5OGlNob/1mSRNfnEl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 250 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 261 + } + ], + "_prefab": { + "__id__": 262 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -8.5, + 6.496390726949488e-13, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 260 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7mlMlm/tJoYIERDCFU3JU", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_0", + "_objFlags": 0, + "_parent": { + "__id__": 250 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 264 + } + ], + "_prefab": { + "__id__": 265 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 31.5, + 6.496390726949488e-13, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 263 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "83OU5yqtZD8ZkKxpG7r26U", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98pT6oZLxPx4gl1/9jbOlc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 268 + } + ], + "_prefab": { + "__id__": 269 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -66.44, + -3123.317, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 267 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "89O8Ue3S5HPJw2b7YDdOD8", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 271 + } + ], + "_prefab": { + "__id__": 272 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -36.466, + -3124.531, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 270 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cbsGdhJuBHCI8uQr/kervR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 274 + } + ], + "_prefab": { + "__id__": 275 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 49.743, + -3123.317, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 273 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c0t013tV5Dp5UiIYbP5+Iw", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 277 + } + ], + "_prefab": { + "__id__": 278 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 79.717, + -3124.531, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 276 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45Fc8sYZVEs7P/FPuFzpiR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "x", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 280 + } + ], + "_prefab": { + "__id__": 281 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 22, + "height": 22 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 161.494, + -3123.317, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 279 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b06tDPvKFJ9Y+rIyrmdtn0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_5", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 283 + } + ], + "_prefab": { + "__id__": 284 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 191.468, + -3124.531, + 0, + 0, + 0, + 0, + 1, + 0.7, + 0.7, + 0.7 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 282 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3ZcRJ1W9NTLN4utEAIOFT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "30min", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 286 + } + ], + "_prefab": { + "__id__": 287 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -340.194, + -2182.966, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 285 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "af15d004-82c1-403a-99f8-a2e703a2781d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9bhsY8GuZB8Zrx9aosHSuz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "30min", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 289 + } + ], + "_prefab": { + "__id__": 290 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -357.592, + -2652.452, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 288 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "636ed2f1-50bf-4d66-a5b1-9dd7509fc277" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9c+eaxXUtA/56JME/UoTmh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "30min", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 292 + } + ], + "_prefab": { + "__id__": 293 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 133, + "height": 38 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -358.491, + -3128.365, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 291 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "75fc2652-6239-434e-b00b-bd2406dcf50a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9dzGn/2P5CVJ6pgLCJiv+A", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "buy", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [ + { + "__id__": 295 + }, + { + "__id__": 298 + }, + { + "__id__": 301 + } + ], + "_active": true, + "_components": [ + { + "__id__": 304 + }, + { + "__id__": 305 + } + ], + "_prefab": { + "__id__": 307 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 464, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 244.925, + -1921.732, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 294 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 296 + } + ], + "_prefab": { + "__id__": 297 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -132.248, + 5.34, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 295 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3a6c0c7hlPEqVHA1S9KKeB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_6", + "_objFlags": 0, + "_parent": { + "__id__": 294 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 299 + } + ], + "_prefab": { + "__id__": 300 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -101.983, + 5.414, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 0.9 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 298 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a9Y9ZFZkNBBIrk+NkroOte", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_10", + "_objFlags": 0, + "_parent": { + "__id__": 294 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 302 + } + ], + "_prefab": { + "__id__": 303 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -56.784, + 5, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 0.9 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 301 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "646c3b71-e143-4d0f-94e6-534c77123f6d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "67CNFHk3NLOpEg5vT20a9w", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 294 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "979ff69f-0560-48a5-a2c2-f5e20ab99171" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 294 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 306 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 294 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "unlimited_health_bundle_10" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ebPRWGDWhMWYZAOiJevbp3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "buy", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [ + { + "__id__": 309 + }, + { + "__id__": 312 + }, + { + "__id__": 315 + } + ], + "_active": true, + "_components": [ + { + "__id__": 318 + }, + { + "__id__": 319 + } + ], + "_prefab": { + "__id__": 321 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 464, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 243.209, + -2392.369, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "cost_6", + "_objFlags": 0, + "_parent": { + "__id__": 308 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 310 + } + ], + "_prefab": { + "__id__": 311 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -132.334, + 5, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 0.9 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 309 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "58ItW605BMtIXNFfJoeKEd", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_6", + "_objFlags": 0, + "_parent": { + "__id__": 308 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 313 + } + ], + "_prefab": { + "__id__": 314 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -98.659, + 5.4, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 0.9 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 312 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28dFZ2O/JG6aNQxHHaeknf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_10", + "_objFlags": 0, + "_parent": { + "__id__": 308 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 316 + } + ], + "_prefab": { + "__id__": 317 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -53.568, + 5, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 0.9 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 315 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "646c3b71-e143-4d0f-94e6-534c77123f6d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6dqli1EdtJhKnbUCKm/xHA", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 308 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "979ff69f-0560-48a5-a2c2-f5e20ab99171" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 308 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 320 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 308 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "unlimited_health_bundle_20" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48dDGswhNPwIsSpk1x5gms", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "buy", + "_objFlags": 0, + "_parent": { + "__id__": 200 + }, + "_children": [ + { + "__id__": 323 + }, + { + "__id__": 326 + }, + { + "__id__": 329 + }, + { + "__id__": 332 + } + ], + "_active": true, + "_components": [ + { + "__id__": 335 + }, + { + "__id__": 336 + } + ], + "_prefab": { + "__id__": 338 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 464, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 243.494, + -2863.583, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "cost_6", + "_objFlags": 0, + "_parent": { + "__id__": 322 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 324 + } + ], + "_prefab": { + "__id__": 325 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -132.505, + 5, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 0.9 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 323 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0474e049-57c0-451a-ba18-17d624cb4aef" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aaUMTwaJ5Dt5vJ8qmRGNpp", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_10", + "_objFlags": 0, + "_parent": { + "__id__": 322 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 327 + } + ], + "_prefab": { + "__id__": 328 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 47, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -59.709, + 5, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 0.9 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 326 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "646c3b71-e143-4d0f-94e6-534c77123f6d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2fshGC/ilL+a8kGqAvaOMn", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_1", + "_objFlags": 0, + "_parent": { + "__id__": 322 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 330 + } + ], + "_prefab": { + "__id__": 331 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -145.303, + 3.661, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 329 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "01W0qWvmJM4JKa0T/TUfKT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "cost_6", + "_objFlags": 0, + "_parent": { + "__id__": 322 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 333 + } + ], + "_prefab": { + "__id__": 334 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 43, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -97.773, + 5.414, + 0, + 0, + 0, + 0, + 1, + 0.9, + 0.9, + 0.9 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 332 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7e+wAFovVLBqkC+U1KGOf/", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 322 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "979ff69f-0560-48a5-a2c2-f5e20ab99171" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 322 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 337 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 322 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "buyProduct", + "customEventData": "unlimited_health_bundle_30" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4b/sPWS6BK9bUgQHy8W50L", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "30fqx3mL9Ca5ge8/bE3jKS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 341 + } + ], + "_prefab": { + "__id__": 342 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 500, + "height": 500 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -3550.469, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 340 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2e5x9A8QFML6pW6rjKfGXH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 18 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 344 + } + ], + "_prefab": { + "__id__": 345 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 400, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -4028.521, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 343 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f6lUFFE5VOZr7YPoYnwgu9", + "sync": false + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": false, + "_layoutSize": { + "__type__": "cc.Size", + "width": 300, + "height": 200 + }, + "_resize": 0, + "_N$layoutType": 3, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$paddingLeft": 25, + "_N$paddingRight": 0, + "_N$paddingTop": 55, + "_N$paddingBottom": 0, + "_N$spacingX": 25, + "_N$spacingY": 40, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0, + "_N$affectedByScale": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7bpN5qjjpDYqndxZBdfWFN", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "alignMode": 0, + "_target": null, + "_alignFlags": 37, + "_left": 1068, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 12, + "_originalHeight": 237, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9aNMp065ZLTryhmf8DtMA1", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "alignMode": 1, + "_target": { + "__id__": 1 + }, + "_alignFlags": 1, + "_left": 0, + "_right": 0, + "_top": 653.258, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3aLsaRTllN04hhnLouRCo2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Top", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 353 + }, + { + "__id__": 357 + }, + { + "__id__": 361 + }, + { + "__id__": 364 + }, + { + "__id__": 367 + }, + { + "__id__": 404 + }, + { + "__id__": 417 + } + ], + "_active": true, + "_components": [ + { + "__id__": 423 + } + ], + "_prefab": { + "__id__": 424 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 619.388, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "shop_1", + "_objFlags": 0, + "_parent": { + "__id__": 352 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 354 + }, + { + "__id__": 355 + } + ], + "_prefab": { + "__id__": 356 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 436 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 31.149999999999977, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 353 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "11bc6aa1-f82e-42c0-8581-7cc70ba6cde0" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 353 + }, + "_enabled": true, + "alignMode": 1, + "_target": { + "__id__": 1 + }, + "_alignFlags": 1, + "_left": 0, + "_right": 0, + "_top": 91.46199999999993, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "91FPh7kZtC+51mI5KXRts7", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shop_1", + "_objFlags": 0, + "_parent": { + "__id__": 352 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 358 + }, + { + "__id__": 359 + } + ], + "_prefab": { + "__id__": 360 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 436 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 461.72500000000025, + 0, + 0, + 0, + 0, + 1, + 1, + -1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 357 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "11bc6aa1-f82e-42c0-8581-7cc70ba6cde0" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 357 + }, + "_enabled": true, + "alignMode": 1, + "_target": { + "__id__": 1 + }, + "_alignFlags": 1, + "_left": 0, + "_right": 0, + "_top": -339.11300000000017, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c2W8O2LhdN2Yt3Y+q1zlF1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 352 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 362 + } + ], + "_prefab": { + "__id__": 363 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 155, + "height": 155 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -412.791, + 20.812, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0.15 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 361 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "f9022ff6-96af-4763-abe4-c047e8ef4a41" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "06RywdDWBOjpb84cEqmYcc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tx", + "_objFlags": 0, + "_parent": { + "__id__": 352 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 365 + } + ], + "_prefab": { + "__id__": 366 + }, + "_opacity": 0, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 188, + "height": 198 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -412.791, + 15.964, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 364 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2b141f2-de71-4481-b9ee-440c893c28b3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a5A/o3AFBDzKqB/S9rvtZ/", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Stamina", + "_objFlags": 0, + "_parent": { + "__id__": 352 + }, + "_children": [ + { + "__id__": 368 + }, + { + "__id__": 371 + }, + { + "__id__": 374 + }, + { + "__id__": 377 + }, + { + "__id__": 380 + }, + { + "__id__": 382 + }, + { + "__id__": 385 + } + ], + "_active": true, + "_components": [ + { + "__id__": 401 + } + ], + "_prefab": { + "__id__": 403 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 350, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -81.953, + 71.066, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 369 + } + ], + "_prefab": { + "__id__": 370 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 312, + "height": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 9.514, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 368 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2262cdce-7a64-4513-afad-1298607c61e3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19Vagxn5RESbaZv3yl2LEb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 372 + } + ], + "_prefab": { + "__id__": 373 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -135.44, + -1.322, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 371 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "8470837f-e899-445f-b74c-ef594b344817" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b2lfcyQ49EB7t79ZeIBCne", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 375 + } + ], + "_prefab": { + "__id__": 376 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 147.114, + 0.31, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 374 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d13e982d-fed1-454a-b4c4-c92e5bbdfd2d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5jBvL+phOkJwx6KQi0Oho", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "man", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 378 + } + ], + "_prefab": { + "__id__": 379 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 5.66, + 0.13, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 377 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "0236e978-b4c6-4b4f-93f2-11259ce9daf8" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3g30jWINCaJkprI0sP21F", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "health", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 381 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -137.832, + -1, + 0, + 0, + 0, + 0, + 1, + 0.3, + 0.3, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ad9H+uSf9EXYyx1W0pDOC2", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "time", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 383 + } + ], + "_prefab": { + "__id__": 384 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 109, + "g": 70, + "b": 70, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 102.3, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 13, + -4.433, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 382 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "00:00", + "_N$string": "00:00", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d5cavi+kVIiZHGn7Ckkr5o", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "skyLine", + "_objFlags": 0, + "_parent": { + "__id__": 367 + }, + "_children": [ + { + "__id__": 386 + }, + { + "__id__": 389 + }, + { + "__id__": 392 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 400 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -26.639, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 385 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 387 + } + ], + "_prefab": { + "__id__": 388 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 137, + "height": 121 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -108.391, + 2.125, + 0, + 0, + 0, + 0, + 1, + 0.6, + 0.6, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 386 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "591a3b58-c345-4c24-84a2-f4faa8acdda1" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5at9IatdBBgpYCZhSoSlAQ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "skyTime", + "_objFlags": 0, + "_parent": { + "__id__": 385 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 390 + } + ], + "_prefab": { + "__id__": 391 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 126, + "b": 81, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 49.539, + -4.433, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 389 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "29+OLQnudI2bUgz/pFWYlB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "up", + "_objFlags": 0, + "_parent": { + "__id__": 385 + }, + "_children": [ + { + "__id__": 393 + }, + { + "__id__": 396 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 399 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "tili", + "_objFlags": 0, + "_parent": { + "__id__": 392 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 394 + } + ], + "_prefab": { + "__id__": 395 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 440, + "height": 121.77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 21.818, + 2.567, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 393 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "0dec3546-fb91-46f1-8ef8-9689b3f561db" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d2ezlI9ypFfpchTR3uvX6w", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "light", + "_objFlags": 0, + "_parent": { + "__id__": 392 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 397 + } + ], + "_prefab": { + "__id__": 398 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 440, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 21.818, + 2.567, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 396 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "animation", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "a1baaeba-23ec-42c0-ad56-f76655ebcb96" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9bkTsfi5pIsKPM6udZjbM/", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "03fvuZPHJNyYJFgiWzZrdA", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "99Qke0LOtIP43ilvkIL17W", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 367 + }, + "_enabled": false, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 402 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": null, + "component": "", + "_componentId": "1dc93b4fehOrpGgTkihBH4g", + "handler": "openStamina", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "85ac4ottRF5ZtnPpf+rdij", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Coin", + "_objFlags": 0, + "_parent": { + "__id__": 352 + }, + "_children": [ + { + "__id__": 405 + }, + { + "__id__": 408 + }, + { + "__id__": 411 + }, + { + "__id__": 414 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 416 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 350, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 304.668, + 71.066, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 404 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 406 + } + ], + "_prefab": { + "__id__": 407 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 312, + "height": 62 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 405 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "2262cdce-7a64-4513-afad-1298607c61e3" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "46VBB8DqVOCYvDI0hpWnhL", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 404 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 409 + } + ], + "_prefab": { + "__id__": 410 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 86, + "height": 98 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -120.21, + -1.322, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 408 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5b277947-e27a-4670-9186-88a1175375ce" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f3Mq/ajaNOT7gWBBs0mQFE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 404 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 412 + } + ], + "_prefab": { + "__id__": 413 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 147.114, + 0.31, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 411 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d13e982d-fed1-454a-b4c4-c92e5bbdfd2d" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "d2adfa00-68ea-4d63-97a0-44fca153a2d7" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "12vK+mfsRIUZNjZ0bz1Wmx", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Coin", + "_objFlags": 0, + "_parent": { + "__id__": 404 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 415 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 35.399, + 1.584, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "abaidugJ1M1Jyqc7VJZvnF", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ad6SLGWm5IHKfZs3S5aS6p", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "btn1", + "_objFlags": 0, + "_parent": { + "__id__": 352 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 418 + }, + { + "__id__": 419 + }, + { + "__id__": 420 + } + ], + "_prefab": { + "__id__": 422 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 96, + "height": 102 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 447.208, + -108.50999999999999, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 417 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "225f5c55-2992-4244-88ee-d6186f8099ec" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275" + }, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 417 + }, + "_enabled": true, + "alignMode": 1, + "_target": { + "__id__": 1 + }, + "_alignFlags": 1, + "_left": 0, + "_right": 24.363999999999976, + "_top": 398.12199999999996, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 417 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 421 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 417 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "closeShop", + "customEventData": "exit" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e6/Gg5UhNAkoUU5TcXcEec", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 352 + }, + "_enabled": true, + "alignMode": 1, + "_target": { + "__id__": 1 + }, + "_alignFlags": 1, + "_left": 0, + "_right": 0, + "_top": 340.61199999999997, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5881p4DhA2o2G5SieRWXh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "feijinbi", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 426 + } + ], + "_prefab": { + "__id__": 427 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1574.25, + "height": 791.17 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 39.031, + -94.499, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 425 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "feijinbi", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": false, + "premultipliedAlpha": false, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "feijinbi", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "6e4dbe22-e1d1-48f1-af36-a0dca5c602da" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d36at0pq1IM6stLlGvXvPb", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Button", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 429 + } + ], + "_active": false, + "_components": [ + { + "__id__": 433 + } + ], + "_prefab": { + "__id__": 435 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -10.715, + -878.64, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Background", + "_objFlags": 512, + "_parent": { + "__id__": 428 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 430 + }, + { + "__id__": 431 + } + ], + "_prefab": { + "__id__": 432 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 429 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5b277947-e27a-4670-9186-88a1175375ce" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "98eb2872-691f-4fc7-b827-c7f6dd98d242" + }, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 429 + }, + "_enabled": true, + "alignMode": 0, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": -30, + "_bottom": -30, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 40, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "63SxiWro5NXqc3n9DjatiJ", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 428 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 434 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "_N$pressedSprite": { + "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a" + }, + "pressedSprite": { + "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a" + }, + "_N$hoverSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "hoverSprite": { + "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952" + }, + "_N$disabledSprite": { + "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e" + }, + "_N$target": { + "__id__": 429 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "playCoinAnim", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "66oM+CvTZBh6i/lRCAsoRc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "Loading", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 437 + }, + { + "__id__": 441 + }, + { + "__id__": 444 + } + ], + "_active": false, + "_components": [ + { + "__id__": 447 + } + ], + "_prefab": { + "__id__": 448 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 436 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 438 + }, + { + "__id__": 439 + } + ], + "_prefab": { + "__id__": 440 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 437 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 437 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "load", + "_objFlags": 0, + "_parent": { + "__id__": 436 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 442 + } + ], + "_prefab": { + "__id__": 443 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 689, + "height": 656 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 441 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "794efc8c-624c-469f-84c0-24ce84022c54" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e0njfM7epDhL+otsGYSeCR", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 436 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 445 + } + ], + "_prefab": { + "__id__": 446 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 135, + "height": 56.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 444 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "请稍后", + "_N$string": "请稍后", + "_fontSize": 45, + "_lineHeight": 45, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 436 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b50PfruR5P1axiaB0Q563i", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "ConfirmBox", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 450 + }, + { + "__id__": 454 + }, + { + "__id__": 457 + }, + { + "__id__": 460 + }, + { + "__id__": 463 + } + ], + "_active": false, + "_components": [ + { + "__id__": 471 + } + ], + "_prefab": { + "__id__": 472 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 449 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 451 + }, + { + "__id__": 452 + } + ], + "_prefab": { + "__id__": 453 + }, + "_opacity": 120, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 3000, + "height": 3000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 450 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 450 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 449 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "47UiHH16RKK6j+4cK469um", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "_parent": { + "__id__": 449 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 455 + } + ], + "_prefab": { + "__id__": 456 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 994, + "height": 1462 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.5, + 0.5, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 454 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "71f0494c-f638-4d7a-a826-a9407bf2b27c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 449 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "eeHwB6Bq5CSbRJy0kYMgo0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "_parent": { + "__id__": 449 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 458 + } + ], + "_prefab": { + "__id__": 459 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 330.904, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 457 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "商城充值", + "_N$string": "商城充值", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 449 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "fa+8dDqrdLTrl/Ji8K9LMX", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 449 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 461 + } + ], + "_prefab": { + "__id__": 462 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 320, + "height": 195.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 89.865, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 460 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "网络异常\n请重新登录小游戏\n领取充值奖励", + "_N$string": "网络异常\n请重新登录小游戏\n领取充值奖励", + "_fontSize": 40, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 449 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "9149ix6q1AZ4VyIjmSGbdM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 449 + }, + "_children": [ + { + "__id__": 464 + } + ], + "_active": true, + "_components": [ + { + "__id__": 467 + }, + { + "__id__": 468 + } + ], + "_prefab": { + "__id__": 470 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 519, + "height": 168 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -3.21, + -77.027, + 0, + 0, + 0, + 0, + 1, + 0.4, + 0.4, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Label", + "_objFlags": 0, + "_parent": { + "__id__": 463 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 465 + } + ], + "_prefab": { + "__id__": 466 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 100.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 13.174, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 464 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "确定", + "_N$string": "确定", + "_fontSize": 80, + "_lineHeight": 80, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 449 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "1f0NO1uLNIxrx1dYb9rOaL", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 463 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d9be6eea-569b-46da-bb80-0d9c8b8f5263" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 463 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 469 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 463 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "48bfeZuYFZE2qmgxbW2IigB", + "handler": "closeConfirmBox", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 449 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "58sKElg7lE9I935Fpq7n8Y", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 449 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 449 + }, + "asset": { + "__uuid__": "9fdc6671-8422-410b-b9af-36dab20f1488" + }, + "fileId": "0bIt32pkVJWp47546cV3sp", + "sync": false + }, + { + "__type__": "48bfeZuYFZE2qmgxbW2IigB", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "shop": { + "__id__": 1 + }, + "itemList": { + "__id__": 18 + }, + "coin": { + "__id__": 414 + }, + "Stamina": { + "__id__": 367 + }, + "monthCardTime": { + "__id__": 28 + }, + "ui": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "coinAnim": { + "__id__": 425 + }, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1080, + "_originalHeight": 1920, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/prefab/shop.prefab.meta b/assets/shop/prefab/shop.prefab.meta new file mode 100644 index 0000000..6115f2e --- /dev/null +++ b/assets/shop/prefab/shop.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "b01ef5c5-2755-455d-acb4-ba3818f5e331", + "importer": "prefab", + "optimizationPolicy": "MULTI_INSTANCE", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/script.meta b/assets/shop/script.meta new file mode 100644 index 0000000..ab6b940 --- /dev/null +++ b/assets/shop/script.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "c35d8611-3d61-4523-8ec7-3e961e2c46ab", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/script/item.ts b/assets/shop/script/item.ts new file mode 100644 index 0000000..8a5844d --- /dev/null +++ b/assets/shop/script/item.ts @@ -0,0 +1,33 @@ + + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + + @property(cc.Label) + label: cc.Label = null; + + @property + text: string = 'hello'; + // LIFE-CYCLE CALLBACKS: + + // onLoad () {} + + start() { + + } + + //购买商品道具 + buyProp(propName) { + // if(cc.fx.GameConfig.GM_INFO.coin < 1500){ + // MiniGameSdk.API.showToast("金币不足,无法购买道具"); + // return; + // } + // let propWindow = this.node.parent.parent.getChildByName("propWindow"); + // propWindow.active = false; + // cc.fx.GameConfig.GM_INFO.coin -= 1500; + } + + // update (dt) {} +} diff --git a/assets/shop/script/item.ts.meta b/assets/shop/script/item.ts.meta new file mode 100644 index 0000000..cd926ec --- /dev/null +++ b/assets/shop/script/item.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "de906884-fc75-47a4-8e95-3bb20cbca688", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/script/shop.ts b/assets/shop/script/shop.ts new file mode 100644 index 0000000..b5b30f4 --- /dev/null +++ b/assets/shop/script/shop.ts @@ -0,0 +1,780 @@ +import JiaZai from "../../Script/JiaZai"; +import MapConroler from "../../Script/Map"; +import Utils from "../../Script/module/Pay/Utils"; +import List from "../../Script/module/RankList/List"; +import NumberToImage from "../../Script/NumberToImage"; +import SceneManager from "../../Script/SceneManager"; +import { MiniGameSdk } from "../../Script/Sdk/MiniGameSdk"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class NewClass extends cc.Component { + //商店界面 + @property(cc.Node) + shop: cc.Node = null; + //商品列表 + @property(cc.Node) + itemList: cc.Node = null; + + //金币数量 + @property(cc.Node) + coin: cc.Node = null; + //体力信息 + @property(cc.Node) + Stamina: cc.Node = null; + //月卡信息 + @property(cc.Node) + monthCardTime: cc.Node = null; + + @property(cc.SpriteAtlas) + ui: cc.SpriteAtlas = null; + + btn_Touch: boolean = true; + private onShowListener: () => void; + private scheduleCallback: Function = null; + private currentCoin: number = 0; + private coinAnimTime: number = 0; + private coinAnimDuration: number = 1.5; // 1.5秒 + private coinStart: number = 0; + private coinEnd: number = 0; + private coinAnimating: boolean = false; + //飞金币动画 + @property(cc.Node) + coinAnim: cc.Node = null; + private buy: boolean = false; + + private iosPrice: number = 0; + private iosProductId: string = ""; + private iosCount: number = 1; + scheduleCallback3: any; + scheduleCallback2: Function; + reward: boolean = false; + private monthCard: boolean = false; + + + onLoad() { + this.btn_Touch = true; + this.monthCard = false; + // 检测微信小游戏切到后台 + + } + start() { + this.btn_Touch = true; + this.openShop(); + } + + init() { + + let top = this.node.getChildByName("Top"); + top.getChildByName("tx").opacity = 0; + top.getChildByName("icon").opacity = 0; + if (cc.fx.GameConfig.GM_INFO.useravatarIcon.length > 10) { + console.log("获取头像链接:", cc.fx.GameConfig.GM_INFO.useravatarIcon); + cc.assetManager.loadRemote(cc.fx.GameConfig.GM_INFO.useravatarIcon, { ext: '.png' }, (err, texture: cc.Texture2D) => { + if (texture) { + top.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture); + } + top.getChildByName("icon").opacity = 255; + }) + } else { + top.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(cc.fx.GameConfig.GM_INFO.useravatarIcon); + top.getChildByName("icon").opacity = 255; + } + + top.getChildByName("tx").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(cc.fx.GameConfig.GM_INFO.useravaterkuang); + top.getChildByName("tx").opacity = 255; + + let flag = cc.fx.GameTool.getSetScreenResolutionFlag(); + if (flag) { + console.log("shop设置分辨率"); + if (this.node.getChildByName("itemcontent")) + this.node.getChildByName("itemcontent").getChildByName("view").height = 1500; + } + this.onShowListener = null; + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + // 定义监听函数 + console.log("shop添加监听"); + this.onShowListener = () => { + console.log("回到前台,shop"); + this.onShow(); + }; + //@ts-ignore + wx.onShow(this.onShowListener); + } + this.btn_Touch = true; + var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + // 同步显示 + // if (this.Stamina && this.Stamina.getChildByName("time")) { + // this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp; + // } + this.stopTimeCutDown(); + this.stopPowerTime(); + this.updatePower(); + this.setHealthInfo(true); + this.updateIcon(); + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + } + //打开商店界面 + openShop() { + Utils.outTradeNo = null; + // 商品数据数组 + const products = [ + { product_id: "gold_1", price: 600, coin: 1200, title: "3x2六档金币" }, + { product_id: "gold_1", price: 600, coin: 1200, title: "3x2六档金币" }, + { product_id: "gold_2", price: 3600, coin: 8000, title: "" }, + { product_id: "gold_3", price: 6800, coin: 16000, title: "" }, + { product_id: "gold_4", price: 12800, coin: 32000, title: "" }, + { product_id: "gold_5", price: 32800, coin: 100000, title: "" }, + { product_id: "gold_6", price: 64800, coin: 240000, title: "" }, + ]; + for (let i = 2; i <= 7 && i < this.itemList.children.length; i++) { + const spriteComp = this.itemList.children[i].children[0].getComponent(cc.Sprite); + const price = this.itemList.children[i].children[1]; + const title = this.itemList.children[i].children[2]; + const product = products[i - 1]; + + if (spriteComp && product) { + // TODO: 根据 product_id 或 name 设置 spriteComp.spriteFrame + } + + + if (price && product) { + NumberToImage.numberToImageNodes(product.price / 100, 35, 20, "cost_", price, false) + } + if (title && product) { + NumberToImage.numberToImageNodes(product.coin, 40, 25, "scoin_", title, true) + } + } + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + this.updateIcon(); + } + + + + startCoinAnim(target: number) { + if (this.coinAnimating && this.coinEnd === target) return; + this.coinStart = this.currentCoin; + this.coinEnd = target; + this.coinAnimTime = 0; + this.coinAnimating = true; + } + //优化 + protected update(dt: number): void { + if (this.coin && this.coinAnimating) { + this.coinAnimTime += dt; + let t = this.coinAnimTime / this.coinAnimDuration; + if (t >= 1) { + this.currentCoin = this.coinEnd; + this.coinAnimating = false; + NumberToImage.numberToImageNodes(this.currentCoin, 30, 15, "coin_", this.coin, true); + } else { + this.currentCoin = Math.floor(this.coinStart + (this.coinEnd - this.coinStart) * t); + NumberToImage.numberToImageNodes(this.currentCoin, 30, 15, "coin_", this.coin, true); + } + } + } + + playCoinAnim(target?: number) { + this.coinAnim.active = true; + this.coinAnim.getComponent(sp.Skeleton).setAnimation(0, "feijinbi", false); + // 监听动画完成事件 + this.coinAnim.getComponent(sp.Skeleton).setCompleteListener(() => { + // 动画播放完成后销毁节点 + this.coinAnim.active = false; + }); + this.startCoinAnim(5000); + } + //关闭商店界面 + closeShop(data, currentCoin) { + // 移除 wx.onShow 监听器 + if (cc.sys.platform === cc.sys.WECHAT_GAME && this.onShowListener) { + console.log("shop移除onshow"); + console.log(currentCoin); + //@ts-ignore + wx.offShow(this.onShowListener); + } + Utils.outTradeNo = null; + //销毁预制体 + if (this.node.parent.getComponent("JiaZai")) { + this.node.parent.getComponent("JiaZai").closeShop(); + } + else if (this.node.parent.getComponent("SceneManager")) { + this.node.parent.getComponent("SceneManager").closeShop(); + } + // this.shop.destroy(); + if (this.reward) { + this.reward = false; + const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点 + if (winCOIN) { + const wincoin1 = winCOIN.getComponent(JiaZai); + if (wincoin1) { + if (wincoin1) { + wincoin1.onGames(); + wincoin1.rewarded(); + } + } + } + } + } + + onShow() { + console.log("从后台进入前台 onShow"); + const systemInfo = wx.getSystemInfoSync(); + if (systemInfo.platform === 'ios') { + if (cc.sys.platform === cc.sys.WECHAT_GAME) { + console.log("从后台进入前台订单号:", cc.fx.GameConfig.GM_INFO.iosShopOrder); + if (cc.fx.GameConfig.GM_INFO.iosShopOrder != null && cc.fx.GameConfig.GM_INFO.iosShopOrder != "") { + console.log("有苹果订单号,开始轮训"); + const iosShopOrder = cc.fx.GameConfig.GM_INFO.iosShopOrder; + // this.closeLoad(); + // this.openLoad(); + this.btn_Touch = true; + + Utils.getIosPayInfo(iosShopOrder, + (data) => { + console.log("商城获得轮训结果:", data); + const iosID = data.data?.payment_name || this.iosProductId; + let iosAmount = data.data?.goodsPrice || this.iosPrice; + iosAmount = parseInt(iosAmount); + if (iosID == "reborn_Gift" || iosID == "month_Card" || iosID == "starter_pack") { + console.log("商城检测到是月卡返回"); + return; + } + if (data.code == 1) { + console.log("购买成功"); + console.log("商品id:", iosID); + // const dataSuccess = { + // outTradeNo: iosShopOrder, + // pay_amount: iosAmount, + // payment_name: iosID, + // payment_num: this.iosCount, + // type: "ios", + // } + // cc.fx.GameTool.shushu_Track("payment", dataSuccess); + let name = "购买金币道具:" + iosID; + MiniGameSdk.API.yinli_Pay(iosAmount, iosShopOrder, name) + + console.log("_________正式发货", iosID); + MiniGameSdk.API.showToast("充值成功"); + cc.fx.GameTool.shopBuy(iosID, false); + if (iosID == "unlimited_health_bundle_10" || + iosID == "unlimited_health_bundle_20" || + iosID == "unlimited_health_bundle_30" + ) { + this.updatePower(); + } + cc.fx.GameConfig.GM_INFO.iosShopOrder = null; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + else if (this.node.parent.getComponent("SceneManager")) { + this.node.parent.getComponent("SceneManager").updateCoin(); + } + this.closeLoad(); + this.btn_Touch = true; + //console.log("充值成功获得金币"); + } + else if (data.code == 0) { + console.log("用户自己取消充值"); + MiniGameSdk.API.showToast("充值失败"); + this.closeLoad(); + this.btn_Touch = true; + const dataFail = { + outTradeNo: iosShopOrder, + pay_amount: iosAmount, + payment_name: iosID, + payment_num: this.iosCount, + type: "ios", + fail_reason: "用户取消充值", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + cc.fx.GameConfig.GM_INFO.iosShopOrder = null; + } + else if (data.code == 2) { + this.closeLoad(); + this.btn_Touch = true; + console.log("轮训超时"); + MiniGameSdk.API.showToast("请检查网络,如充值成功,请重新登录领取", 4); + const dataFail = { + outTradeNo: iosShopOrder, + pay_amount: iosAmount, + payment_name: iosID, + payment_num: this.iosCount, + type: "ios", + fail_reason: "用户充值后,轮训结果超时", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.openConfirmBox(); + } + }) + } + else { + this.closeLoad(); + } + } + } + + + } + + openLoad() { + this.node.getChildByName("Loading").active = true; + this.node.getChildByName("Loading").getChildByName("load").stopAllActions(); + this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever()); + } + + closeLoad() { + this.node.getChildByName("Loading").active = false; + } + + setHealthInfo(type) { + if (cc.fx.GameConfig.GM_INFO.hp >= cc.fx.GameConfig.GM_INFO.hp_Max) { + this.Stamina.getChildByName("man").active = true; + this.Stamina.getChildByName("health").active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 25, 15, "hp_", this.Stamina.getChildByName("health"), false); + this.Stamina.getChildByName("time").active = false; + } + else { + const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点 + if (winCOIN) { + const wincoin = winCOIN.getComponent(SceneManager); + if (wincoin) { + MapConroler._instance.setPropNum(); + console.log("局内"); + cc.fx.GameTool.getHealth((data) => { + this.Stamina.getChildByName("time").active = true; + if (cc.fx.GameConfig.GM_INFO.min_Time != 0) { + let time = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + this.Stamina.getChildByName("time").getComponent(cc.Label).string = time; + let power = cc.fx.GameTool.getUserPowerTime(); + if (!power) this.Stamina.getChildByName("time").opacity = 255; + else this.Stamina.getChildByName("time").opacity = 0; + this.stopTimeCutDown(); + this.startTimeCutDown(); + } + }); + } else { + this.Stamina.getChildByName("time").active = true; + if (cc.fx.GameConfig.GM_INFO.min_Time != 0) { + let time = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + this.Stamina.getChildByName("time").getComponent(cc.Label).string = time; + let power = cc.fx.GameTool.getUserPowerTime(); + if (!power) this.Stamina.getChildByName("time").opacity = 255; + else this.Stamina.getChildByName("time").opacity = 0; + this.stopTimeCutDown(); + this.startTimeCutDown(); + } + } + } + + this.Stamina.getChildByName("man").active = false; + this.Stamina.getChildByName("health").active = true; + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 25, 15, "hp_", this.Stamina.getChildByName("health"), false); + + } + } + + startTimeCutDown() { + this.stopTimeCutDown(); + if (this.scheduleCallback3) { + this.unschedule(this.scheduleCallback3); + } + this.scheduleCallback3 = function () { + if (this.pause) return; + if (cc.fx.GameConfig.GM_INFO.min_Time <= 0) { + this.stopTimeCutDown(); + var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + // 同步显示 + if (this.Stamina && this.Stamina.getChildByName("time")) { + this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp; + } + MiniGameSdk.API.showToast("恢复一点滴点体力"); + cc.fx.GameTool.setUserHealth(1, (data) => { + cc.fx.GameTool.getHealth(null); + this.setHealthInfo(true); + }, true) + } + else { + if (this.node.parent.getComponent("JiaZai")) { + } + else cc.fx.GameConfig.GM_INFO.min_Time -= 1; + var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time); + // 同步显示 + if (this.Stamina && this.Stamina.getChildByName("time")) { + let power = cc.fx.GameTool.getUserPowerTime(); + if (!power) this.Stamina.getChildByName("time").opacity = 255; + else this.Stamina.getChildByName("time").opacity = 0; + this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp; + } + } + }.bind(this); + this.schedule(this.scheduleCallback3, 1); + } + + // 停止倒计时 + stopTimeCutDown() { + if (this.scheduleCallback3) { + this.unschedule(this.scheduleCallback3); + this.scheduleCallback3 = null; + } + } + + //点击充值购买 + + buyProduct(event, customData) { + if (!this.btn_Touch) { + return; + } + this.btn_Touch = false; + const productId = customData; + let id = "10011"; + let price = 100; + let count = 1; + id = productId; + console.log("购买商品id:", productId); + switch (productId) { + case "gold_1": + price = 600; + break; + case "gold_2": + price = 3600; + break; + case "gold_3": + price = 6800; + break; + case "gold_4": + price = 12800; + break; + case "gold_5": + price = 32800; + break; + case "gold_6": + price = 64800; + break; + case "unlimited_health_bundle_10": + price = 1000; + break; + case "unlimited_health_bundle_20": + price = 2000; + break; + case "unlimited_health_bundle_30": + price = 3000; + break; + case "month_Card": + price = 3000; + break; + } + //console.log("获得商品id:", id, count, price); + // 判断设备系统 + let systemType = "Android"; + try { + //@ts-ignore + const systemInfo = wx.getSystemInfoSync(); + if (systemInfo.platform === 'ios') { + systemType = "ios"; + } + } catch (e) { + console.error('获取系统信息失败', e); + } + + if (systemType == "ios") { + // MiniGameSdk.API.showToast("IOS系统暂不支持支付"); + // this.btn_Touch = true; + this.openLoad(); + this.btn_Touch = true; + let iosPayInfo = { + price: price, + payment_name: productId, + payment_count: 1, + } + this.iosPrice = price; + this.iosProductId = productId; + this.iosCount = 1; + console.log("准备跳客服回话:"); + console.log(this.iosProductId); + Utils.GoKEFu(iosPayInfo, (res) => { + if (res == "success") { + console.log("客服回话成功"); + } + else { + console.log("客服回话失败"); + this.closeLoad(); + } + }); + } + else { + // MiniGameSdk.API.showToast("充值成功"); + // cc.fx.GameTool.shopBuy(productId, false); + // setTimeout(() => { + // if (productId == "unlimited_health_bundle_10" || + // productId == "unlimited_health_bundle_20" || + // productId == "unlimited_health_bundle_30" + // ) { + // console.log("触发————————updatePower"); + // this.updatePower(); + // } + // }, 500); + + this.openLoad(); + this.btn_Touch = true; + //console.log("7.14_____________________", "调用充值接口"); + Utils.buyProp(id, count, price, systemType, productId, (res) => { + //console.log("获得充值结果", res); + if (res == null) { + MiniGameSdk.API.showToast("充值失败"); + this.btn_Touch = true; + const dataFail = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "网络异常,没有拉起支付", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.closeLoad(); + return; + } + else if (res.err) { + MiniGameSdk.API.showToast("充值失败"); + //console.log(res); + this.btn_Touch = true; + let name = "支付拉起失败"; + if (res.errCode == -2) { + name = "用户取消充值"; + } + const dataFail = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: name, + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail); + this.closeLoad(); + return; + } + else { + Utils.getPayInfo((data) => { + // MiniGameSdk.API.showToast("充值成功"); + console.log("7.28_______________充值成功,准备轮训", data); + //console.log("获得轮训结果:", data); + this.closeLoad(); + if (data.data.pay_state == 1) { + this.btn_Touch = true; + MiniGameSdk.API.showToast("取消充值"); + const dataFail2 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "用户取消支付", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail2); + } + else if (data.data.pay_state == 2) { + this.btn_Touch = true; + // const dataSuccess = { + // outTradeNo: Utils.outTradeNo, + // pay_amount: price, + // payment_name: productId, + // payment_num: 1, + // type: systemType, + // } + // cc.fx.GameTool.shushu_Track("payment", dataSuccess); + let name = "购买金币道具:" + productId; + + MiniGameSdk.API.yinli_Pay(price, Utils.outTradeNo, name); + + + console.log("7.14_______________充值成功,轮训成功,准备发货"); + Utils.setPayInfo( + (res) => { + console.log("设置轮训结果:", res); + if (res.code === 1) { + console.log("7.14_________正式发货", Utils.outTradeNo); + MiniGameSdk.API.showToast("充值成功"); + cc.fx.GameTool.shopBuy(productId, false); + if (productId == "unlimited_health_bundle_10" || + productId == "unlimited_health_bundle_20" || + productId == "unlimited_health_bundle_30" + ) { + this.updatePower(); + } + //console.log("充值成功获得金币"); + } + else { + MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放"); + const dataFail4 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "成功付款,但是发货时请求服务器失败,充值成功未发货", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail4); + } + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + else if (this.node.parent.getComponent("SceneManager")) { + this.node.parent.getComponent("SceneManager").updateCoin(); + } + }, Utils.outTradeNo) + } + else { + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); + const dataFail3 = { + outTradeNo: Utils.outTradeNo, + pay_amount: price, + payment_name: productId, + payment_num: 1, + type: systemType, + fail_reason: "拉起支付后,付款时网络异常付款失败", + } + cc.fx.GameTool.shushu_Track("payment_fail", dataFail3); + this.btn_Touch = true; + if (this.node.parent.getComponent("JiaZai")) + this.node.parent.getComponent("JiaZai").updateCoin(); + else if (this.node.parent.getComponent("SceneManager")) { + this.node.parent.getComponent("SceneManager").updateCoin(); + } + } + }) + } + }); + } + + } + + + //无限体力刷新功能 + updatePower() { + console.log("无限体力时间戳:", cc.fx.GameConfig.GM_INFO.userPowerTime); + const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点 + if (winCOIN) { + const wincoin = winCOIN.getComponent(SceneManager); + if (wincoin) { + MapConroler._instance.setPropNum(); + console.log("局内"); + }; + } + if (cc.fx.GameConfig.GM_INFO.userPowerTime != 0) { + let nowTime = Math.floor(Date.now() / 1000); + if (cc.fx.GameConfig.GM_INFO.userPowerTime > nowTime) { + this.stopPowerTime(); + this.startPowerTime(); + console.log("还有无限体力时间_____________", (cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime)); + this.Stamina.getChildByName("skyLine").active = true; + this.Stamina.getChildByName("time").opacity = 0; + this.Stamina.getChildByName("man").active = false; + } + else { + this.Stamina.getChildByName("skyLine").active = false; + console.log("无限体力时间已过期"); + this.setHealthInfo(true); + } + } + else { + this.Stamina.getChildByName("skyLine").active = false; + this.setHealthInfo(true); + console.log("没有无限体力时间"); + } + } + + startPowerTime() { + this.stopPowerTime(); + this.scheduleCallback2 = function () { + let nowTime = Math.floor(Date.now() / 1000); + if (cc.fx.GameConfig.GM_INFO.userPowerTime < nowTime) { + this.Stamina.getChildByName("skyLine").active = false; + this.stopPowerTime(); + this.setHealthInfo(true); + return; + } + else { + this.Stamina.getChildByName("skyLine").active = true; + this.Stamina.getChildByName("time").opacity = 0; + this.Stamina.getChildByName("man").active = false; + } + let time = cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime; + if (time <= 0) { + time = 0; + this.Stamina.getChildByName("skyLine").active = false; + this.stopPowerTime(); + this.setHealthInfo(true); + var timeTemp = cc.fx.GameTool.getTimeMargin2(time); + // 同步显示 + if (this.Stamina && this.Stamina.getChildByName("skyLine").getChildByName("skyTime")) { + this.Stamina.getChildByName("skyLine").getChildByName("skyTime").getComponent(cc.Label).string = timeTemp; + } + } + else { + var timeTemp = cc.fx.GameTool.getTimeMargin2(time); + // 同步显示 + if (this.Stamina && this.Stamina.getChildByName("skyLine").getChildByName("skyTime")) { + this.Stamina.getChildByName("skyLine").getChildByName("skyTime").getComponent(cc.Label).string = timeTemp; + } + } + }.bind(this); + this.schedule(this.scheduleCallback2, 1); + } + + stopPowerTime() { + cc.fx.GameTool.getUserPowerTime(); + if (this.scheduleCallback2) { + this.unschedule(this.scheduleCallback2); + this.scheduleCallback2 = null; + } + } + openmonthCard() { + const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点 + if (winCOIN) { + const wincoin = winCOIN.getComponent(SceneManager); + if (wincoin) { + wincoin.openMonthlyCard(); + console.log("局内") + }; + const wincoin1 = winCOIN.getComponent(JiaZai); + if (wincoin1) { + if (wincoin1) { + wincoin1.openMonthlyCard(); + this.reward = true; + console.log("局外") + } + } + } + this.monthCard = true; + this.updateIcon() + } + //更新图标 + updateIcon() { + let isExpired = cc.fx.GameTool.checkExpiration(); + if (isExpired) { + this.monthCardTime.active = true; + + } else { + this.monthCardTime.active = false; + + } + NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.monthTime, 35, 15, "button_", this.monthCardTime.children[1], true); + } + + openConfirmBox() { + this.node.getChildByName("ConfirmBox").active = true; + this.closeLoad(); + } + + //关闭商城确认按钮 + closeConfirmBox() { + this.node.getChildByName("ConfirmBox").active = false; + } + + // update (dt) {} +} diff --git a/assets/shop/script/shop.ts.meta b/assets/shop/script/shop.ts.meta new file mode 100644 index 0000000..cd5ab08 --- /dev/null +++ b/assets/shop/script/shop.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "48bfe66e-6056-44da-a9a0-c5b5b6222801", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin.meta b/assets/shop/spin.meta new file mode 100644 index 0000000..0cc8a68 --- /dev/null +++ b/assets/shop/spin.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "c596f6c9-cf4e-40a2-9f18-207dee6f8bf7", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/chuizi.meta b/assets/shop/spin/chuizi.meta new file mode 100644 index 0000000..fa626fa --- /dev/null +++ b/assets/shop/spin/chuizi.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "5d6b428c-f644-41df-b3c7-2e63b9609538", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/chuizi/chuiziyanwu.atlas b/assets/shop/spin/chuizi/chuiziyanwu.atlas new file mode 100644 index 0000000..6c6e5c6 --- /dev/null +++ b/assets/shop/spin/chuizi/chuiziyanwu.atlas @@ -0,0 +1,109 @@ + +chuiziyanwu.png +size: 932,936 +format: RGBA8888 +filter: Linear,Linear +repeat: none +xulie/09 + rotate: true + xy: 476, 476 + size: 457, 451 + orig: 474, 467 + offset: 9, 8 + index: -1 +xulie/10 + rotate: true + xy: 473, 0 + size: 463, 458 + orig: 474, 467 + offset: 6, 5 + index: -1 +xulie/11 + rotate: false + xy: 0, 0 + size: 471, 464 + orig: 474, 467 + offset: 2, 2 + index: -1 +xulie/12 + rotate: false + xy: 0, 466 + size: 474, 467 + orig: 474, 467 + offset: 0, 0 + index: -1 + +chuiziyanwu2.png +size: 980,832 +format: RGBA8888 +filter: Linear,Linear +repeat: none +xulie/01 + rotate: false + xy: 854, 171 + size: 98, 96 + orig: 474, 467 + offset: 167, 171 + index: -1 +xulie/05 + rotate: true + xy: 0, 1 + size: 387, 397 + orig: 474, 467 + offset: 44, 37 + index: -1 +xulie/06 + rotate: true + xy: 445, 0 + size: 398, 406 + orig: 474, 467 + offset: 37, 32 + index: -1 +xulie/07 + rotate: false + xy: 446, 400 + size: 424, 432 + orig: 474, 467 + offset: 26, 17 + index: -1 +xulie/08 + rotate: false + xy: 0, 390 + size: 444, 442 + orig: 474, 467 + offset: 16, 11 + index: -1 +锤子 + rotate: false + xy: 854, 269 + size: 123, 129 + orig: 150, 150 + offset: 14, 11 + index: -1 + +chuiziyanwu3.png +size: 364,1004 +format: RGBA8888 +filter: Linear,Linear +repeat: none +xulie/02 + rotate: true + xy: 0, 0 + size: 297, 311 + orig: 474, 467 + offset: 92, 73 + index: -1 +xulie/03 + rotate: true + xy: 0, 299 + size: 330, 339 + orig: 474, 467 + offset: 74, 64 + index: -1 +xulie/04 + rotate: false + xy: 0, 631 + size: 364, 372 + orig: 474, 467 + offset: 57, 49 + index: -1 diff --git a/assets/shop/spin/chuizi/chuiziyanwu.atlas.meta b/assets/shop/spin/chuizi/chuiziyanwu.atlas.meta new file mode 100644 index 0000000..0f980dc --- /dev/null +++ b/assets/shop/spin/chuizi/chuiziyanwu.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "b2d4c147-42f8-40ce-b634-96ef881ccf60", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/chuizi/chuiziyanwu.json b/assets/shop/spin/chuizi/chuiziyanwu.json new file mode 100644 index 0000000..e402d5b --- /dev/null +++ b/assets/shop/spin/chuizi/chuiziyanwu.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"N5M3TikO6y39mfdROd1Vzv7jvr8","spine":"3.8.99","x":-176.53,"y":-196.29,"width":430.62,"height":373.6,"images":"","audio":""},"bones":[{"name":"root"},{"name":"chuizi","parent":"root","length":66.34,"rotation":129.94,"x":194.2,"y":-14.2},{"name":"yan","parent":"root","x":13.07,"y":-9.99}],"slots":[{"name":"微信图片_20250515154600","bone":"root"},{"name":"xulie/01","bone":"yan","attachment":"xulie/01"},{"name":"锤子","bone":"chuizi","attachment":"锤子"}],"skins":[{"name":"default","attachments":{"xulie/01":{"xulie/01":{"y":0.5,"scaleX":0.8,"scaleY":0.8,"width":474,"height":467},"xulie/02":{"y":0.5,"width":474,"height":467},"xulie/03":{"y":0.5,"width":474,"height":467},"xulie/04":{"y":0.5,"width":474,"height":467},"xulie/05":{"y":0.5,"width":474,"height":467},"xulie/06":{"y":0.5,"width":474,"height":467},"xulie/07":{"y":0.5,"width":474,"height":467},"xulie/08":{"y":0.5,"width":474,"height":467},"xulie/09":{"y":0.5,"width":474,"height":467},"xulie/10":{"y":0.5,"width":474,"height":467},"xulie/11":{"y":0.5,"width":474,"height":467},"xulie/12":{"y":0.5,"width":474,"height":467}},"锤子":{"锤子":{"x":18.03,"y":4.61,"rotation":-129.94,"width":150,"height":150}}}}],"animations":{"animation":{"slots":{"xulie/01":{"color":[{"color":"ffffff00"},{"time":0.4667,"color":"ffffff00"},{"time":0.5,"color":"ffffffff","curve":"stepped"},{"time":1.1,"color":"ffffffff"},{"time":1.4,"color":"ffffff00"}],"attachment":[{"time":0.5667,"name":"xulie/02"},{"time":0.6333,"name":"xulie/03"},{"time":0.7,"name":"xulie/04"},{"time":0.7667,"name":"xulie/05"},{"time":0.8333,"name":"xulie/06"},{"time":0.9,"name":"xulie/07"},{"time":0.9667,"name":"xulie/08"},{"time":1.0333,"name":"xulie/09"},{"time":1.1,"name":"xulie/10"},{"time":1.1667,"name":"xulie/11"},{"time":1.2333,"name":"xulie/12"}]}},"bones":{"yan":{"scale":[{"time":1.1},{"time":1.4667,"x":1.2,"y":1.2}]},"chuizi":{"rotate":[{},{"time":0.2,"angle":-37.24},{"time":0.3667,"angle":-91.22},{"time":0.4667,"angle":87.84},{"time":0.5333,"angle":75.55},{"time":0.6,"angle":87.84},{"time":0.6667,"angle":72.94},{"time":0.7333,"angle":81.23}],"translate":[{"x":116.08,"y":13.66},{"time":0.1667,"x":-47.18,"y":91.66},{"time":0.3667,"x":-163.87,"y":61.45}]}}}}} \ No newline at end of file diff --git a/assets/shop/spin/chuizi/chuiziyanwu.json.meta b/assets/shop/spin/chuizi/chuiziyanwu.json.meta new file mode 100644 index 0000000..fda6989 --- /dev/null +++ b/assets/shop/spin/chuizi/chuiziyanwu.json.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.2.5", + "uuid": "17d057a5-61c2-4d91-b0ba-aac2bc0bd485", + "importer": "spine", + "textures": [ + "f678cc9b-1bcf-4055-ae2a-93cb1e2bcd1e", + "14bff8d8-afe6-4610-965f-400d5cab7944", + "3b0ef6ea-3527-4a08-95c7-8851064c54e2" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/chuizi/chuiziyanwu.png b/assets/shop/spin/chuizi/chuiziyanwu.png new file mode 100644 index 0000000..d582869 Binary files /dev/null and b/assets/shop/spin/chuizi/chuiziyanwu.png differ diff --git a/assets/shop/spin/chuizi/chuiziyanwu.png.meta b/assets/shop/spin/chuizi/chuiziyanwu.png.meta new file mode 100644 index 0000000..e6f9ba3 --- /dev/null +++ b/assets/shop/spin/chuizi/chuiziyanwu.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "f678cc9b-1bcf-4055-ae2a-93cb1e2bcd1e", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 932, + "height": 936, + "platformSettings": {}, + "subMetas": { + "chuiziyanwu": { + "ver": "1.0.6", + "uuid": "e7ae2a01-0e46-42f7-9a7f-0559ea0ad2e9", + "importer": "sprite-frame", + "rawTextureUuid": "f678cc9b-1bcf-4055-ae2a-93cb1e2bcd1e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -0.5, + "offsetY": 1.5, + "trimX": 0, + "trimY": 0, + "width": 931, + "height": 933, + "rawWidth": 932, + "rawHeight": 936, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/chuizi/chuiziyanwu2.png b/assets/shop/spin/chuizi/chuiziyanwu2.png new file mode 100644 index 0000000..b06a1cf Binary files /dev/null and b/assets/shop/spin/chuizi/chuiziyanwu2.png differ diff --git a/assets/shop/spin/chuizi/chuiziyanwu2.png.meta b/assets/shop/spin/chuizi/chuiziyanwu2.png.meta new file mode 100644 index 0000000..b6392ad --- /dev/null +++ b/assets/shop/spin/chuizi/chuiziyanwu2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "14bff8d8-afe6-4610-965f-400d5cab7944", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 980, + "height": 832, + "platformSettings": {}, + "subMetas": { + "chuiziyanwu2": { + "ver": "1.0.6", + "uuid": "c86e27f1-a907-41c6-bf70-8591f9cd0cf1", + "importer": "sprite-frame", + "rawTextureUuid": "14bff8d8-afe6-4610-965f-400d5cab7944", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1.5, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 977, + "height": 832, + "rawWidth": 980, + "rawHeight": 832, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/chuizi/chuiziyanwu3.png b/assets/shop/spin/chuizi/chuiziyanwu3.png new file mode 100644 index 0000000..95d15bf Binary files /dev/null and b/assets/shop/spin/chuizi/chuiziyanwu3.png differ diff --git a/assets/shop/spin/chuizi/chuiziyanwu3.png.meta b/assets/shop/spin/chuizi/chuiziyanwu3.png.meta new file mode 100644 index 0000000..69c193f --- /dev/null +++ b/assets/shop/spin/chuizi/chuiziyanwu3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "3b0ef6ea-3527-4a08-95c7-8851064c54e2", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 364, + "height": 1004, + "platformSettings": {}, + "subMetas": { + "chuiziyanwu3": { + "ver": "1.0.6", + "uuid": "ae854200-91b5-4e7f-8c7d-08da08b40431", + "importer": "sprite-frame", + "rawTextureUuid": "3b0ef6ea-3527-4a08-95c7-8851064c54e2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0.5, + "trimX": 0, + "trimY": 0, + "width": 364, + "height": 1003, + "rawWidth": 364, + "rawHeight": 1004, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/dongjie.meta b/assets/shop/spin/dongjie.meta new file mode 100644 index 0000000..771740d --- /dev/null +++ b/assets/shop/spin/dongjie.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "2ed0f367-e2cc-40a0-8d17-b64fae553330", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/dongjie/dongjie.atlas b/assets/shop/spin/dongjie/dongjie.atlas new file mode 100644 index 0000000..14810d9 --- /dev/null +++ b/assets/shop/spin/dongjie/dongjie.atlas @@ -0,0 +1,468 @@ + +dongjie.png +size: 2040,1752 +format: RGBA8888 +filter: Linear,Linear +repeat: none +guang + rotate: false + xy: 0, 1194 + size: 452, 193 + orig: 476, 218 + offset: 12, 12 + index: -1 +hua/00000 + rotate: false + xy: 350, 109 + size: 348, 96 + orig: 420, 200 + offset: 28, 62 + index: -1 +hua/00001 + rotate: false + xy: 700, 107 + size: 348, 96 + orig: 420, 200 + offset: 28, 62 + index: -1 +hua/00002 + rotate: false + xy: 1406, 100 + size: 348, 96 + orig: 420, 200 + offset: 28, 62 + index: -1 +hua/00003 + rotate: false + xy: 1050, 98 + size: 348, 96 + orig: 420, 200 + offset: 28, 62 + index: -1 +hua/00004 + rotate: false + xy: 350, 9 + size: 348, 96 + orig: 420, 200 + offset: 28, 62 + index: -1 +hua/00005 + rotate: false + xy: 1400, 2 + size: 348, 96 + orig: 420, 200 + offset: 28, 62 + index: -1 +hua/00006 + rotate: false + xy: 700, 0 + size: 348, 96 + orig: 420, 200 + offset: 28, 62 + index: -1 +hua/00007 + rotate: false + xy: 0, 105 + size: 348, 100 + orig: 420, 200 + offset: 28, 58 + index: -1 +hua/00008 + rotate: false + xy: 1056, 196 + size: 348, 104 + orig: 420, 200 + offset: 28, 54 + index: -1 +hua/00009 + rotate: true + xy: 1847, 198 + size: 348, 108 + orig: 420, 200 + offset: 28, 50 + index: -1 +hua/00010 + rotate: true + xy: 1733, 198 + size: 348, 112 + orig: 420, 200 + offset: 28, 46 + index: -1 +hua/00011 + rotate: false + xy: 350, 207 + size: 348, 116 + orig: 420, 200 + offset: 28, 42 + index: -1 +hua/00012 + rotate: false + xy: 706, 205 + size: 348, 120 + orig: 420, 200 + offset: 28, 38 + index: -1 +hua/00013 + rotate: false + xy: 1383, 425 + size: 348, 121 + orig: 420, 200 + offset: 28, 37 + index: -1 +hua/00014 + rotate: false + xy: 1019, 327 + size: 348, 121 + orig: 420, 200 + offset: 28, 37 + index: -1 +hua/00015 + rotate: false + xy: 356, 325 + size: 348, 121 + orig: 420, 200 + offset: 28, 37 + index: -1 +hua/00016 + rotate: false + xy: 0, 305 + size: 348, 121 + orig: 420, 200 + offset: 28, 37 + index: -1 +hua/00017 + rotate: false + xy: 1369, 302 + size: 348, 121 + orig: 420, 200 + offset: 28, 37 + index: -1 +hua/00018 + rotate: false + xy: 0, 428 + size: 354, 121 + orig: 420, 200 + offset: 28, 37 + index: -1 +hua/00019 + rotate: false + xy: 1019, 450 + size: 362, 124 + orig: 420, 200 + offset: 28, 37 + index: -1 +hua/00020 + rotate: false + xy: 641, 448 + size: 376, 126 + orig: 420, 200 + offset: 23, 37 + index: -1 +hua/00021 + rotate: false + xy: 589, 679 + size: 382, 126 + orig: 420, 200 + offset: 19, 37 + index: -1 +hua/00022 + rotate: true + xy: 1911, 746 + size: 382, 126 + orig: 420, 200 + offset: 19, 37 + index: -1 +hua/00023 + rotate: false + xy: 973, 576 + size: 382, 126 + orig: 420, 200 + offset: 19, 37 + index: -1 +hua/00024 + rotate: false + xy: 257, 551 + size: 382, 126 + orig: 420, 200 + offset: 19, 37 + index: -1 +hua/00025 + rotate: false + xy: 1655, 548 + size: 382, 126 + orig: 420, 200 + offset: 19, 37 + index: -1 +hua/00026 + rotate: false + xy: 1655, 548 + size: 382, 126 + orig: 420, 200 + offset: 19, 37 + index: -1 +冻结序列/啊/400120_attack_hit-play_00 + rotate: false + xy: 454, 1286 + size: 143, 101 + orig: 401, 409 + offset: 130, 158 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_00 + rotate: false + xy: 454, 1286 + size: 143, 101 + orig: 401, 409 + offset: 130, 158 + index: -1 +冻结序列/啊/400120_attack_hit-play_01 + rotate: false + xy: 1311, 951 + size: 313, 220 + orig: 401, 409 + offset: 46, 99 + index: -1 +冻结序列/啊/400120_attack_hit-play_02 + rotate: false + xy: 1335, 1173 + size: 371, 260 + orig: 401, 409 + offset: 17, 79 + index: -1 +冻结序列/啊/400120_attack_hit-play_03 + rotate: false + xy: 0, 673 + size: 255, 252 + orig: 401, 409 + offset: 76, 79 + index: -1 +冻结序列/啊/400120_attack_hit-play_04 + rotate: false + xy: 893, 807 + size: 261, 257 + orig: 401, 409 + offset: 74, 76 + index: -1 +冻结序列/啊/400120_attack_hit-play_05 + rotate: false + xy: 720, 1413 + size: 333, 339 + orig: 401, 409 + offset: 34, 36 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_05 + rotate: false + xy: 720, 1413 + size: 333, 339 + orig: 401, 409 + offset: 34, 36 + index: -1 +冻结序列/啊/400120_attack_hit-play_06 + rotate: false + xy: 1335, 1435 + size: 312, 317 + orig: 401, 409 + offset: 48, 42 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_06 + rotate: false + xy: 1335, 1435 + size: 312, 317 + orig: 401, 409 + offset: 48, 42 + index: -1 +冻结序列/啊/400120_attack_hit-play_07 + rotate: false + xy: 1649, 1435 + size: 312, 317 + orig: 401, 409 + offset: 48, 42 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_07 + rotate: false + xy: 1649, 1435 + size: 312, 317 + orig: 401, 409 + offset: 48, 42 + index: -1 +冻结序列/啊/400120_attack_hit-play_08 + rotate: false + xy: 1708, 1130 + size: 309, 303 + orig: 401, 409 + offset: 48, 67 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_08 + rotate: false + xy: 1708, 1130 + size: 309, 303 + orig: 401, 409 + offset: 48, 67 + index: -1 +冻结序列/啊/400120_attack_hit-play_09 + rotate: false + xy: 720, 1108 + size: 309, 303 + orig: 401, 409 + offset: 48, 67 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_09 + rotate: false + xy: 720, 1108 + size: 309, 303 + orig: 401, 409 + offset: 48, 67 + index: -1 +冻结序列/啊/400120_attack_hit-play_10 + rotate: false + xy: 0, 927 + size: 315, 265 + orig: 401, 409 + offset: 45, 65 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_10 + rotate: false + xy: 0, 927 + size: 315, 265 + orig: 401, 409 + offset: 45, 65 + index: -1 +冻结序列/啊/400120_attack_hit-play_11 + rotate: false + xy: 317, 953 + size: 301, 239 + orig: 401, 409 + offset: 64, 97 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_11 + rotate: false + xy: 317, 953 + size: 301, 239 + orig: 401, 409 + offset: 64, 97 + index: -1 +冻结序列/啊/400120_attack_hit-play_12 + rotate: false + xy: 1626, 889 + size: 283, 239 + orig: 401, 409 + offset: 82, 97 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_12 + rotate: false + xy: 1626, 889 + size: 283, 239 + orig: 401, 409 + offset: 82, 97 + index: -1 +冻结序列/啊/400120_attack_hit-play_13 + rotate: false + xy: 1156, 704 + size: 268, 245 + orig: 401, 409 + offset: 79, 94 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_13 + rotate: false + xy: 1156, 704 + size: 268, 245 + orig: 401, 409 + offset: 79, 94 + index: -1 +冻结序列/啊/400120_attack_hit-play_14 + rotate: false + xy: 317, 706 + size: 270, 245 + orig: 401, 409 + offset: 79, 94 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_14 + rotate: false + xy: 317, 706 + size: 270, 245 + orig: 401, 409 + offset: 79, 94 + index: -1 +冻结序列/啊/400120_attack_hit-play_15 + rotate: false + xy: 620, 858 + size: 271, 248 + orig: 401, 409 + offset: 79, 92 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_15 + rotate: false + xy: 620, 858 + size: 271, 248 + orig: 401, 409 + offset: 79, 92 + index: -1 +冻结序列/啊/400120_attack_hit-play_16 + rotate: false + xy: 1426, 673 + size: 227, 214 + orig: 401, 409 + offset: 81, 127 + index: -1 +冻结序列/啊/400120_attack_hit-play_17 + rotate: false + xy: 1426, 673 + size: 227, 214 + orig: 401, 409 + offset: 81, 127 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_16 + rotate: false + xy: 1426, 673 + size: 227, 214 + orig: 401, 409 + offset: 81, 127 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_17 + rotate: false + xy: 1426, 673 + size: 227, 214 + orig: 401, 409 + offset: 81, 127 + index: -1 +冻结序列/啊/400120_attack_hit-play_18 + rotate: false + xy: 1655, 676 + size: 229, 211 + orig: 401, 409 + offset: 80, 131 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_18 + rotate: false + xy: 1655, 676 + size: 229, 211 + orig: 401, 409 + offset: 80, 131 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_01 + rotate: true + xy: 1031, 1066 + size: 313, 278 + orig: 401, 409 + offset: 46, 68 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_02 + rotate: true + xy: 1055, 1381 + size: 371, 278 + orig: 401, 409 + offset: 17, 68 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_03 + rotate: false + xy: 0, 1389 + size: 358, 363 + orig: 401, 409 + offset: 21, 24 + index: -1 +冻结序列/啊啊/400120_attack_hit-play_04 + rotate: false + xy: 360, 1389 + size: 358, 363 + orig: 401, 409 + offset: 21, 24 + index: -1 diff --git a/assets/shop/spin/dongjie/dongjie.atlas.meta b/assets/shop/spin/dongjie/dongjie.atlas.meta new file mode 100644 index 0000000..50b7cb7 --- /dev/null +++ b/assets/shop/spin/dongjie/dongjie.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "4b629e57-8271-42a0-9160-0e8623057e6b", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/dongjie/dongjie.json b/assets/shop/spin/dongjie/dongjie.json new file mode 100644 index 0000000..1ebec51 --- /dev/null +++ b/assets/shop/spin/dongjie/dongjie.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"Ss2pg0MCnnjTwZ42Ny4nhrhNuQA","spine":"3.8.99","x":-315.04,"y":-294.82,"width":641.6,"height":654.4,"images":"","audio":""},"bones":[{"name":"root"},{"name":"bone","parent":"root","x":3.1,"y":37.74},{"name":"bone2","parent":"root","x":1.74,"y":31.58},{"name":"bone3","parent":"root","x":4.96,"y":31.58,"scaleX":1.6,"scaleY":1.6},{"name":"bone4","parent":"root","x":-14.33,"y":23.22}],"slots":[{"name":"dong","bone":"bone"},{"name":"guang","bone":"bone4","attachment":"guang"},{"name":"冻结序列/啊/400120_attack_hit-play_00","bone":"bone2","attachment":"冻结序列/啊/400120_attack_hit-play_00","blend":"additive"},{"name":"冻结序列/啊啊/400120_attack_hit-play_00","bone":"bone3","attachment":"冻结序列/啊啊/400120_attack_hit-play_00","blend":"additive"}],"skins":[{"name":"default","attachments":{"dong":{"hua/00000":{"width":420,"height":200},"hua/00001":{"width":420,"height":200},"hua/00002":{"width":420,"height":200},"hua/00003":{"width":420,"height":200},"hua/00004":{"width":420,"height":200},"hua/00005":{"width":420,"height":200},"hua/00006":{"width":420,"height":200},"hua/00007":{"width":420,"height":200},"hua/00008":{"width":420,"height":200},"hua/00009":{"width":420,"height":200},"hua/00010":{"width":420,"height":200},"hua/00011":{"width":420,"height":200},"hua/00012":{"width":420,"height":200},"hua/00013":{"width":420,"height":200},"hua/00014":{"width":420,"height":200},"hua/00015":{"width":420,"height":200},"hua/00016":{"width":420,"height":200},"hua/00017":{"width":420,"height":200},"hua/00018":{"width":420,"height":200},"hua/00019":{"width":420,"height":200},"hua/00020":{"width":420,"height":200},"hua/00021":{"width":420,"height":200},"hua/00022":{"width":420,"height":200},"hua/00023":{"width":420,"height":200},"hua/00024":{"width":420,"height":200},"hua/00025":{"width":420,"height":200},"hua/00026":{"width":420,"height":200}},"guang":{"guang":{"x":-2.76,"width":476,"height":218}},"冻结序列/啊/400120_attack_hit-play_00":{"冻结序列/啊/400120_attack_hit-play_00":{"x":0.5,"y":0.5,"scaleX":1.4,"scaleY":1.2,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_01":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_02":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_03":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_04":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_05":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_06":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_07":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_08":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_09":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_10":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_11":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_12":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_13":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_14":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_15":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_16":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_17":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊/400120_attack_hit-play_18":{"x":0.5,"y":0.5,"width":401,"height":409}},"冻结序列/啊啊/400120_attack_hit-play_00":{"冻结序列/啊啊/400120_attack_hit-play_00":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_01":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_02":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_03":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_04":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_05":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_06":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_07":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_08":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_09":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_10":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_11":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_12":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_13":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_14":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_15":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_16":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_17":{"x":0.5,"y":0.5,"width":401,"height":409},"冻结序列/啊啊/400120_attack_hit-play_18":{"x":0.5,"y":0.5,"width":401,"height":409}}}}],"animations":{"animation":{"slots":{"dong":{"attachment":[{"name":"hua/00000"},{"time":0.0333,"name":"hua/00001"},{"time":0.0667,"name":"hua/00002"},{"time":0.1,"name":"hua/00003"},{"time":0.1333,"name":"hua/00004"},{"time":0.1667,"name":"hua/00005"},{"time":0.2,"name":"hua/00006"},{"time":0.2333,"name":"hua/00007"},{"time":0.2667,"name":"hua/00008"},{"time":0.3,"name":"hua/00009"},{"time":0.3333,"name":"hua/00010"},{"time":0.3667,"name":"hua/00011"},{"time":0.4,"name":"hua/00012"},{"time":0.4333,"name":"hua/00013"},{"time":0.4667,"name":"hua/00014"},{"time":0.5,"name":"hua/00015"},{"time":0.5333,"name":"hua/00016"},{"time":0.5667,"name":"hua/00017"},{"time":0.6,"name":"hua/00018"},{"time":0.6333,"name":"hua/00019"},{"time":0.6667,"name":"hua/00020"},{"time":0.7,"name":"hua/00021"},{"time":0.7333,"name":"hua/00022"},{"time":0.7667,"name":"hua/00023"},{"time":0.8,"name":"hua/00024"},{"time":0.8333,"name":"hua/00025"},{"time":0.8667,"name":"hua/00026"}]},"guang":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.8,"color":"ffffff00"},{"time":0.9333,"color":"ffffffff"},{"time":1.0667,"color":"ffffff00"}]},"冻结序列/啊/400120_attack_hit-play_00":{"color":[{"time":1.2,"color":"ffffffff"},{"time":1.2333,"color":"ffffff00"}],"attachment":[{"name":"冻结序列/啊/400120_attack_hit-play_18"},{"time":0.0667,"name":"冻结序列/啊/400120_attack_hit-play_17"},{"time":0.1333,"name":"冻结序列/啊/400120_attack_hit-play_16"},{"time":0.2,"name":"冻结序列/啊/400120_attack_hit-play_15"},{"time":0.2667,"name":"冻结序列/啊/400120_attack_hit-play_14"},{"time":0.3333,"name":"冻结序列/啊/400120_attack_hit-play_13"},{"time":0.4,"name":"冻结序列/啊/400120_attack_hit-play_12"},{"time":0.4667,"name":"冻结序列/啊/400120_attack_hit-play_11"},{"time":0.5333,"name":"冻结序列/啊/400120_attack_hit-play_10"},{"time":0.6,"name":"冻结序列/啊/400120_attack_hit-play_09"},{"time":0.6667,"name":"冻结序列/啊/400120_attack_hit-play_08"},{"time":0.7333,"name":"冻结序列/啊/400120_attack_hit-play_07"},{"time":0.8,"name":"冻结序列/啊/400120_attack_hit-play_06"},{"time":0.8667,"name":"冻结序列/啊/400120_attack_hit-play_05"},{"time":0.9333,"name":"冻结序列/啊/400120_attack_hit-play_04"},{"time":1,"name":"冻结序列/啊/400120_attack_hit-play_03"},{"time":1.0667,"name":"冻结序列/啊/400120_attack_hit-play_02"},{"time":1.1333,"name":"冻结序列/啊/400120_attack_hit-play_01"},{"time":1.2,"name":"冻结序列/啊/400120_attack_hit-play_00"}]},"冻结序列/啊啊/400120_attack_hit-play_00":{"color":[{"color":"ffffff00","curve":"stepped"},{"time":0.7,"color":"ffffff00"},{"time":0.7333,"color":"ffffffff"}],"attachment":[{"time":0.8,"name":"冻结序列/啊啊/400120_attack_hit-play_01"},{"time":0.8667,"name":"冻结序列/啊啊/400120_attack_hit-play_02"},{"time":0.9333,"name":"冻结序列/啊啊/400120_attack_hit-play_03"},{"time":1,"name":"冻结序列/啊啊/400120_attack_hit-play_04"},{"time":1.0667,"name":"冻结序列/啊啊/400120_attack_hit-play_05"},{"time":1.1333,"name":"冻结序列/啊啊/400120_attack_hit-play_06"},{"time":1.2,"name":"冻结序列/啊啊/400120_attack_hit-play_07"},{"time":1.2667,"name":"冻结序列/啊啊/400120_attack_hit-play_08"},{"time":1.3333,"name":"冻结序列/啊啊/400120_attack_hit-play_09"},{"time":1.4,"name":"冻结序列/啊啊/400120_attack_hit-play_10"},{"time":1.4667,"name":"冻结序列/啊啊/400120_attack_hit-play_11"},{"time":1.5333,"name":"冻结序列/啊啊/400120_attack_hit-play_12"},{"time":1.6,"name":"冻结序列/啊啊/400120_attack_hit-play_13"},{"time":1.6667,"name":"冻结序列/啊啊/400120_attack_hit-play_14"},{"time":1.7333,"name":"冻结序列/啊啊/400120_attack_hit-play_15"},{"time":1.8,"name":"冻结序列/啊啊/400120_attack_hit-play_16"},{"time":1.8667,"name":"冻结序列/啊啊/400120_attack_hit-play_17"},{"time":1.9333,"name":"冻结序列/啊啊/400120_attack_hit-play_18"}]}},"bones":{"bone4":{"translate":[{"x":18.42,"y":16.58}]}}}}} \ No newline at end of file diff --git a/assets/shop/spin/dongjie/dongjie.json.meta b/assets/shop/spin/dongjie/dongjie.json.meta new file mode 100644 index 0000000..75eaf7f --- /dev/null +++ b/assets/shop/spin/dongjie/dongjie.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "eda00f94-3f36-47c1-866f-aace8a695105", + "importer": "spine", + "textures": [ + "4fd9cd85-c91b-4e26-868b-0ff5ff840e99" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/dongjie/dongjie.png b/assets/shop/spin/dongjie/dongjie.png new file mode 100644 index 0000000..21096ce Binary files /dev/null and b/assets/shop/spin/dongjie/dongjie.png differ diff --git a/assets/shop/spin/dongjie/dongjie.png.meta b/assets/shop/spin/dongjie/dongjie.png.meta new file mode 100644 index 0000000..03a1256 --- /dev/null +++ b/assets/shop/spin/dongjie/dongjie.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "4fd9cd85-c91b-4e26-868b-0ff5ff840e99", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2040, + "height": 1752, + "platformSettings": {}, + "subMetas": { + "dongjie": { + "ver": "1.0.6", + "uuid": "5a397dc7-2d04-4824-bbaa-bcea08814404", + "importer": "sprite-frame", + "rawTextureUuid": "4fd9cd85-c91b-4e26-868b-0ff5ff840e99", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1.5, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 2037, + "height": 1752, + "rawWidth": 2040, + "rawHeight": 1752, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/feijinbi.atlas b/assets/shop/spin/feijinbi.atlas new file mode 100644 index 0000000..9bc6f1e --- /dev/null +++ b/assets/shop/spin/feijinbi.atlas @@ -0,0 +1,125 @@ + +feijinbi.png +size: 964,964 +format: RGBA8888 +filter: Linear,Linear +repeat: none +goldbi + rotate: true + xy: 481, 450 + size: 109, 111 + orig: 109, 112 + offset: 0, 1 + index: -1 +guangxiao1/2_0003 + rotate: false + xy: 0, 713 + size: 252, 248 + orig: 720, 1280 + offset: 236, 516 + index: -1 +guangxiao1/2_0004 + rotate: true + xy: 762, 699 + size: 262, 138 + orig: 720, 1280 + offset: 219, 577 + index: -1 +guangxiao1/2_0005 + rotate: true + xy: 441, 707 + size: 254, 163 + orig: 720, 1280 + offset: 225, 566 + index: -1 +guangxiao1/2_0006 + rotate: true + xy: 254, 713 + size: 248, 185 + orig: 720, 1280 + offset: 228, 555 + index: -1 +guangxiao1/2_0007 + rotate: true + xy: 606, 707 + size: 246, 154 + orig: 720, 1280 + offset: 229, 584 + index: -1 +guangxiao1/2_0008 + rotate: false + xy: 321, 592 + size: 213, 113 + orig: 720, 1280 + offset: 232, 589 + index: -1 +guangxiao1/2_0009 + rotate: false + xy: 594, 486 + size: 72, 73 + orig: 720, 1280 + offset: 262, 619 + index: -1 +序列/1 + rotate: false + xy: 0, 552 + size: 159, 159 + orig: 159, 159 + offset: 0, 0 + index: -1 +序列/2 + rotate: true + xy: 536, 561 + size: 144, 159 + orig: 159, 159 + offset: 8, 0 + index: -1 +序列/3 + rotate: false + xy: 857, 538 + size: 104, 159 + orig: 159, 159 + offset: 28, 0 + index: -1 +序列/4 + rotate: true + xy: 0, 489 + size: 61, 158 + orig: 159, 159 + offset: 49, 1 + index: -1 +序列/5 + rotate: false + xy: 902, 699 + size: 48, 157 + orig: 159, 159 + offset: 56, 1 + index: -1 +序列/6 + rotate: true + xy: 160, 489 + size: 61, 158 + orig: 159, 159 + offset: 49, 1 + index: -1 +序列/7 + rotate: true + xy: 321, 486 + size: 104, 158 + orig: 159, 159 + offset: 28, 1 + index: -1 +序列/8 + rotate: true + xy: 697, 553 + size: 144, 158 + orig: 159, 159 + offset: 8, 1 + index: -1 +序列/9 + rotate: false + xy: 161, 552 + size: 158, 159 + orig: 159, 159 + offset: 1, 0 + index: -1 diff --git a/assets/shop/spin/feijinbi.atlas.meta b/assets/shop/spin/feijinbi.atlas.meta new file mode 100644 index 0000000..20b401c --- /dev/null +++ b/assets/shop/spin/feijinbi.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "ef64a2c5-e4a5-4dde-9d79-15b9613cc7f6", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/feijinbi.json b/assets/shop/spin/feijinbi.json new file mode 100644 index 0000000..6120f2b --- /dev/null +++ b/assets/shop/spin/feijinbi.json @@ -0,0 +1,482 @@ +{ +"skeleton": { + "hash": "Bint8Ya1IRhbEP1Bnv+Af79fnxE", + "spine": "3.8.99", + "x": 97.61, + "y": 42.73, + "width": 1574.25, + "height": 791.17, + "images": "", + "audio": "" +}, +"bones": [ + { "name": "root" }, + { "name": "bone", "parent": "root", "rotation": 95.46, "x": 1035.43, "y": 367.29 }, + { "name": "bone2", "parent": "root", "rotation": -30.6, "x": 1390.18, "y": 534.73 }, + { "name": "bone3", "parent": "root", "rotation": -30.6, "x": 1318.54, "y": 151.45 }, + { "name": "bone4", "parent": "root", "rotation": -40.17, "x": 1107.5, "y": 607.42 }, + { "name": "bone5", "parent": "root", "rotation": 48.57, "x": 1559.7, "y": 223.05 }, + { "name": "bone6", "parent": "root", "rotation": -40.17, "x": 1254.92, "y": 325.58 }, + { "name": "bone7", "parent": "root", "rotation": -40.17, "x": 1391.17, "y": 386.88 }, + { "name": "bone8", "parent": "root", "x": 146.64, "y": 784.75 }, + { "name": "guangxiao", "parent": "root", "x": 145.96, "y": 788.6, "scaleX": 1.5, "scaleY": 1.5 }, + { "name": "guangxiao2", "parent": "root", "x": 145.96, "y": 788.6, "scaleX": 1.5, "scaleY": 1.5 }, + { "name": "guangxiao3", "parent": "root", "x": 145.96, "y": 788.6, "scaleX": 1.5, "scaleY": 1.5 } +], +"slots": [ + { "name": "序列/1", "bone": "bone", "attachment": "序列/1" }, + { "name": "序列/2", "bone": "bone2", "attachment": "序列/1" }, + { "name": "序列/3", "bone": "bone3", "attachment": "序列/1" }, + { "name": "序列/4", "bone": "bone4", "attachment": "序列/1" }, + { "name": "序列/6", "bone": "bone6", "attachment": "序列/1" }, + { "name": "序列/7", "bone": "bone7", "attachment": "序列/1" }, + { "name": "序列/5", "bone": "bone5", "attachment": "序列/1" }, + { "name": "goldbi", "bone": "bone8", "attachment": "goldbi" }, + { "name": "guangxiao1/2_0003", "bone": "guangxiao", "blend": "additive" }, + { "name": "guangxiao1/2_3", "bone": "guangxiao2", "blend": "additive" }, + { "name": "guangxiao1/2_4", "bone": "guangxiao3", "blend": "additive" } +], +"skins": [ + { + "name": "default", + "attachments": { + "goldbi": { + "goldbi": { + "x": -0.49, + "y": 0.51, + "scaleX": 0.624, + "scaleY": 0.624, + "rotation": -40.17, + "width": 109, + "height": 112 + } + }, + "guangxiao1/2_0003": { + "guangxiao1/2_0003": { "width": 720, "height": 1280 }, + "guangxiao1/2_0004": { "width": 720, "height": 1280 }, + "guangxiao1/2_0005": { "width": 720, "height": 1280 }, + "guangxiao1/2_0006": { "width": 720, "height": 1280 }, + "guangxiao1/2_0007": { "width": 720, "height": 1280 }, + "guangxiao1/2_0008": { "width": 720, "height": 1280 }, + "guangxiao1/2_0009": { "width": 720, "height": 1280 } + }, + "guangxiao1/2_3": { + "guangxiao1/2_0003": { "width": 720, "height": 1280 }, + "guangxiao1/2_0004": { "width": 720, "height": 1280 }, + "guangxiao1/2_0005": { "width": 720, "height": 1280 }, + "guangxiao1/2_0006": { "width": 720, "height": 1280 }, + "guangxiao1/2_0007": { "width": 720, "height": 1280 }, + "guangxiao1/2_0008": { "width": 720, "height": 1280 }, + "guangxiao1/2_0009": { "width": 720, "height": 1280 } + }, + "guangxiao1/2_4": { + "guangxiao1/2_0003": { "width": 720, "height": 1280 }, + "guangxiao1/2_0004": { "width": 720, "height": 1280 }, + "guangxiao1/2_0005": { "width": 720, "height": 1280 }, + "guangxiao1/2_0006": { "width": 720, "height": 1280 }, + "guangxiao1/2_0007": { "width": 720, "height": 1280 }, + "guangxiao1/2_0008": { "width": 720, "height": 1280 }, + "guangxiao1/2_0009": { "width": 720, "height": 1280 } + }, + "序列/1": { + "序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 } + }, + "序列/2": { + "序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 } + }, + "序列/3": { + "序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 } + }, + "序列/4": { + "序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 } + }, + "序列/5": { + "序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 } + }, + "序列/6": { + "序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 } + }, + "序列/7": { + "序列/1": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/2": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/3": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/4": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/5": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/6": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/7": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/8": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 }, + "序列/9": { "x": 0.5, "y": 0.5, "width": 159, "height": 159 } + } + } + } +], +"animations": { + "feijinbi": { + "slots": { + "guangxiao1/2_0003": { + "attachment": [ + { "time": 0.5333, "name": "guangxiao1/2_0003" }, + { "time": 0.6, "name": "guangxiao1/2_0004" }, + { "time": 0.6667, "name": "guangxiao1/2_0005" }, + { "time": 0.7333, "name": "guangxiao1/2_0006" }, + { "time": 0.8, "name": "guangxiao1/2_0007" }, + { "time": 0.8667, "name": "guangxiao1/2_0008" }, + { "time": 0.9333, "name": "guangxiao1/2_0009" } + ] + }, + "guangxiao1/2_3": { + "attachment": [ + { "time": 0.7, "name": "guangxiao1/2_0003" }, + { "time": 0.7667, "name": "guangxiao1/2_0004" }, + { "time": 0.8333, "name": "guangxiao1/2_0005" }, + { "time": 0.9, "name": "guangxiao1/2_0006" }, + { "time": 0.9667, "name": "guangxiao1/2_0007" }, + { "time": 1.0333, "name": "guangxiao1/2_0008" }, + { "time": 1.1, "name": "guangxiao1/2_0009" } + ] + }, + "guangxiao1/2_4": { + "attachment": [ + { "time": 0.8667, "name": "guangxiao1/2_0003" }, + { "time": 0.9333, "name": "guangxiao1/2_0004" }, + { "time": 1, "name": "guangxiao1/2_0005" }, + { "time": 1.0667, "name": "guangxiao1/2_0006" }, + { "time": 1.1333, "name": "guangxiao1/2_0007" }, + { "time": 1.2, "name": "guangxiao1/2_0008" }, + { "time": 1.2667, "name": "guangxiao1/2_0009" } + ] + }, + "序列/1": { + "attachment": [ + { "time": 0.2667, "name": "序列/2" }, + { "time": 0.3, "name": "序列/3" }, + { "time": 0.3333, "name": "序列/4" }, + { "time": 0.3667, "name": "序列/5" }, + { "time": 0.4, "name": "序列/6" }, + { "time": 0.4333, "name": "序列/7" }, + { "time": 0.4667, "name": "序列/8" }, + { "time": 0.5, "name": "序列/9" }, + { "time": 0.5333, "name": "序列/1" }, + { "time": 0.5667, "name": "序列/2" }, + { "time": 0.6, "name": "序列/3" }, + { "time": 0.6333, "name": "序列/4" }, + { "time": 0.6667, "name": "序列/5" }, + { "time": 0.7, "name": "序列/6" }, + { "time": 0.7333, "name": "序列/7" }, + { "time": 0.7667, "name": "序列/8" }, + { "time": 0.8, "name": "序列/9" } + ] + }, + "序列/2": { + "attachment": [ + { "time": 0.3667, "name": "序列/2" }, + { "time": 0.4, "name": "序列/3" }, + { "time": 0.4333, "name": "序列/4" }, + { "time": 0.4667, "name": "序列/5" }, + { "time": 0.5, "name": "序列/6" }, + { "time": 0.5333, "name": "序列/7" }, + { "time": 0.5667, "name": "序列/8" }, + { "time": 0.6, "name": "序列/9" }, + { "time": 0.6333, "name": "序列/1" }, + { "time": 0.6667, "name": "序列/2" }, + { "time": 0.7, "name": "序列/3" }, + { "time": 0.7333, "name": "序列/4" }, + { "time": 0.7667, "name": "序列/5" }, + { "time": 0.8, "name": "序列/6" }, + { "time": 0.8333, "name": "序列/7" }, + { "time": 0.8667, "name": "序列/8" }, + { "time": 0.9, "name": "序列/9" } + ] + }, + "序列/3": { + "attachment": [ + { "time": 0.4667, "name": "序列/2" }, + { "time": 0.5, "name": "序列/3" }, + { "time": 0.5333, "name": "序列/4" }, + { "time": 0.5667, "name": "序列/5" }, + { "time": 0.6, "name": "序列/6" }, + { "time": 0.6333, "name": "序列/7" }, + { "time": 0.6667, "name": "序列/8" }, + { "time": 0.7, "name": "序列/9" }, + { "time": 0.7333, "name": "序列/1" }, + { "time": 0.7667, "name": "序列/2" }, + { "time": 0.8, "name": "序列/3" }, + { "time": 0.8333, "name": "序列/4" }, + { "time": 0.8667, "name": "序列/5" }, + { "time": 0.9, "name": "序列/6" }, + { "time": 0.9333, "name": "序列/7" }, + { "time": 0.9667, "name": "序列/8" }, + { "time": 1, "name": "序列/9" } + ] + }, + "序列/4": { + "attachment": [ + { "time": 0.5333, "name": "序列/2" }, + { "time": 0.5667, "name": "序列/3" }, + { "time": 0.6, "name": "序列/4" }, + { "time": 0.6333, "name": "序列/5" }, + { "time": 0.6667, "name": "序列/6" }, + { "time": 0.7, "name": "序列/7" }, + { "time": 0.7333, "name": "序列/8" }, + { "time": 0.7667, "name": "序列/9" }, + { "time": 0.8, "name": "序列/1" }, + { "time": 0.8333, "name": "序列/2" }, + { "time": 0.8667, "name": "序列/3" }, + { "time": 0.9, "name": "序列/4" }, + { "time": 0.9333, "name": "序列/5" }, + { "time": 0.9667, "name": "序列/6" }, + { "time": 1, "name": "序列/7" }, + { "time": 1.0333, "name": "序列/8" }, + { "time": 1.0667, "name": "序列/9" } + ] + }, + "序列/5": { + "attachment": [ + { "time": 0.2333, "name": "序列/2" }, + { "time": 0.2667, "name": "序列/3" }, + { "time": 0.3, "name": "序列/4" }, + { "time": 0.3333, "name": "序列/5" }, + { "time": 0.3667, "name": "序列/6" }, + { "time": 0.4, "name": "序列/7" }, + { "time": 0.4333, "name": "序列/8" }, + { "time": 0.4667, "name": "序列/9" }, + { "time": 0.5, "name": "序列/1" }, + { "time": 0.5333, "name": "序列/2" }, + { "time": 0.5667, "name": "序列/3" }, + { "time": 0.6, "name": "序列/4" }, + { "time": 0.6333, "name": "序列/5" }, + { "time": 0.6667, "name": "序列/6" }, + { "time": 0.7, "name": "序列/7" }, + { "time": 0.7333, "name": "序列/8" }, + { "time": 0.7667, "name": "序列/9" } + ] + }, + "序列/6": { + "attachment": [ + { "time": 0.3333, "name": "序列/2" }, + { "time": 0.3667, "name": "序列/3" }, + { "time": 0.4, "name": "序列/4" }, + { "time": 0.4333, "name": "序列/5" }, + { "time": 0.4667, "name": "序列/6" }, + { "time": 0.5, "name": "序列/7" }, + { "time": 0.5333, "name": "序列/8" }, + { "time": 0.5667, "name": "序列/9" }, + { "time": 0.6, "name": "序列/1" }, + { "time": 0.6333, "name": "序列/2" }, + { "time": 0.6667, "name": "序列/3" }, + { "time": 0.7, "name": "序列/4" }, + { "time": 0.7333, "name": "序列/5" }, + { "time": 0.7667, "name": "序列/6" }, + { "time": 0.8, "name": "序列/7" }, + { "time": 0.8333, "name": "序列/8" }, + { "time": 0.8667, "name": "序列/9" } + ] + }, + "序列/7": { + "attachment": [ + { "time": 0.4, "name": "序列/2" }, + { "time": 0.4333, "name": "序列/3" }, + { "time": 0.4667, "name": "序列/4" }, + { "time": 0.5, "name": "序列/5" }, + { "time": 0.5333, "name": "序列/6" }, + { "time": 0.5667, "name": "序列/7" }, + { "time": 0.6, "name": "序列/8" }, + { "time": 0.6333, "name": "序列/9" }, + { "time": 0.6667, "name": "序列/1" }, + { "time": 0.7, "name": "序列/2" }, + { "time": 0.7333, "name": "序列/3" }, + { "time": 0.7667, "name": "序列/4" }, + { "time": 0.8, "name": "序列/5" }, + { "time": 0.8333, "name": "序列/6" }, + { "time": 0.8667, "name": "序列/7" }, + { "time": 0.9, "name": "序列/8" }, + { "time": 0.9333, "name": "序列/9" } + ] + } + }, + "bones": { + "bone": { + "translate": [ + { "x": -1036.2, "y": -365.5 }, + { "time": 0.1667, "x": -1293.76, "y": -250.33 }, + { "time": 0.2667, "x": -1339.17, "y": -219.11, "curve": "stepped" }, + { "time": 0.4667, "x": -1339.17, "y": -219.11 }, + { "time": 0.6333, "x": -890.77, "y": 427.96 } + ], + "scale": [ + { "x": 0, "y": 0 }, + { "time": 0.1667, "curve": "stepped" }, + { "time": 0.4667 }, + { "time": 0.6333, "x": 0, "y": 0 } + ] + }, + "bone2": { + "translate": [ + { "x": -1393.79, "y": -535.78, "curve": "stepped" }, + { "time": 0.1667, "x": -1393.79, "y": -535.78 }, + { "time": 0.2667, "x": -1293.76, "y": -250.33 }, + { "time": 0.3667, "x": -1268.22, "y": -233.3, "curve": "stepped" }, + { "time": 0.5667, "x": -1268.22, "y": -233.3 }, + { "time": 0.7333, "x": -1244.65, "y": 258.34 } + ], + "scale": [ + { "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.1667, "x": 0, "y": 0 }, + { "time": 0.2667, "curve": "stepped" }, + { "time": 0.5667 }, + { "time": 0.7333, "x": 0, "y": 0 } + ] + }, + "bone3": { + "translate": [ + { "x": -1393.79, "y": -535.78 }, + { "time": 0.2667, "x": -1319.96, "y": -153.79 }, + { "time": 0.3667, "x": -1151.41, "y": -374.54 }, + { "time": 0.4667, "x": -1132.57, "y": -404.69, "curve": "stepped" }, + { "time": 0.6667, "x": -1132.57, "y": -404.69 }, + { "time": 0.8333, "x": -1174.03, "y": 640.33 } + ], + "scale": [ + { "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.2667, "x": 0, "y": 0 }, + { "time": 0.3667, "curve": "stepped" }, + { "time": 0.6667 }, + { "time": 0.8333, "x": 0, "y": 0 } + ] + }, + "bone4": { + "translate": [ + { "x": -1107.61, "y": -613.82, "curve": "stepped" }, + { "time": 0.3333, "x": -1107.61, "y": -613.82 }, + { "time": 0.4333, "x": -1290.16, "y": -777.79 }, + { "time": 0.5333, "x": -1355.2, "y": -851.5, "curve": "stepped" }, + { "time": 0.7333, "x": -1355.2, "y": -851.5 }, + { "time": 0.9, "x": -957.25, "y": 181.92 } + ], + "scale": [ + { "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.3333, "x": 0, "y": 0 }, + { "time": 0.4333, "curve": "stepped" }, + { "time": 0.7333 }, + { "time": 0.9, "x": 0, "y": 0 } + ] + }, + "bone5": { + "translate": [ + { "x": -1393.79, "y": -535.78 }, + { "time": 0.0333, "x": -1561.11, "y": -229.15 }, + { "time": 0.1333, "x": -1151.41, "y": -374.54 }, + { "time": 0.2333, "x": -1132.57, "y": -404.69, "curve": "stepped" }, + { "time": 0.4333, "x": -1132.57, "y": -404.69 }, + { "time": 0.6, "x": -1412.53, "y": 567.83 } + ], + "scale": [ + { "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.0333, "x": 0, "y": 0 }, + { "time": 0.1333, "curve": "stepped" }, + { "time": 0.4333 }, + { "time": 0.6, "x": 0, "y": 0 } + ] + }, + "bone6": { + "translate": [ + { "x": -1255.04, "y": -331.98, "curve": "stepped" }, + { "time": 0.1333, "x": -1255.04, "y": -331.98 }, + { "time": 0.2333, "x": -1402.72, "y": -234.56 }, + { "time": 0.3333, "x": -1422.3, "y": -175.83, "curve": "stepped" }, + { "time": 0.5333, "x": -1422.3, "y": -175.83 }, + { "time": 0.7, "x": -1108.97, "y": 470.67 } + ], + "scale": [ + { "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.1333, "x": 0, "y": 0 }, + { "time": 0.2333, "curve": "stepped" }, + { "time": 0.5333 }, + { "time": 0.7, "x": 0, "y": 0 } + ] + }, + "bone7": { + "translate": [ + { "x": -1394.68, "y": -386.48, "curve": "stepped" }, + { "time": 0.2, "x": -1394.68, "y": -386.48 }, + { "time": 0.3, "x": -1263.07, "y": -326.52 }, + { "time": 0.4, "x": -1239.23, "y": -302.68, "curve": "stepped" }, + { "time": 0.6, "x": -1239.23, "y": -302.68 }, + { "time": 0.7667, "x": -1245.21, "y": 409.36 } + ], + "scale": [ + { "x": 0, "y": 0, "curve": "stepped" }, + { "time": 0.2, "x": 0, "y": 0 }, + { "time": 0.3, "curve": "stepped" }, + { "time": 0.6 }, + { "time": 0.7667, "x": 0, "y": 0 } + ] + }, + "bone8": { + "scale": [ + { "time": 0.5333 }, + { "time": 0.5667, "x": 1.5, "y": 1.5 }, + { "time": 0.6, "curve": "stepped" }, + { "time": 0.6333 }, + { "time": 0.6667, "x": 1.5, "y": 1.5 }, + { "time": 0.7, "curve": "stepped" }, + { "time": 0.7333 }, + { "time": 0.7667, "x": 1.5, "y": 1.5 }, + { "time": 0.8, "curve": "stepped" }, + { "time": 0.8333 }, + { "time": 0.8667, "x": 1.5, "y": 1.5 }, + { "time": 0.9 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/shop/spin/feijinbi.json.meta b/assets/shop/spin/feijinbi.json.meta new file mode 100644 index 0000000..cb8a05f --- /dev/null +++ b/assets/shop/spin/feijinbi.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "6e4dbe22-e1d1-48f1-af36-a0dca5c602da", + "importer": "spine", + "textures": [ + "12ac58bc-c359-4fe8-b250-18feb0c04ddf" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/feijinbi.png b/assets/shop/spin/feijinbi.png new file mode 100644 index 0000000..4dadbd5 Binary files /dev/null and b/assets/shop/spin/feijinbi.png differ diff --git a/assets/shop/spin/feijinbi.png.meta b/assets/shop/spin/feijinbi.png.meta new file mode 100644 index 0000000..9575047 --- /dev/null +++ b/assets/shop/spin/feijinbi.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "12ac58bc-c359-4fe8-b250-18feb0c04ddf", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 964, + "height": 964, + "platformSettings": {}, + "subMetas": { + "feijinbi": { + "ver": "1.0.6", + "uuid": "ab68ded9-fb8e-4c91-a91e-ee13d53b985b", + "importer": "sprite-frame", + "rawTextureUuid": "12ac58bc-c359-4fe8-b250-18feb0c04ddf", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -1.5, + "offsetY": -223.5, + "trimX": 0, + "trimY": 450, + "width": 961, + "height": 511, + "rawWidth": 964, + "rawHeight": 964, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao.meta b/assets/shop/spin/mofabang_texiao.meta new file mode 100644 index 0000000..f1e923b --- /dev/null +++ b/assets/shop/spin/mofabang_texiao.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "3e2b9e78-1f47-4725-8f09-bb8491cd05d0", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao/mofabang_baozha.atlas b/assets/shop/spin/mofabang_texiao/mofabang_baozha.atlas new file mode 100644 index 0000000..6ef4747 --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_baozha.atlas @@ -0,0 +1,209 @@ + +mofabang_baozha.png +size: 2040,2040 +format: RGBA8888 +filter: Linear,Linear +repeat: none +images/effects/Glow1 + rotate: false + xy: 862, 1516 + size: 216, 216 + orig: 256, 256 + offset: 20, 19 + index: -1 +images/effects/hit/hit_00 + rotate: true + xy: 1379, 1762 + size: 276, 272 + orig: 400, 400 + offset: 61, 64 + index: -1 +images/effects/hit/hit_01 + rotate: false + xy: 1395, 1520 + size: 248, 240 + orig: 400, 400 + offset: 76, 80 + index: -1 +images/effects/hit/hit_02 + rotate: false + xy: 2, 1734 + size: 332, 304 + orig: 400, 400 + offset: 39, 51 + index: -1 +images/effects/hit/hit_03 + rotate: true + xy: 604, 1726 + size: 312, 252 + orig: 400, 400 + offset: 50, 83 + index: -1 +images/effects/hit/hit_04 + rotate: false + xy: 270, 1524 + size: 272, 208 + orig: 400, 400 + offset: 78, 108 + index: -1 +images/effects/hit/hit_05 + rotate: false + xy: 2, 1512 + size: 266, 220 + orig: 400, 400 + offset: 79, 103 + index: -1 +images/effects/hit/hit_06 + rotate: false + xy: 1117, 1496 + size: 276, 240 + orig: 400, 400 + offset: 73, 94 + index: -1 +images/effects/hit/hit_07 + rotate: true + xy: 1117, 1738 + size: 300, 260 + orig: 400, 400 + offset: 67, 85 + index: -1 +images/effects/hit/hit_08 + rotate: true + xy: 858, 1734 + size: 304, 257 + orig: 400, 400 + offset: 69, 82 + index: -1 +images/effects/hit/hit_09 + rotate: true + xy: 336, 1738 + size: 300, 266 + orig: 400, 400 + offset: 70, 74 + index: -1 +images/effects/hit/hit_10 + rotate: true + xy: 1645, 1380 + size: 162, 230 + orig: 400, 400 + offset: 95, 114 + index: -1 +images/effects/hit/hit_11 + rotate: false + xy: 1148, 1399 + size: 101, 95 + orig: 400, 400 + offset: 99, 119 + index: -1 +images/effects/hit/hit_12 + rotate: false + xy: 2037, 2037 + size: 1, 1 + orig: 400, 400 + offset: 198, 213 + index: -1 +images/lizi/shoujibaodian_34 + rotate: false + xy: 1653, 1719 + size: 211, 319 + orig: 1136, 640 + offset: 696, 201 + index: -1 +images/lizi/shoujibaodian_35 + rotate: true + xy: 544, 1546 + size: 178, 316 + orig: 1136, 640 + offset: 694, 201 + index: -1 +images/lizi/shoujibaodian_36 + rotate: true + xy: 1645, 1544 + size: 173, 313 + orig: 1136, 640 + offset: 696, 200 + index: -1 +images/lizi/shoujibaodian_37 + rotate: false + xy: 1866, 1810 + size: 169, 228 + orig: 1136, 640 + offset: 698, 233 + index: -1 +images/lizi/shoujibaodian_38 + rotate: true + xy: 544, 1378 + size: 166, 228 + orig: 1136, 640 + offset: 702, 235 + index: -1 +images/lizi/shoujibaodian_39 + rotate: true + xy: 270, 1358 + size: 164, 219 + orig: 1136, 640 + offset: 703, 241 + index: -1 +images/lizi/shoujibaodian_40 + rotate: true + xy: 1395, 1361 + size: 157, 208 + orig: 1136, 640 + offset: 710, 249 + index: -1 +images/lizi/shoujibaodian_41 + rotate: true + xy: 774, 1396 + size: 118, 189 + orig: 1136, 640 + offset: 749, 266 + index: -1 +images/lizi/shoujibaodian_42 + rotate: true + xy: 2, 1430 + size: 80, 187 + orig: 1136, 640 + offset: 751, 268 + index: -1 +images/lizi/shoujibaodian_43 + rotate: true + xy: 965, 1418 + size: 76, 181 + orig: 1136, 640 + offset: 752, 269 + index: -1 +images/lizi/shoujibaodian_44 + rotate: false + xy: 1960, 1665 + size: 72, 143 + orig: 1136, 640 + offset: 753, 305 + index: -1 +images/lizi/shoujibaodian_45 + rotate: false + xy: 1960, 1520 + size: 69, 143 + orig: 1136, 640 + offset: 754, 304 + index: -1 +images/lizi/shoujibaodian_46 + rotate: false + xy: 1947, 1376 + size: 67, 142 + orig: 1136, 640 + offset: 755, 304 + index: -1 +images/lizi/shoujibaodian_47 + rotate: false + xy: 191, 1369 + size: 67, 141 + orig: 1136, 640 + offset: 755, 304 + index: -1 +images/lizi/shoujibaodian_48 + rotate: false + xy: 1877, 1400 + size: 68, 142 + orig: 1136, 640 + offset: 754, 303 + index: -1 diff --git a/assets/shop/spin/mofabang_texiao/mofabang_baozha.atlas.meta b/assets/shop/spin/mofabang_texiao/mofabang_baozha.atlas.meta new file mode 100644 index 0000000..da99fae --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_baozha.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "43874b95-73bf-4894-be03-7efdd865733a", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao/mofabang_baozha.json b/assets/shop/spin/mofabang_texiao/mofabang_baozha.json new file mode 100644 index 0000000..238f931 --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_baozha.json @@ -0,0 +1,167 @@ +{ +"skeleton": { + "hash": "hZHGx+scAEPxWQrFsM0GBbRcUg0", + "spine": "3.8.99", + "x": -273.93, + "y": -795.48, + "width": 640, + "height": 1136, + "images": "", + "audio": "C:\\Users\\EDY\\Desktop\\common\\battle\\特效\\300970_skill_hit" +}, +"bones": [ + { "name": "root" }, + { "name": "all", "parent": "root" }, + { "name": "hit", "parent": "all" }, + { "name": "hit2", "parent": "all" }, + { "name": "glow", "parent": "all" }, + { "name": "lizi2", "parent": "root", "rotation": 90, "x": 1.13, "y": -2.39 } +], +"slots": [ + { "name": "images/bg", "bone": "root" }, + { "name": "images/effects/hit/hit_00", "bone": "hit", "attachment": "images/effects/hit/hit_00", "blend": "screen" }, + { "name": "images/effects/hit/hit_0", "bone": "hit2" }, + { "name": "images/effects/Glow1", "bone": "glow", "blend": "additive" }, + { "name": "images/lizi/shoujibaodian_34", "bone": "lizi2", "attachment": "images/lizi/shoujibaodian_34", "blend": "additive" } +], +"skins": [ + { + "name": "default", + "attachments": { + "images/effects/Glow1": { + "images/effects/Glow1": { "width": 256, "height": 256 } + }, + "images/effects/hit/hit_0": { + "images/effects/hit/hit_02": { "width": 400, "height": 400 }, + "images/effects/hit/hit_03": { "width": 400, "height": 400 }, + "images/effects/hit/hit_04": { "width": 400, "height": 400 }, + "images/effects/hit/hit_05": { "width": 400, "height": 400 }, + "images/effects/hit/hit_06": { "width": 400, "height": 400 }, + "images/effects/hit/hit_07": { "width": 400, "height": 400 }, + "images/effects/hit/hit_08": { "width": 400, "height": 400 }, + "images/effects/hit/hit_09": { "width": 400, "height": 400 }, + "images/effects/hit/hit_10": { "width": 400, "height": 400 }, + "images/effects/hit/hit_11": { "width": 400, "height": 400 }, + "images/effects/hit/hit_12": { "width": 400, "height": 400 }, + "images/effects/hit/hit_13": { "width": 400, "height": 400 }, + "images/effects/hit/hit_14": { "width": 1, "height": 1 } + }, + "images/effects/hit/hit_00": { + "images/effects/hit/hit_00": { "width": 400, "height": 400 }, + "images/effects/hit/hit_01": { "width": 400, "height": 400 } + }, + "images/lizi/shoujibaodian_34": { + "images/lizi/shoujibaodian_34": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_35": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_36": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_37": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_38": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_39": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_40": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_41": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_42": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_43": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_44": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_45": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_46": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_47": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 }, + "images/lizi/shoujibaodian_48": { "x": -225.09, "y": -44.94, "width": 1136, "height": 640 } + } + } + } +], +"animations": { + "play": { + "slots": { + "images/effects/Glow1": { + "color": [ + { "time": 0.0333, "color": "5a05ffff" }, + { "time": 0.4667, "color": "bd00ff00" } + ], + "attachment": [ + { "time": 0.0333, "name": "images/effects/Glow1" } + ] + }, + "images/effects/hit/hit_0": { + "attachment": [ + { "time": 0.1333, "name": "images/effects/hit/hit_02" }, + { "time": 0.1667, "name": "images/effects/hit/hit_03" }, + { "time": 0.2, "name": "images/effects/hit/hit_04" }, + { "time": 0.2333, "name": "images/effects/hit/hit_05" }, + { "time": 0.2667, "name": "images/effects/hit/hit_06" }, + { "time": 0.3, "name": "images/effects/hit/hit_07" }, + { "time": 0.3333, "name": "images/effects/hit/hit_08" }, + { "time": 0.3667, "name": "images/effects/hit/hit_09" }, + { "time": 0.4, "name": "images/effects/hit/hit_10" }, + { "time": 0.4333, "name": "images/effects/hit/hit_11" }, + { "time": 0.4667, "name": "images/effects/hit/hit_12" }, + { "time": 0.5, "name": "images/effects/hit/hit_13" }, + { "time": 0.5333, "name": "images/effects/hit/hit_14" }, + { "time": 0.5667, "name": null } + ] + }, + "images/effects/hit/hit_00": { + "color": [ + { "color": "ffffff00" }, + { "time": 0.0333, "color": "ffffffff" } + ], + "attachment": [ + { "time": 0.0667, "name": "images/effects/hit/hit_01" }, + { "time": 0.1, "name": null } + ] + }, + "images/lizi/shoujibaodian_34": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.3333, "color": "ffffff00" }, + { "time": 0.3667, "color": "ffffffff", "curve": "stepped" }, + { "time": 1.3, "color": "ffffffff" }, + { "time": 1.3667, "color": "ffffff00" } + ], + "attachment": [ + { "time": 0.4333, "name": "images/lizi/shoujibaodian_35" }, + { "time": 0.5, "name": "images/lizi/shoujibaodian_36" }, + { "time": 0.5667, "name": "images/lizi/shoujibaodian_37" }, + { "time": 0.6333, "name": "images/lizi/shoujibaodian_38" }, + { "time": 0.7, "name": "images/lizi/shoujibaodian_39" }, + { "time": 0.7667, "name": "images/lizi/shoujibaodian_40" }, + { "time": 0.8333, "name": "images/lizi/shoujibaodian_41" }, + { "time": 0.9, "name": "images/lizi/shoujibaodian_42" }, + { "time": 0.9667, "name": "images/lizi/shoujibaodian_43" }, + { "time": 1.0333, "name": "images/lizi/shoujibaodian_44" }, + { "time": 1.1, "name": "images/lizi/shoujibaodian_45" }, + { "time": 1.1667, "name": "images/lizi/shoujibaodian_46" }, + { "time": 1.2333, "name": "images/lizi/shoujibaodian_47" }, + { "time": 1.3, "name": "images/lizi/shoujibaodian_48" } + ] + } + }, + "bones": { + "glow": { + "scale": [ + { "time": 0.0333, "x": 0.5, "y": 0.5 }, + { "time": 0.1333, "x": 2, "y": 2 }, + { "time": 0.4667, "x": 3, "y": 3 } + ] + }, + "hit": { + "scale": [ + { "time": 0.0333, "x": 1.5, "y": 1.5 } + ] + }, + "lizi2": { + "translate": [ + { "time": 0.3667 }, + { "time": 0.7667, "y": 6 }, + { "time": 1.3, "y": -20.01 } + ], + "scale": [ + { "x": 0.7, "y": 0.7, "curve": "stepped" }, + { "time": 0.3667, "x": 0.7, "y": 0.7 }, + { "time": 1.3 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao/mofabang_baozha.json.meta b/assets/shop/spin/mofabang_texiao/mofabang_baozha.json.meta new file mode 100644 index 0000000..da3e77a --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_baozha.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "d0f588ae-3378-45a1-b3eb-9fab8e7bd03b", + "importer": "spine", + "textures": [ + "1d199c80-c2cc-4a8a-9d5f-e38077dd0ca7" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao/mofabang_baozha.png b/assets/shop/spin/mofabang_texiao/mofabang_baozha.png new file mode 100644 index 0000000..17e06ee Binary files /dev/null and b/assets/shop/spin/mofabang_texiao/mofabang_baozha.png differ diff --git a/assets/shop/spin/mofabang_texiao/mofabang_baozha.png.meta b/assets/shop/spin/mofabang_texiao/mofabang_baozha.png.meta new file mode 100644 index 0000000..6e183ac --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_baozha.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "1d199c80-c2cc-4a8a-9d5f-e38077dd0ca7", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 2040, + "height": 2040, + "platformSettings": {}, + "subMetas": { + "mofabang_baozha": { + "ver": "1.0.6", + "uuid": "7fa70f61-ff3d-448a-b16e-16bb90b926b2", + "importer": "sprite-frame", + "rawTextureUuid": "1d199c80-c2cc-4a8a-9d5f-e38077dd0ca7", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -678, + "trimX": 2, + "trimY": 1358, + "width": 2036, + "height": 680, + "rawWidth": 2040, + "rawHeight": 2040, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao/mofabang_texiao.atlas b/assets/shop/spin/mofabang_texiao/mofabang_texiao.atlas new file mode 100644 index 0000000..ead6b3b --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_texiao.atlas @@ -0,0 +1,104 @@ + +mofabang_texiao.png +size: 1000,1000 +format: RGBA8888 +filter: Linear,Linear +repeat: none +images/effects/chixu/chixu_00 + rotate: false + xy: 2, 334 + size: 151, 124 + orig: 200, 200 + offset: 12, 44 + index: -1 +images/effects/chixu/chixu_01 + rotate: true + xy: 159, 567 + size: 148, 132 + orig: 200, 200 + offset: 12, 37 + index: -1 +images/effects/chixu/chixu_02 + rotate: false + xy: 2, 460 + size: 153, 125 + orig: 200, 200 + offset: 15, 37 + index: -1 +images/effects/chixu/chixu_03 + rotate: false + xy: 2, 587 + size: 155, 128 + orig: 200, 200 + offset: 15, 36 + index: -1 +images/effects/chixu/chixu_04 + rotate: true + xy: 157, 416 + size: 149, 126 + orig: 200, 200 + offset: 21, 36 + index: -1 +images/effects/chixu/chixu_05 + rotate: true + xy: 155, 265 + size: 149, 123 + orig: 200, 200 + offset: 21, 36 + index: -1 +images/effects/chixu/chixu_06 + rotate: false + xy: 148, 143 + size: 147, 120 + orig: 200, 200 + offset: 23, 38 + index: -1 +images/effects/chixu/chixu_07 + rotate: true + xy: 2, 61 + size: 145, 119 + orig: 200, 200 + offset: 24, 39 + index: -1 +images/effects/chixu/chixu_08 + rotate: false + xy: 2, 208 + size: 144, 124 + orig: 200, 200 + offset: 23, 41 + index: -1 +images/effects/chixu/chixu_09 + rotate: false + xy: 123, 23 + size: 140, 118 + orig: 200, 200 + offset: 23, 43 + index: -1 +images/effects/chixu/chixu_10 + rotate: true + xy: 265, 2 + size: 139, 117 + orig: 200, 200 + offset: 23, 43 + index: -1 +images/effects/guangdian + rotate: false + xy: 2, 54 + size: 5, 5 + orig: 5, 5 + offset: 0, 0 + index: -1 +images/effects/huiguang + rotate: false + xy: 2, 717 + size: 278, 278 + orig: 311, 310 + offset: 17, 16 + index: -1 +images/effects/微信图片_20250515181822 + rotate: false + xy: 280, 305 + size: 93, 109 + orig: 93, 109 + offset: 0, 0 + index: -1 diff --git a/assets/shop/spin/mofabang_texiao/mofabang_texiao.atlas.meta b/assets/shop/spin/mofabang_texiao/mofabang_texiao.atlas.meta new file mode 100644 index 0000000..ccd062d --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_texiao.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "95976aae-0f09-4605-bcc2-687fdabc3353", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao/mofabang_texiao.json b/assets/shop/spin/mofabang_texiao/mofabang_texiao.json new file mode 100644 index 0000000..f8d8a47 --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_texiao.json @@ -0,0 +1,269 @@ +{ +"skeleton": { + "hash": "KwnUpLoFTPi0z5vmLJV6Z4zmnmE", + "spine": "3.8.99", + "x": -152.76, + "y": -158.93, + "width": 316.61, + "height": 310, + "images": "", + "audio": "C:\\Users\\EDY\\Desktop\\common\\battle\\特效\\500210_skill1" +}, +"bones": [ + { "name": "root" }, + { "name": "all", "parent": "root" }, + { "name": "shifa", "parent": "all", "scaleX": 1.5, "scaleY": 1.5 }, + { "name": "chixu", "parent": "shifa" }, + { "name": "chixu1", "parent": "chixu" }, + { "name": "chixu2", "parent": "chixu", "scaleX": -1 }, + { "name": "bone", "parent": "root", "x": 0.19, "y": -0.13 }, + { "name": "bone2", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone3", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone4", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone5", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone6", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone7", "parent": "root", "x": -2.4, "y": -1.65 }, + { "name": "bone8", "parent": "root", "x": -2.4, "y": -1.65 } +], +"slots": [ + { "name": "images/effects/bg", "bone": "root" }, + { "name": "images/effects/chixu/chixu_0", "bone": "chixu2", "color": "d120a1ca", "blend": "additive" }, + { "name": "images/effects/微信图片_20250515181822", "bone": "bone", "attachment": "images/effects/微信图片_20250515181822" }, + { "name": "images/effects/chixu/chixu_00", "bone": "chixu1", "blend": "additive" }, + { "name": "images/effects/huiguang", "bone": "all", "attachment": "images/effects/huiguang", "blend": "additive" }, + { "name": "images/effects/guangdian", "bone": "bone2", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian2", "bone": "bone3", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian4", "bone": "bone5", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian7", "bone": "bone8", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian5", "bone": "bone6", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian3", "bone": "bone4", "attachment": "images/effects/guangdian", "blend": "additive" }, + { "name": "images/effects/guangdian6", "bone": "bone7", "attachment": "images/effects/guangdian", "blend": "additive" } +], +"skins": [ + { + "name": "default", + "attachments": { + "images/effects/chixu/chixu_0": { + "images/effects/chixu/chixu_00": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_01": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_02": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_03": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_04": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_05": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_06": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_07": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_08": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_09": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_10": { "width": 200, "height": 200 } + }, + "images/effects/chixu/chixu_00": { + "images/effects/chixu/chixu_00": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_01": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_02": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_03": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_04": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_05": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_06": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_07": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_08": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_09": { "width": 200, "height": 200 }, + "images/effects/chixu/chixu_10": { "width": 200, "height": 200 } + }, + "images/effects/guangdian": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian2": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian3": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian4": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian5": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian6": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/guangdian7": { + "images/effects/guangdian": { "x": -0.53, "scaleX": 2, "scaleY": 2, "width": 5, "height": 5 } + }, + "images/effects/huiguang": { + "images/effects/huiguang": { "x": 2.74, "y": -3.93, "rotation": 180, "width": 311, "height": 310 } + }, + "images/effects/微信图片_20250515181822": { + "images/effects/微信图片_20250515181822": { + "x": 36.11, + "y": -31.15, + "scaleX": 2, + "scaleY": 2, + "rotation": 76.63, + "width": 93, + "height": 109 + } + } + } + } +], +"animations": { + "play": { + "slots": { + "images/effects/chixu/chixu_0": { + "attachment": [ + { "time": 0.1333, "name": "images/effects/chixu/chixu_00" }, + { "time": 0.2, "name": "images/effects/chixu/chixu_01" }, + { "time": 0.2667, "name": "images/effects/chixu/chixu_02" }, + { "time": 0.3333, "name": "images/effects/chixu/chixu_03" }, + { "time": 0.4, "name": "images/effects/chixu/chixu_04" }, + { "time": 0.4667, "name": "images/effects/chixu/chixu_05" }, + { "time": 0.5333, "name": "images/effects/chixu/chixu_06" }, + { "time": 0.6, "name": "images/effects/chixu/chixu_07" }, + { "time": 0.6667, "name": "images/effects/chixu/chixu_08" }, + { "time": 0.7333, "name": "images/effects/chixu/chixu_09" }, + { "time": 0.8, "name": "images/effects/chixu/chixu_10" }, + { "time": 0.8667, "name": null } + ] + }, + "images/effects/chixu/chixu_00": { + "attachment": [ + { "name": "images/effects/chixu/chixu_06" }, + { "time": 0.0667, "name": "images/effects/chixu/chixu_07" }, + { "time": 0.1333, "name": "images/effects/chixu/chixu_08" }, + { "time": 0.2, "name": "images/effects/chixu/chixu_09" }, + { "time": 0.2667, "name": "images/effects/chixu/chixu_10" }, + { "time": 0.3333, "name": null }, + { "time": 0.6, "name": "images/effects/chixu/chixu_00" }, + { "time": 0.6667, "name": "images/effects/chixu/chixu_01" }, + { "time": 0.7333, "name": "images/effects/chixu/chixu_02" }, + { "time": 0.8, "name": "images/effects/chixu/chixu_03" }, + { "time": 0.8667, "name": "images/effects/chixu/chixu_04" }, + { "time": 0.9333, "name": "images/effects/chixu/chixu_05" } + ] + }, + "images/effects/guangdian": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.1333, "color": "ffffff00" }, + { "time": 0.1667, "color": "ffffffff" }, + { "time": 0.2667, "color": "ffffff00" }, + { "time": 0.3667, "color": "ffffffed" }, + { "time": 0.4333, "color": "fffffff5" }, + { "time": 0.5333, "color": "ffffff33" }, + { "time": 0.5667, "color": "ffffffff", "curve": "stepped" }, + { "time": 0.6667, "color": "ffffffff" }, + { "time": 0.8333, "color": "ffffff00" } + ] + }, + "images/effects/guangdian2": { + "color": [ + { "time": 0.3667, "color": "ffffffff" }, + { "time": 0.5333, "color": "ffffff00", "curve": "stepped" }, + { "time": 0.9, "color": "ffffff00" }, + { "time": 0.9333, "color": "ffffffff" } + ] + }, + "images/effects/guangdian3": { + "color": [ + { "time": 0.2333, "color": "ffffffff" }, + { "time": 0.4, "color": "ffffff00", "curve": "stepped" }, + { "time": 0.6333, "color": "ffffff00" }, + { "time": 0.6667, "color": "ffffffff" } + ] + }, + "images/effects/guangdian4": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.2, "color": "ffffff00" }, + { "time": 0.2333, "color": "ffffffff", "curve": "stepped" }, + { "time": 0.7333, "color": "ffffffff" }, + { "time": 0.9, "color": "ffffff00" } + ] + }, + "images/effects/guangdian5": { + "color": [ + { "color": "ffffff00" }, + { "time": 0.0333, "color": "ffffffff", "curve": "stepped" }, + { "time": 0.5333, "color": "ffffffff" }, + { "time": 0.7, "color": "ffffff00" } + ] + }, + "images/effects/guangdian6": { + "color": [ + { "time": 0.2333, "color": "ffffffff" }, + { "time": 0.4, "color": "ffffff00", "curve": "stepped" }, + { "time": 0.6333, "color": "ffffff00" }, + { "time": 0.6667, "color": "ffffffff" } + ] + }, + "images/effects/guangdian7": { + "color": [ + { "color": "ffffff00", "curve": "stepped" }, + { "time": 0.1333, "color": "ffffff00" }, + { "time": 0.1667, "color": "ffffffff", "curve": "stepped" }, + { "time": 0.6667, "color": "ffffffff" }, + { "time": 0.8333, "color": "ffffff00" } + ] + }, + "images/effects/huiguang": { + "color": [ + { "color": "ffffffff" }, + { "time": 0.4667, "color": "ffffff71" }, + { "time": 0.9333, "color": "ffffffff" } + ] + } + }, + "bones": { + "bone2": { + "translate": [ + { "time": 0.1667 }, + { "time": 0.8333, "x": 18.29, "y": 73.14 } + ] + }, + "bone3": { + "translate": [ + { "x": 34.13, "y": -4.63 }, + { "time": 0.5333, "x": 170.66, "y": -23.16, "curve": "stepped" }, + { "time": 0.8667, "x": 170.66, "y": -23.16 }, + { "time": 0.9333 } + ] + }, + "bone4": { + "translate": [ + { "x": 33.29, "y": 31.52 }, + { "time": 0.4, "x": -69.48, "y": -142.62 }, + { "time": 0.6667 }, + { "time": 0.9333, "x": 33.29, "y": 31.52 } + ] + }, + "bone5": { + "translate": [ + { "time": 0.2333 }, + { "time": 0.9, "x": -128.62, "y": -19.54 } + ] + }, + "bone6": { + "translate": [ + { "time": 0.0333 }, + { "time": 0.7, "x": -57.7, "y": 131.91 } + ] + }, + "bone7": { + "translate": [ + { "x": 18.08, "y": 13.84 }, + { "time": 0.4, "x": 98.49, "y": 94.57 }, + { "time": 0.6667 }, + { "time": 0.9333, "x": 18.08, "y": 13.84 } + ] + }, + "bone8": { + "translate": [ + { "time": 0.1667 }, + { "time": 0.8333, "x": 97.32, "y": 76.27 } + ] + } + } + } +} +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao/mofabang_texiao.json.meta b/assets/shop/spin/mofabang_texiao/mofabang_texiao.json.meta new file mode 100644 index 0000000..1644cda --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_texiao.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "02b34a75-e708-445c-b778-66a0e1cf004d", + "importer": "spine", + "textures": [ + "bbb977b3-e109-42c1-81f2-b03c5ecdaba2" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/mofabang_texiao/mofabang_texiao.png b/assets/shop/spin/mofabang_texiao/mofabang_texiao.png new file mode 100644 index 0000000..7cc05c8 Binary files /dev/null and b/assets/shop/spin/mofabang_texiao/mofabang_texiao.png differ diff --git a/assets/shop/spin/mofabang_texiao/mofabang_texiao.png.meta b/assets/shop/spin/mofabang_texiao/mofabang_texiao.png.meta new file mode 100644 index 0000000..5769f54 --- /dev/null +++ b/assets/shop/spin/mofabang_texiao/mofabang_texiao.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "bbb977b3-e109-42c1-81f2-b03c5ecdaba2", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1000, + "height": 1000, + "platformSettings": {}, + "subMetas": { + "mofabang_texiao": { + "ver": "1.0.6", + "uuid": "582626cb-8f49-47dc-bb2a-2bbe0a7710be", + "importer": "sprite-frame", + "rawTextureUuid": "bbb977b3-e109-42c1-81f2-b03c5ecdaba2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -308, + "offsetY": 1.5, + "trimX": 2, + "trimY": 2, + "width": 380, + "height": 993, + "rawWidth": 1000, + "rawHeight": 1000, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/particle.meta b/assets/shop/spin/particle.meta new file mode 100644 index 0000000..b121932 --- /dev/null +++ b/assets/shop/spin/particle.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "6826e4cc-e793-4a00-9a2f-170c7123c455", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/particle/LiZi1.png b/assets/shop/spin/particle/LiZi1.png new file mode 100644 index 0000000..8640ab4 Binary files /dev/null and b/assets/shop/spin/particle/LiZi1.png differ diff --git a/assets/shop/spin/particle/LiZi1.png.meta b/assets/shop/spin/particle/LiZi1.png.meta new file mode 100644 index 0000000..ab68d8d --- /dev/null +++ b/assets/shop/spin/particle/LiZi1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "727ab669-af95-43be-9818-2065a98b84a5", + "importer": "image", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 192, + "height": 192, + "platformSettings": {}, + "subMetas": { + "LiZi1": { + "ver": "1.0.6", + "uuid": "c5195cb6-e974-4b2b-9b9a-fa73a8c21cfb", + "importer": "sprite-frame", + "rawTextureUuid": "727ab669-af95-43be-9818-2065a98b84a5", + "trimType": "none", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 192, + "height": 192, + "rawWidth": 192, + "rawHeight": 192, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/particle/bang.png b/assets/shop/spin/particle/bang.png new file mode 100644 index 0000000..ecee26f Binary files /dev/null and b/assets/shop/spin/particle/bang.png differ diff --git a/assets/shop/spin/particle/bang.png.meta b/assets/shop/spin/particle/bang.png.meta new file mode 100644 index 0000000..7f0192d --- /dev/null +++ b/assets/shop/spin/particle/bang.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d09b5280-3135-4508-b7ce-7b717d2eb629", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 186, + "height": 218, + "platformSettings": {}, + "subMetas": { + "bang": { + "ver": "1.0.6", + "uuid": "60d4df1f-7adc-411f-b414-63b28bbc62d8", + "importer": "sprite-frame", + "rawTextureUuid": "d09b5280-3135-4508-b7ce-7b717d2eb629", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 186, + "height": 218, + "rawWidth": 186, + "rawHeight": 218, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/particle/circle_00.png b/assets/shop/spin/particle/circle_00.png new file mode 100644 index 0000000..0e01bbe Binary files /dev/null and b/assets/shop/spin/particle/circle_00.png differ diff --git a/assets/shop/spin/particle/circle_00.png.meta b/assets/shop/spin/particle/circle_00.png.meta new file mode 100644 index 0000000..be23bda --- /dev/null +++ b/assets/shop/spin/particle/circle_00.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "c88c6283-3de7-4606-b65a-fa3e18c95049", + "importer": "image", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 200, + "height": 200, + "platformSettings": {}, + "subMetas": { + "circle_00": { + "ver": "1.0.6", + "uuid": "3e2536e0-8913-4e18-80ed-ae109a6fa197", + "importer": "sprite-frame", + "rawTextureUuid": "c88c6283-3de7-4606-b65a-fa3e18c95049", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 200, + "height": 200, + "rawWidth": 200, + "rawHeight": 200, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/particle/flash.png b/assets/shop/spin/particle/flash.png new file mode 100644 index 0000000..c251194 Binary files /dev/null and b/assets/shop/spin/particle/flash.png differ diff --git a/assets/shop/spin/particle/flash.png.meta b/assets/shop/spin/particle/flash.png.meta new file mode 100644 index 0000000..c7d2974 --- /dev/null +++ b/assets/shop/spin/particle/flash.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "118d4d54-d313-4f52-b49f-593effa13423", + "importer": "image", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 73, + "height": 73, + "platformSettings": {}, + "subMetas": { + "flash": { + "ver": "1.0.6", + "uuid": "a28b8261-be09-47df-aaa7-db3b6edebc3e", + "importer": "sprite-frame", + "rawTextureUuid": "118d4d54-d313-4f52-b49f-593effa13423", + "trimType": "none", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 73, + "height": 73, + "rawWidth": 73, + "rawHeight": 73, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/shop/spin/particle/tuowei1.prefab b/assets/shop/spin/particle/tuowei1.prefab new file mode 100644 index 0000000..44f18ab --- /dev/null +++ b/assets/shop/spin/particle/tuowei1.prefab @@ -0,0 +1,660 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "tuowei1", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 8 + }, + { + "__id__": 11 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bang", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 73, + "height": 73 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "41GQWZ2a5Ex6CABo1VEgRM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "tailing", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.MotionStreak", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_fadeTime": 0.3, + "_minSeg": 1, + "_stroke": 20, + "_texture": { + "__uuid__": "c88c6283-3de7-4606-b65a-fa3e18c95049" + }, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 128, + "b": 0, + "a": 255 + }, + "_fastMode": false, + "_N$preview": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d7Nu2TAIxA4b0/kSUg8bAf", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "em_flash_particle", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": null, + "_spriteFrame": { + "__uuid__": "c5195cb6-e974-4b2b-9b9a-fa73a8c21cfb" + }, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "totalParticles": 100, + "duration": -1, + "emissionRate": 224.9, + "life": 1, + "lifeVar": 0.5, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "angle": 0, + "angleVar": 360, + "startSize": 100, + "startSizeVar": 30, + "endSize": 1, + "endSizeVar": 0, + "startSpin": 50, + "startSpinVar": 20, + "endSpin": 20, + "endSpinVar": 0, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_positionType": 0, + "positionType": 0, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "speed": 112.1, + "speedVar": 50, + "tangentialAccel": 0, + "tangentialAccelVar": 0, + "radialAccel": -88.8, + "radialAccelVar": 50, + "rotationIsDir": true, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "79oTbIHqZP55cNO2Plw9CS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "em_flash_0001", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_custom": true, + "_file": null, + "_spriteFrame": { + "__uuid__": "a28b8261-be09-47df-aaa7-db3b6edebc3e" + }, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "totalParticles": 100, + "duration": -1, + "emissionRate": 100, + "life": 0.2, + "lifeVar": 0.5, + "_startColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "angle": 0, + "angleVar": 360, + "startSize": 50, + "startSizeVar": 30, + "endSize": 0, + "endSizeVar": 0, + "startSpin": 0, + "startSpinVar": 20, + "endSpin": 0, + "endSpinVar": 0, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_positionType": 0, + "positionType": 0, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "speed": 100, + "speedVar": 0, + "tangentialAccel": 0, + "tangentialAccelVar": 0, + "radialAccel": -100, + "radialAccelVar": 50, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "12615JbA9PJ4FPoMzO8C6x", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/shop/spin/particle/tuowei1.prefab.meta b/assets/shop/spin/particle/tuowei1.prefab.meta new file mode 100644 index 0000000..dd4a8ae --- /dev/null +++ b/assets/shop/spin/particle/tuowei1.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "ffebbf13-83a0-4923-a965-96f134e7b567", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/piaoxue.meta b/assets/shop/spin/piaoxue.meta new file mode 100644 index 0000000..297f1e9 --- /dev/null +++ b/assets/shop/spin/piaoxue.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "97496fa8-2358-406e-9a5a-b68400e74d89", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/piaoxue/skeleton.atlas b/assets/shop/spin/piaoxue/skeleton.atlas new file mode 100644 index 0000000..3f66f4e --- /dev/null +++ b/assets/shop/spin/piaoxue/skeleton.atlas @@ -0,0 +1,27 @@ + +skeleton.png +size: 60,140 +format: RGBA8888 +filter: Linear,Linear +repeat: none +xuehua + rotate: false + xy: 0, 80 + size: 60, 60 + orig: 160, 160 + offset: 49, 49 + index: -1 +xuehua2 + rotate: false + xy: 0, 26 + size: 52, 52 + orig: 160, 160 + offset: 53, 53 + index: -1 +yuan + rotate: false + xy: 0, 0 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 diff --git a/assets/shop/spin/piaoxue/skeleton.atlas.meta b/assets/shop/spin/piaoxue/skeleton.atlas.meta new file mode 100644 index 0000000..d00d85e --- /dev/null +++ b/assets/shop/spin/piaoxue/skeleton.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "27e67588-e485-4bc0-aaea-f98b674749ce", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/piaoxue/skeleton.json b/assets/shop/spin/piaoxue/skeleton.json new file mode 100644 index 0000000..47b2371 --- /dev/null +++ b/assets/shop/spin/piaoxue/skeleton.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"YoxdqpaYQe3WHaDT+IqqEu7Z3MY","spine":"3.8.99","x":-525.83,"y":379.88,"width":1032.39,"height":157.47,"images":"","audio":"D:/work/block/做完的/冻结"},"bones":[{"name":"root"},{"name":"xuehua","parent":"root","x":-288.17,"y":477.84},{"name":"xuehua3","parent":"root","x":306.27,"y":477.84},{"name":"xuehua4","parent":"root","x":-91.57,"y":477.84},{"name":"xuehua6","parent":"root","x":-418.64,"y":477.84},{"name":"xuehua8","parent":"root","x":-180.54,"y":477.84},{"name":"xuehua9","parent":"root","x":134.55,"y":477.84},{"name":"xuehua11","parent":"root","x":-289.1,"y":477.84},{"name":"xuehua12","parent":"root","x":188.75,"y":477.84},{"name":"xuehua14","parent":"root","x":-46.45,"y":525.35},{"name":"xuehua16","parent":"root","x":-477.83,"y":429.62},{"name":"xuehua17","parent":"root","x":-41.38,"y":429.62},{"name":"xuehua19","parent":"root","x":458.56,"y":477.84}],"slots":[{"name":"xuehua","bone":"xuehua","attachment":"xuehua"},{"name":"xuehua14","bone":"xuehua14","attachment":"yuan"},{"name":"xuehua6","bone":"xuehua6","attachment":"xuehua"},{"name":"xuehua3","bone":"xuehua3","attachment":"xuehua"},{"name":"xuehua19","bone":"xuehua19","attachment":"xuehua"},{"name":"xuehua16","bone":"xuehua16","attachment":"xuehua"},{"name":"xuehua17","bone":"xuehua17","attachment":"xuehua"},{"name":"xuehua12","bone":"xuehua12","attachment":"xuehua"},{"name":"xuehua11","bone":"xuehua11","attachment":"xuehua"},{"name":"xuehua9","bone":"xuehua9","attachment":"yuan"},{"name":"xuehua8","bone":"xuehua8","attachment":"xuehua2"},{"name":"xuehua4","bone":"xuehua4","attachment":"xuehua"}],"skins":[{"name":"default","attachments":{"xuehua":{"xuehua":{"y":-1.74,"scaleX":0.4,"scaleY":0.4,"width":160,"height":160}},"xuehua3":{"xuehua":{"y":-1.74,"scaleX":0.4,"scaleY":0.4,"width":160,"height":160}},"xuehua4":{"xuehua":{"y":-1.74,"scaleX":0.6,"scaleY":0.6,"width":160,"height":160}},"xuehua6":{"xuehua":{"y":-1.74,"scaleX":0.4,"scaleY":0.4,"width":160,"height":160}},"xuehua8":{"xuehua2":{"scaleX":0.3,"scaleY":0.3,"rotation":-15,"width":160,"height":160}},"xuehua9":{"yuan":{"scaleX":1.2,"scaleY":1.2,"width":24,"height":24}},"xuehua11":{"xuehua":{"y":-1.74,"scaleX":0.6,"scaleY":0.6,"width":160,"height":160}},"xuehua12":{"xuehua":{"y":-1.74,"scaleX":0.6,"scaleY":0.6,"width":160,"height":160}},"xuehua14":{"yuan":{"width":24,"height":24}},"xuehua16":{"xuehua":{"y":-1.74,"scaleX":0.6,"scaleY":0.6,"width":160,"height":160}},"xuehua17":{"xuehua":{"y":-1.74,"scaleX":0.6,"scaleY":0.6,"width":160,"height":160}},"xuehua19":{"xuehua":{"y":-1.74,"scaleX":0.6,"scaleY":0.6,"width":160,"height":160}}}}],"animations":{"animation":{"slots":{"xuehua":{"color":[{"color":"ffffff00"},{"time":0.5667,"color":"ffffffff","curve":"stepped"},{"time":8.0333,"color":"ffffffff"},{"time":8.3,"color":"ffffff00"}]},"xuehua3":{"color":[{"time":4.0333,"color":"ffffffff"},{"time":4.3,"color":"ffffff00"},{"time":4.8333,"color":"ffffff00"},{"time":5.4,"color":"ffffffff"}]},"xuehua4":{"color":[{"time":6.3667,"color":"ffffffff"},{"time":6.6333,"color":"ffffff00"},{"time":7.1667,"color":"ffffff00"},{"time":7.7333,"color":"ffffffff"}]},"xuehua6":{"color":[{"time":1.3667,"color":"ffffffff"},{"time":1.6333,"color":"ffffff00"},{"time":2.1667,"color":"ffffff00"},{"time":2.7333,"color":"ffffffff"}]},"xuehua8":{"color":[{"time":2.0333,"color":"ffffffff"},{"time":2.3,"color":"ffffff00"},{"time":2.8333,"color":"ffffff00"},{"time":3.4,"color":"ffffffff"}]},"xuehua9":{"color":[{"time":6.0333,"color":"ffffffff"},{"time":6.3,"color":"ffffff00"},{"time":6.8333,"color":"ffffff00"},{"time":7.4,"color":"ffffffff"}]},"xuehua11":{"color":[{"time":2.3667,"color":"ffffffff"},{"time":2.6333,"color":"ffffff00"},{"time":3.1667,"color":"ffffff00"},{"time":3.7333,"color":"ffffffff"}]},"xuehua12":{"color":[{"time":3.7,"color":"ffffffff"},{"time":3.9667,"color":"ffffff00"},{"time":4.5,"color":"ffffff00"},{"time":5.0667,"color":"ffffffff"}]},"xuehua14":{"color":[{"color":"ffffff00"},{"time":0.5667,"color":"ffffffff","curve":"stepped"},{"time":8.0333,"color":"ffffffff"},{"time":8.3,"color":"ffffff00"}]},"xuehua16":{"color":[{"color":"ffffff00"},{"time":0.5667,"color":"ffffffff","curve":"stepped"},{"time":8.0333,"color":"ffffffff"},{"time":8.3,"color":"ffffff00"}]},"xuehua17":{"color":[{"time":3.8,"color":"ffffffff"},{"time":4.0667,"color":"ffffff00"},{"time":4.6,"color":"ffffff00"},{"time":5.1667,"color":"ffffffff"}]},"xuehua19":{"color":[{"time":5.0333,"color":"ffffffff"},{"time":5.3,"color":"ffffff00"},{"time":5.8333,"color":"ffffff00"},{"time":6.4,"color":"ffffffff"}]}},"bones":{"xuehua":{"rotate":[{},{"time":8.3333,"angle":-110.85}],"translate":[{"y":24.32},{"time":8.3333,"y":-2427.51}]},"xuehua3":{"rotate":[{"angle":-53.21},{"time":4.3333,"angle":-110.85},{"time":4.8333},{"time":8.8333,"angle":-53.21}],"translate":[{"y":-1152.56},{"time":4.3333,"y":-2427.51},{"time":4.8333,"y":24.32},{"time":8.8333,"y":-1152.56}]},"xuehua4":{"rotate":[{"angle":-24.9},{"time":6.6667,"angle":-124.51},{"time":7.1667},{"time":8.8333,"angle":-24.9}],"translate":[{"y":-466.05},{"time":6.6667,"y":-2427.51},{"time":7.1667,"y":24.32},{"time":8.8333,"y":-466.05}]},"xuehua6":{"rotate":[{"angle":-88.68},{"time":1.6667,"angle":-110.85},{"time":2.1667},{"time":8.8333,"angle":-88.68}],"translate":[{"y":-1937.14},{"time":1.6667,"y":-2427.51},{"time":2.1667,"y":24.32},{"time":8.8333,"y":-1937.14}]},"xuehua8":{"rotate":[{"angle":-89.65},{"time":2.3333,"angle":-124.51},{"time":2.8333},{"time":8.8333,"angle":-89.65}],"translate":[{"y":-1741},{"time":2.3333,"y":-2427.51},{"time":2.8333,"y":24.32},{"time":8.8333,"y":-1741}]},"xuehua9":{"rotate":[{"angle":-29.88},{"time":6.3333,"angle":-124.51},{"time":6.8333},{"time":8.8333,"angle":-29.88}],"translate":[{"y":-564.12},{"time":6.3333,"y":-2427.51},{"time":6.8333,"y":24.32},{"time":8.8333,"y":-564.12}]},"xuehua11":{"rotate":[{"angle":-84.67},{"time":2.6667,"angle":-124.51},{"time":3.1667},{"time":8.8333,"angle":-84.67}],"translate":[{"y":-1642.92},{"time":2.6667,"y":-2427.51},{"time":3.1667,"y":24.32},{"time":8.8333,"y":-1642.92}]},"xuehua12":{"rotate":[{"angle":-64.75},{"time":4,"angle":-124.51},{"time":4.5},{"time":8.8333,"angle":-64.75}],"translate":[{"y":-1250.63},{"time":4,"y":-2427.51},{"time":4.5,"y":24.32},{"time":8.8333,"y":-1250.63}]},"xuehua14":{"rotate":[{},{"time":8.3333,"angle":-110.85}],"translate":[{"y":24.32},{"time":8.3333,"y":-2427.51}]},"xuehua16":{"rotate":[{},{"time":8.3333,"angle":-124.51}],"translate":[{"y":24.32},{"time":8.3333,"y":-2427.51}]},"xuehua17":{"rotate":[{"angle":-63.25},{"time":4.1,"angle":-124.51},{"time":4.6},{"time":8.8333,"angle":-63.25}],"translate":[{"y":-1221.21},{"time":4.1,"y":-2427.51},{"time":4.6,"y":24.32},{"time":8.8333,"y":-1221.21}]},"xuehua19":{"rotate":[{"angle":-44.82},{"time":5.3333,"angle":-124.51},{"time":5.8333},{"time":8.8333,"angle":-44.82}],"translate":[{"y":-858.34},{"time":5.3333,"y":-2427.51},{"time":5.8333,"y":24.32},{"time":8.8333,"y":-858.34}]}}}}} \ No newline at end of file diff --git a/assets/shop/spin/piaoxue/skeleton.json.meta b/assets/shop/spin/piaoxue/skeleton.json.meta new file mode 100644 index 0000000..7de240a --- /dev/null +++ b/assets/shop/spin/piaoxue/skeleton.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "4d241226-0521-4c37-a93a-c356928efdab", + "importer": "spine", + "textures": [ + "294e015c-1301-49e0-9213-1a55a67413ec" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/shop/spin/piaoxue/skeleton.png b/assets/shop/spin/piaoxue/skeleton.png new file mode 100644 index 0000000..963f77b Binary files /dev/null and b/assets/shop/spin/piaoxue/skeleton.png differ diff --git a/assets/shop/spin/piaoxue/skeleton.png.meta b/assets/shop/spin/piaoxue/skeleton.png.meta new file mode 100644 index 0000000..5c1f886 --- /dev/null +++ b/assets/shop/spin/piaoxue/skeleton.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "294e015c-1301-49e0-9213-1a55a67413ec", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 60, + "height": 140, + "platformSettings": {}, + "subMetas": { + "skeleton": { + "ver": "1.0.6", + "uuid": "5b7046a6-5b67-4db9-9f1a-1d62221dc8ee", + "importer": "sprite-frame", + "rawTextureUuid": "294e015c-1301-49e0-9213-1a55a67413ec", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 60, + "height": 140, + "rawWidth": 60, + "rawHeight": 140, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/creator.d.ts b/creator.d.ts new file mode 100644 index 0000000..4901db2 --- /dev/null +++ b/creator.d.ts @@ -0,0 +1,32079 @@ + +/** !#en +The main namespace of Cocos2d-JS, all engine core classes, functions, properties and constants are defined in this namespace. +!#zh +Cocos 引擎的主要命名空间,引擎代码中所有的类,函数,属性和常量都在这个命名空间中定义。 */ +interface Window { + initMgr: any; //控制全局信息 + android: any; //全局变量名 + } +declare namespace cc { + export var fx: any; + /** The current version of Cocos2d being used.
+ Please DO NOT remove this String, it is an important flag for bug tracking.
+ If you post a bug to forum, please attach this flag. */ + export var ENGINE_VERSION: string; + /** + !#en + Creates the speed action which changes the speed of an action, making it take longer (speed > 1) + or less (speed < 1) time.
+ Useful to simulate 'slow motion' or 'fast forward' effect. + !#zh 修改目标动作的速率。 + @param action action + @param speed speed + + @example + ```js + // change the target action speed; + var action = cc.scaleTo(0.2, 1, 0.6); + var newAction = cc.speed(action, 0.5); + ``` + */ + export function speed(action: ActionInterval, speed: number): Action; + /** + !#en Create a follow action which makes its target follows another node. + !#zh 追踪目标节点的位置。 + @param followedNode followedNode + @param rect rect + + @example + ```js + // example + // creates the action with a set boundary + var followAction = cc.follow(targetNode, cc.rect(0, 0, screenWidth * 2 - 100, screenHeight)); + node.runAction(followAction); + + // creates the action with no boundary set + var followAction = cc.follow(targetNode); + node.runAction(followAction); + ``` + */ + export function follow(followedNode: Node, rect: Rect): Action; + /** + Points setter + @param points points + */ + export function setPoints(points: any[]): void; + /** + !#en Creates an action with a Cardinal Spline array of points and tension. + !#zh 按基数样条曲线轨迹移动到目标位置。 + @param duration duration + @param points array of control points + @param tension tension + + @example + ```js + //create a cc.CardinalSplineTo + var action1 = cc.cardinalSplineTo(3, array, 0); + ``` + */ + export function cardinalSplineTo(duration: number, points: any[], tension: number): ActionInterval; + /** + update position of target + @param newPos newPos + */ + export function updatePosition(newPos: Vec2): void; + /** + !#en Creates an action with a Cardinal Spline array of points and tension. + !#zh 按基数样条曲线轨迹移动指定的距离。 + @param duration duration + @param points points + @param tension tension + */ + export function cardinalSplineBy(duration: number, points: any[], tension: number): ActionInterval; + /** + !#en Creates an action with a Cardinal Spline array of points and tension. + !#zh 按 Catmull Rom 样条曲线轨迹移动到目标位置。 + @param dt dt + @param points points + + @example + ```js + var action1 = cc.catmullRomTo(3, array); + ``` + */ + export function catmullRomTo(dt: number, points: any[]): ActionInterval; + /** + !#en Creates an action with a Cardinal Spline array of points and tension. + !#zh 按 Catmull Rom 样条曲线轨迹移动指定的距离。 + @param dt dt + @param points points + + @example + ```js + var action1 = cc.catmullRomBy(3, array); + ``` + */ + export function catmullRomBy(dt: number, points: any[]): ActionInterval; + /** + !#en + Creates the action easing object with the rate parameter.
+ From slow to fast. + !#zh 创建 easeIn 缓动对象,由慢到快。 + @param rate rate + + @example + ```js + action.easing(cc.easeIn(3.0)); + ``` + */ + export function easeIn(rate: number): any; + /** + !#en + Creates the action easing object with the rate parameter.
+ From fast to slow. + !#zh 创建 easeOut 缓动对象,由快到慢。 + @param rate rate + + @example + ```js + action.easing(cc.easeOut(3.0)); + ``` + */ + export function easeOut(rate: number): any; + /** + !#en + Creates the action easing object with the rate parameter.
+ Slow to fast then to slow. + !#zh 创建 easeInOut 缓动对象,慢到快,然后慢。 + @param rate rate + + @example + ```js + action.easing(cc.easeInOut(3.0)); + ``` + */ + export function easeInOut(rate: number): any; + /** + !#en + Creates the action easing object with the rate parameter.
+ Reference easeInExpo:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeExponentialIn 缓动对象。
+ EaseExponentialIn 是按指数函数缓动进入的动作。
+ 参考 easeInExpo:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + action.easing(cc.easeExponentialIn()); + ``` + */ + export function easeExponentialIn(): any; + /** + !#en + Creates the action easing object.
+ Reference easeOutExpo:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeExponentialOut 缓动对象。
+ EaseExponentialOut 是按指数函数缓动退出的动作。
+ 参考 easeOutExpo:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + action.easing(cc.easeExponentialOut()); + ``` + */ + export function easeExponentialOut(): any; + /** + !#en + Creates an EaseExponentialInOut action easing object.
+ Reference easeInOutExpo:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeExponentialInOut 缓动对象。
+ EaseExponentialInOut 是按指数函数缓动进入并退出的动作。
+ 参考 easeInOutExpo:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + action.easing(cc.easeExponentialInOut()); + ``` + */ + export function easeExponentialInOut(): any; + /** + !#en + Creates an EaseSineIn action.
+ Reference easeInSine:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 EaseSineIn 缓动对象。
+ EaseSineIn 是按正弦函数缓动进入的动作。
+ 参考 easeInSine:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + action.easing(cc.easeSineIn()); + ``` + */ + export function easeSineIn(): any; + /** + !#en + Creates an EaseSineOut action easing object.
+ Reference easeOutSine:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 EaseSineOut 缓动对象。
+ EaseSineIn 是按正弦函数缓动退出的动作。
+ 参考 easeOutSine:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + action.easing(cc.easeSineOut()); + ``` + */ + export function easeSineOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInOutSine:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeSineInOut 缓动对象。
+ EaseSineIn 是按正弦函数缓动进入并退出的动作。
+ 参考 easeInOutSine:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + action.easing(cc.easeSineInOut()); + ``` + */ + export function easeSineInOut(): any; + /** + !#en + Creates the action easing object with the period in radians (default is 0.3).
+ Reference easeInElastic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeElasticIn 缓动对象。
+ EaseElasticIn 是按弹性曲线缓动进入的动作。
+ 参数 easeInElastic:http://www.zhihu.com/question/21981571/answer/19925418 + @param period period + + @example + ```js + // example + action.easing(cc.easeElasticIn(3.0)); + ``` + */ + export function easeElasticIn(period: number): any; + /** + !#en + Creates the action easing object with the period in radians (default is 0.3).
+ Reference easeOutElastic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeElasticOut 缓动对象。
+ EaseElasticOut 是按弹性曲线缓动退出的动作。
+ 参考 easeOutElastic:http://www.zhihu.com/question/21981571/answer/19925418 + @param period period + + @example + ```js + // example + action.easing(cc.easeElasticOut(3.0)); + ``` + */ + export function easeElasticOut(period: number): any; + /** + !#en + Creates the action easing object with the period in radians (default is 0.3).
+ Reference easeInOutElastic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeElasticInOut 缓动对象。
+ EaseElasticInOut 是按弹性曲线缓动进入并退出的动作。
+ 参考 easeInOutElastic:http://www.zhihu.com/question/21981571/answer/19925418 + @param period period + + @example + ```js + // example + action.easing(cc.easeElasticInOut(3.0)); + ``` + */ + export function easeElasticInOut(period: number): any; + /** + !#en + Creates the action easing object.
+ Eased bounce effect at the beginning. + !#zh + 创建 easeBounceIn 缓动对象。
+ EaseBounceIn 是按弹跳动作缓动进入的动作。 + + @example + ```js + // example + action.easing(cc.easeBounceIn()); + ``` + */ + export function easeBounceIn(): any; + /** + !#en + Creates the action easing object.
+ Eased bounce effect at the ending. + !#zh + 创建 easeBounceOut 缓动对象。
+ EaseBounceOut 是按弹跳动作缓动退出的动作。 + + @example + ```js + // example + action.easing(cc.easeBounceOut()); + ``` + */ + export function easeBounceOut(): any; + /** + !#en + Creates the action easing object.
+ Eased bounce effect at the begining and ending. + !#zh + 创建 easeBounceInOut 缓动对象。
+ EaseBounceInOut 是按弹跳动作缓动进入并退出的动作。 + + @example + ```js + // example + action.easing(cc.easeBounceInOut()); + ``` + */ + export function easeBounceInOut(): any; + /** + !#en + Creates the action easing object.
+ In the opposite direction to move slowly, and then accelerated to the right direction. + !#zh + 创建 easeBackIn 缓动对象。
+ easeBackIn 是在相反的方向缓慢移动,然后加速到正确的方向。
+ + @example + ```js + // example + action.easing(cc.easeBackIn()); + ``` + */ + export function easeBackIn(): any; + /** + !#en + Creates the action easing object.
+ Fast moving more than the finish, and then slowly back to the finish. + !#zh + 创建 easeBackOut 缓动对象。
+ easeBackOut 快速移动超出目标,然后慢慢回到目标点。 + + @example + ```js + // example + action.easing(cc.easeBackOut()); + ``` + */ + export function easeBackOut(): any; + /** + !#en + Creates the action easing object.
+ Begining of cc.EaseBackIn. Ending of cc.EaseBackOut. + !#zh + 创建 easeBackInOut 缓动对象。
+ + @example + ```js + // example + action.easing(cc.easeBackInOut()); + ``` + */ + export function easeBackInOut(): any; + /** + !#en + Creates the action easing object.
+ Into the 4 reference point.
+ To calculate the motion curve. + !#zh + 创建 easeBezierAction 缓动对象。
+ EaseBezierAction 是按贝塞尔曲线缓动的动作。 + @param p0 The first bezier parameter + @param p1 The second bezier parameter + @param p2 The third bezier parameter + @param p3 The fourth bezier parameter + + @example + ```js + // example + action.easing(cc.easeBezierAction(0.5, 0.5, 1.0, 1.0)); + ``` + */ + export function easeBezierAction(p0: number, p1: number, p2: number, p3: number): any; + /** + !#en + Creates the action easing object.
+ Reference easeInQuad:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuadraticActionIn 缓动对象。
+ EaseQuadraticIn是按二次函数缓动进入的动作。
+ 参考 easeInQuad:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuadraticActionIn()); + ``` + */ + export function easeQuadraticActionIn(): any; + /** + !#en + Creates the action easing object.
+ Reference easeOutQuad:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuadraticActionOut 缓动对象。
+ EaseQuadraticOut 是按二次函数缓动退出的动作。
+ 参考 easeOutQuad:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuadraticActionOut()); + ``` + */ + export function easeQuadraticActionOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInOutQuad:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuadraticActionInOut 缓动对象。
+ EaseQuadraticInOut 是按二次函数缓动进入并退出的动作。
+ 参考 easeInOutQuad:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuadraticActionInOut()); + ``` + */ + export function easeQuadraticActionInOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeIntQuart:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuarticActionIn 缓动对象。
+ EaseQuarticIn 是按四次函数缓动进入的动作。
+ 参考 easeIntQuart:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuarticActionIn()); + ``` + */ + export function easeQuarticActionIn(): any; + /** + !#en + Creates the action easing object.
+ Reference easeOutQuart:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuarticActionOut 缓动对象。
+ EaseQuarticOut 是按四次函数缓动退出的动作。
+ 参考 easeOutQuart:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.QuarticActionOut()); + ``` + */ + export function easeQuarticActionOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInOutQuart:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuarticActionInOut 缓动对象。
+ EaseQuarticInOut 是按四次函数缓动进入并退出的动作。
+ 参考 easeInOutQuart:http://www.zhihu.com/question/21981571/answer/19925418 + */ + export function easeQuarticActionInOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInQuint:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuinticActionIn 缓动对象。
+ EaseQuinticIn 是按五次函数缓动进的动作。
+ 参考 easeInQuint:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuinticActionIn()); + ``` + */ + export function easeQuinticActionIn(): any; + /** + !#en + Creates the action easing object.
+ Reference easeOutQuint:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuinticActionOut 缓动对象。
+ EaseQuinticOut 是按五次函数缓动退出的动作 + 参考 easeOutQuint:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuadraticActionOut()); + ``` + */ + export function easeQuinticActionOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInOutQuint:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeQuinticActionInOut 缓动对象。
+ EaseQuinticInOut是按五次函数缓动进入并退出的动作。
+ 参考 easeInOutQuint:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeQuinticActionInOut()); + ``` + */ + export function easeQuinticActionInOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInCirc:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCircleActionIn 缓动对象。
+ EaseCircleIn是按圆形曲线缓动进入的动作。
+ 参考 easeInCirc:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeCircleActionIn()); + ``` + */ + export function easeCircleActionIn(): any; + /** + !#en + Creates the action easing object.
+ Reference easeOutCirc:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCircleActionOut 缓动对象。
+ EaseCircleOut是按圆形曲线缓动退出的动作。
+ 参考 easeOutCirc:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + actioneasing(cc.easeCircleActionOut()); + ``` + */ + export function easeCircleActionOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInOutCirc:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCircleActionInOut 缓动对象。
+ EaseCircleInOut 是按圆形曲线缓动进入并退出的动作。
+ 参考 easeInOutCirc:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeCircleActionInOut()); + ``` + */ + export function easeCircleActionInOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInCubic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCubicActionIn 缓动对象。
+ EaseCubicIn 是按三次函数缓动进入的动作。
+ 参考 easeInCubic:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeCubicActionIn()); + ``` + */ + export function easeCubicActionIn(): any; + /** + !#en + Creates the action easing object.
+ Reference easeOutCubic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCubicActionOut 缓动对象。
+ EaseCubicOut 是按三次函数缓动退出的动作。
+ 参考 easeOutCubic:http://www.zhihu.com/question/21981571/answer/19925418 + + @example + ```js + //example + action.easing(cc.easeCubicActionOut()); + ``` + */ + export function easeCubicActionOut(): any; + /** + !#en + Creates the action easing object.
+ Reference easeInOutCubic:
+ http://www.zhihu.com/question/21981571/answer/19925418 + !#zh + 创建 easeCubicActionInOut 缓动对象。
+ EaseCubicInOut是按三次函数缓动进入并退出的动作。
+ 参考 easeInOutCubic:http://www.zhihu.com/question/21981571/answer/19925418 + */ + export function easeCubicActionInOut(): any; + /** + !#en Show the Node. + !#zh 立即显示。 + + @example + ```js + // example + var showAction = cc.show(); + ``` + */ + export function show(): ActionInstant; + /** + !#en Hide the node. + !#zh 立即隐藏。 + + @example + ```js + // example + var hideAction = cc.hide(); + ``` + */ + export function hide(): ActionInstant; + /** + !#en Toggles the visibility of a node. + !#zh 显隐状态切换。 + + @example + ```js + // example + var toggleVisibilityAction = cc.toggleVisibility(); + ``` + */ + export function toggleVisibility(): ActionInstant; + /** + !#en Create a RemoveSelf object with a flag indicate whether the target should be cleaned up while removing. + !#zh 从父节点移除自身。 + @param isNeedCleanUp isNeedCleanUp + + @example + ```js + // example + var removeSelfAction = cc.removeSelf(); + ``` + */ + export function removeSelf(isNeedCleanUp ?: boolean): ActionInstant; + /** + !#en Destroy self + !#zh 创建一个销毁自身的动作。 + + @example + ```js + var destroySelfAction = cc.destroySelf(); + ``` + */ + export function destroySelf(): ActionInstant; + /** + !#en Create a FlipX action to flip or unflip the target. + !#zh X轴翻转。 + @param flip Indicate whether the target should be flipped or not + + @example + ```js + var flipXAction = cc.flipX(true); + ``` + */ + export function flipX(flip: boolean): ActionInstant; + /** + !#en Create a FlipY action to flip or unflip the target. + !#zh Y轴翻转。 + @param flip flip + + @example + ```js + var flipYAction = cc.flipY(true); + ``` + */ + export function flipY(flip: boolean): ActionInstant; + /** + !#en Creates a Place action with a position. + !#zh 放置在目标位置。 + @param pos pos + @param y y + + @example + ```js + // example + var placeAction = cc.place(cc.v2(200, 200)); + var placeAction = cc.place(200, 200); + ``` + */ + export function place(pos: Vec2|number, y?: number): ActionInstant; + /** + !#en Creates the action with the callback. + !#zh 执行回调函数。 + @param selector selector + @param selectorTarget selectorTarget + @param data data for function, it accepts all data types. + + @example + ```js + // example + // CallFunc without data + var finish = cc.callFunc(this.removeSprite, this); + + // CallFunc with data + var finish = cc.callFunc(this.removeFromParentAndCleanup, this._grossini, true); + ``` + */ + export function callFunc(selector: Function, selectorTarget?: any, data?: any): ActionInstant; + /** + !#en + Helper constructor to create an array of sequenceable actions + The created action will run actions sequentially, one after another. + !#zh 顺序执行动作,创建的动作将按顺序依次运行。 + @param actionOrActionArray actionOrActionArray + @param tempArray tempArray + + @example + ```js + // example + // create sequence with actions + var seq = cc.sequence(act1, act2); + + // create sequence with array + var seq = cc.sequence(actArray); + ``` + */ + export function sequence(actionOrActionArray: FiniteTimeAction|FiniteTimeAction[], ...tempArray: FiniteTimeAction[]): ActionInterval; + /** + !#en Creates a Repeat action. Times is an unsigned integer between 1 and pow(2,30) + !#zh 重复动作,可以按一定次数重复一个动,如果想永远重复一个动作请使用 repeatForever 动作来完成。 + @param action action + @param times times + + @example + ```js + // example + var rep = cc.repeat(cc.sequence(jump2, jump1), 5); + ``` + */ + export function repeat(action: FiniteTimeAction, times: number): ActionInterval; + /** + !#en Create a acton which repeat forever, as it runs forever, it can't be added into cc.sequence and cc.spawn. + !#zh 永远地重复一个动作,有限次数内重复一个动作请使用 repeat 动作,由于这个动作不会停止,所以不能被添加到 cc.sequence 或 cc.spawn 中。 + @param action action + + @example + ```js + // example + var repeat = cc.repeatForever(cc.rotateBy(1.0, 360)); + ``` + */ + export function repeatForever(action: FiniteTimeAction): ActionInterval; + /** + !#en Create a spawn action which runs several actions in parallel. + !#zh 同步执行动作,同步执行一组动作。 + @param actionOrActionArray actionOrActionArray + @param tempArray tempArray + + @example + ```js + // example + var action = cc.spawn(cc.jumpBy(2, cc.v2(300, 0), 50, 4), cc.rotateBy(2, 720)); + todo: It should be the direct use new + ``` + */ + export function spawn(actionOrActionArray: FiniteTimeAction|FiniteTimeAction[], ...tempArray: FiniteTimeAction[]): FiniteTimeAction; + /** + !#en + Rotates a Node object to a certain angle by modifying its angle property.
+ The direction will be decided by the shortest angle. + !#zh 旋转到目标角度,通过逐帧修改它的 angle 属性,旋转方向将由最短的角度决定。 + @param duration duration in seconds + @param dstAngle dstAngle in degrees. + + @example + ```js + // example + var rotateTo = cc.rotateTo(2, 61.0); + ``` + */ + export function rotateTo(duration: number, dstAngle: number): ActionInterval; + /** + !#en + Rotates a Node object clockwise a number of degrees by modifying its angle property. + Relative to its properties to modify. + !#zh 旋转指定的角度。 + @param duration duration in seconds + @param deltaAngle deltaAngle in degrees + + @example + ```js + // example + var actionBy = cc.rotateBy(2, 360); + ``` + */ + export function rotateBy(duration: number, deltaAngle: number): ActionInterval; + /** + !#en + Moves a Node object x,y pixels by modifying its position property.
+ x and y are relative to the position of the object.
+ Several MoveBy actions can be concurrently called, and the resulting
+ movement will be the sum of individual movements. + !#zh 移动指定的距离。 + @param duration duration in seconds + @param deltaPos deltaPos + @param deltaY deltaY + + @example + ```js + // example + var actionTo = cc.moveBy(2, cc.v2(windowSize.width - 40, windowSize.height - 40)); + ``` + */ + export function moveBy(duration: number, deltaPos: Vec2|number, deltaY?: number): ActionInterval; + /** + !#en + Moves a Node object to the position x,y. x and y are absolute coordinates by modifying its position property.
+ Several MoveTo actions can be concurrently called, and the resulting
+ movement will be the sum of individual movements. + !#zh 移动到目标位置。 + @param duration duration in seconds + @param position position + @param y y + + @example + ```js + // example + var actionBy = cc.moveTo(2, cc.v2(80, 80)); + ``` + */ + export function moveTo(duration: number, position: Vec2|number, y?: number): ActionInterval; + /** + !#en + Create a action which skews a Node object to given angles by modifying its skewX and skewY properties. + Changes to the specified value. + !#zh 偏斜到目标角度。 + @param t time in seconds + @param sx sx + @param sy sy + + @example + ```js + // example + var actionTo = cc.skewTo(2, 37.2, -37.2); + ``` + */ + export function skewTo(t: number, sx: number, sy: number): ActionInterval; + /** + !#en + Skews a Node object by skewX and skewY degrees.
+ Relative to its property modification. + !#zh 偏斜指定的角度。 + @param t time in seconds + @param sx sx skew in degrees for X axis + @param sy sy skew in degrees for Y axis + + @example + ```js + // example + var actionBy = cc.skewBy(2, 0, -90); + ``` + */ + export function skewBy(t: number, sx: number, sy: number): ActionInterval; + /** + !#en + Moves a Node object simulating a parabolic jump movement by modifying it's position property. + Relative to its movement. + !#zh 用跳跃的方式移动指定的距离。 + @param duration duration + @param position position + @param y y + @param height height + @param jumps jumps + + @example + ```js + // example + var actionBy = cc.jumpBy(2, cc.v2(300, 0), 50, 4); + var actionBy = cc.jumpBy(2, 300, 0, 50, 4); + ``` + */ + export function jumpBy(duration: number, position: Vec2|number, y?: number, height?: number, jumps?: number): ActionInterval; + /** + !#en + Moves a Node object to a parabolic position simulating a jump movement by modifying its position property.
+ Jump to the specified location. + !#zh 用跳跃的方式移动到目标位置。 + @param duration duration + @param position position + @param y y + @param height height + @param jumps jumps + + @example + ```js + // example + var actionTo = cc.jumpTo(2, cc.v2(300, 300), 50, 4); + var actionTo = cc.jumpTo(2, 300, 300, 50, 4); + ``` + */ + export function jumpTo(duration: number, position: Vec2|number, y?: number, height?: number, jumps?: number): ActionInterval; + /** + !#en + An action that moves the target with a cubic Bezier curve by a certain distance. + Relative to its movement. + !#zh 按贝赛尔曲线轨迹移动指定的距离。 + @param t time in seconds + @param c Array of points + + @example + ```js + // example + var bezier = [cc.v2(0, windowSize.height / 2), cc.v2(300, -windowSize.height / 2), cc.v2(300, 100)]; + var bezierForward = cc.bezierBy(3, bezier); + ``` + */ + export function bezierBy(t: number, c: Vec2[]): ActionInterval; + /** + !#en An action that moves the target with a cubic Bezier curve to a destination point. + !#zh 按贝赛尔曲线轨迹移动到目标位置。 + @param t t + @param c Array of points + + @example + ```js + // example + var bezier = [cc.v2(0, windowSize.height / 2), cc.v2(300, -windowSize.height / 2), cc.v2(300, 100)]; + var bezierTo = cc.bezierTo(2, bezier); + ``` + */ + export function bezierTo(t: number, c: Vec2[]): ActionInterval; + /** + !#en Scales a Node object to a zoom factor by modifying it's scale property. + !#zh 将节点大小缩放到指定的倍数。 + @param duration duration + @param sx scale parameter in X + @param sy scale parameter in Y, if Null equal to sx + + @example + ```js + // example + // It scales to 0.5 in both X and Y. + var actionTo = cc.scaleTo(2, 0.5); + + // It scales to 0.5 in x and 2 in Y + var actionTo = cc.scaleTo(2, 0.5, 2); + ``` + */ + export function scaleTo(duration: number, sx: number, sy?: number): ActionInterval; + /** + !#en + Scales a Node object a zoom factor by modifying it's scale property. + Relative to its changes. + !#zh 按指定的倍数缩放节点大小。 + @param duration duration in seconds + @param sx sx scale parameter in X + @param sy sy scale parameter in Y, if Null equal to sx + + @example + ```js + // example without sy, it scales by 2 both in X and Y + var actionBy = cc.scaleBy(2, 2); + + //example with sy, it scales by 0.25 in X and 4.5 in Y + var actionBy2 = cc.scaleBy(2, 0.25, 4.5); + ``` + */ + export function scaleBy(duration: number, sx: number, sy?: number|void): ActionInterval; + /** + !#en Blinks a Node object by modifying it's visible property. + !#zh 闪烁(基于透明度)。 + @param duration duration in seconds + @param blinks blinks in times + + @example + ```js + // example + var action = cc.blink(2, 10); + ``` + */ + export function blink(duration: number, blinks: number): ActionInterval; + /** + !#en + Fades an object that implements the cc.RGBAProtocol protocol. + It modifies the opacity from the current value to a custom one. + !#zh 修改透明度到指定值。 + @param duration duration + @param opacity 0-255, 0 is transparent + + @example + ```js + // example + var action = cc.fadeTo(1.0, 0); + ``` + */ + export function fadeTo(duration: number, opacity: number): ActionInterval; + /** + !#en Fades In an object that implements the cc.RGBAProtocol protocol. It modifies the opacity from 0 to 255. + !#zh 渐显效果。 + @param duration duration in seconds + + @example + ```js + //example + var action = cc.fadeIn(1.0); + ``` + */ + export function fadeIn(duration: number): ActionInterval; + /** + !#en Fades Out an object that implements the cc.RGBAProtocol protocol. It modifies the opacity from 255 to 0. + !#zh 渐隐效果。 + @param d duration in seconds + + @example + ```js + // example + var action = cc.fadeOut(1.0); + ``` + */ + export function fadeOut(d: number): ActionInterval; + /** + !#en Tints a Node that implements the cc.NodeRGB protocol from current tint to a custom one. + !#zh 修改颜色到指定值。 + @param duration duration + @param red 0-255 + @param green 0-255 + @param blue 0-255 + + @example + ```js + // example + var action = cc.tintTo(2, 255, 0, 255); + ``` + */ + export function tintTo(duration: number, red: number, green: number, blue: number): ActionInterval; + /** + !#en + Tints a Node that implements the cc.NodeRGB protocol from current tint to a custom one. + Relative to their own color change. + !#zh 按照指定的增量修改颜色。 + @param duration duration in seconds + @param deltaRed deltaRed + @param deltaGreen deltaGreen + @param deltaBlue deltaBlue + + @example + ```js + // example + var action = cc.tintBy(2, -127, -255, -127); + ``` + */ + export function tintBy(duration: number, deltaRed: number, deltaGreen: number, deltaBlue: number): ActionInterval; + /** + !#en Delays the action a certain amount of seconds. + !#zh 延迟指定的时间量。 + @param d duration in seconds + + @example + ```js + // example + var delay = cc.delayTime(1); + ``` + */ + export function delayTime(d: number): ActionInterval; + /** + !#en Executes an action in reverse order, from time=duration to time=0. + !#zh 反转目标动作的时间轴。 + @param action action + + @example + ```js + // example + var reverse = cc.reverseTime(this); + ``` + */ + export function reverseTime(action: FiniteTimeAction): ActionInterval; + /** + !#en Create an action with the specified action and forced target. + !#zh 用已有动作和一个新的目标节点创建动作。 + @param target target + @param action action + */ + export function targetedAction(target: Node, action: FiniteTimeAction): ActionInterval; + /** + + @param target the target to animate + */ + export function tween (target?: T) : Tween; + /** !#en This is a Easing instance. + !#zh 这是一个 Easing 类实例。 */ + export var easing: Easing; + /** + !#en + Outputs an error message to the Cocos Creator Console (editor) or Web Console (runtime).
+ - In Cocos Creator, error is red.
+ - In Chrome, error have a red icon along with red message text.
+ !#zh + 输出错误消息到 Cocos Creator 编辑器的 Console 或运行时页面端的 Console 中。
+ - 在 Cocos Creator 中,错误信息显示是红色的。
+ - 在 Chrome 中,错误信息有红色的图标以及红色的消息文本。
+ @param msg A JavaScript string containing zero or more substitution strings. + @param subst JavaScript objects with which to replace substitution strings within msg. This gives you additional control over the format of the output. + */ + export function error(msg: any, ...subst: any[]): void; + /** + !#en + Outputs a warning message to the Cocos Creator Console (editor) or Web Console (runtime). + - In Cocos Creator, warning is yellow. + - In Chrome, warning have a yellow warning icon with the message text. + !#zh + 输出警告消息到 Cocos Creator 编辑器的 Console 或运行时 Web 端的 Console 中。
+ - 在 Cocos Creator 中,警告信息显示是黄色的。
+ - 在 Chrome 中,警告信息有着黄色的图标以及黄色的消息文本。
+ @param msg A JavaScript string containing zero or more substitution strings. + @param subst JavaScript objects with which to replace substitution strings within msg. This gives you additional control over the format of the output. + */ + export function warn(msg: any, ...subst: any[]): void; + /** + !#en Outputs a message to the Cocos Creator Console (editor) or Web Console (runtime). + !#zh 输出一条消息到 Cocos Creator 编辑器的 Console 或运行时 Web 端的 Console 中。 + @param msg A JavaScript string containing zero or more substitution strings. + @param subst JavaScript objects with which to replace substitution strings within msg. This gives you additional control over the format of the output. + */ + export function log(msg: string|any, ...subst: any[]): void; + /** !#en Director + !#zh 导演类。 */ + export var director: Director; + /** !#en This is a Game instance. + !#zh 这是一个 Game 类的实例,包含游戏主体信息并负责驱动游戏的游戏对象。。 */ + export var game: Game; + /** + !#en + Rotates a Node object to a certain angle by modifying its quternion property.
+ The direction will be decided by the shortest angle. + !#zh 旋转到目标角度,通过逐帧修改它的 quternion 属性,旋转方向将由最短的角度决定。 + @param duration duration in seconds + @param dstAngleX dstAngleX in degrees. + @param dstAngleY dstAngleY in degrees. + @param dstAngleZ dstAngleZ in degrees. + + @example + ```js + // example + var rotate3DTo = cc.rotate3DTo(2, cc.v3(0, 180, 0)); + ``` + */ + export function rotate3DTo(duration: number, dstAngleX: number|Vec3|Quat, dstAngleY?: number, dstAngleZ?: number): ActionInterval; + /** + !#en + Rotates a Node object counter clockwise a number of degrees by modifying its quaternion property. + Relative to its properties to modify. + !#zh 旋转指定的 3D 角度。 + @param duration duration in seconds + @param deltaAngleX deltaAngleX in degrees + @param deltaAngleY deltaAngleY in degrees + @param deltaAngleZ deltaAngleZ in degrees + + @example + ```js + // example + var actionBy = cc.rotate3DBy(2, cc.v3(0, 360, 0)); + ``` + */ + export function rotate3DBy(duration: number, deltaAngleX: number|Vec3, deltaAngleY?: number, deltaAngleZ?: number): ActionInterval; + export var assetManager: AssetManager; + /** !#en + cc.resources is a bundle and controls all asset under assets/resources + + !#zh + cc.resources 是一个 bundle,用于管理所有在 assets/resources 下的资源 */ + export var resources: AssetManager.Bundle; + /** !#en The System event singleton for global usage + !#zh 系统事件单例,方便全局使用 */ + export var systemEvent: SystemEvent; + /** + !#en Defines a CCClass using the given specification, please see [Class](/docs/editors_and_tools/creator-chapters/scripting/class.html) for details. + !#zh 定义一个 CCClass,传入参数必须是一个包含类型参数的字面量对象,具体用法请查阅[类型定义](/docs/creator/scripting/class.html)。 + @param options options + + @example + ```js + // define base class + var Node = cc.Class(); + + // define sub class + var Sprite = cc.Class({ + name: 'Sprite', + extends: Node, + + ctor: function () { + this.url = ""; + this.id = 0; + }, + + statics: { + // define static members + count: 0, + getBounds: function (spriteList) { + // compute bounds... + } + }, + + properties { + width: { + default: 128, + type: cc.Integer, + tooltip: 'The width of sprite' + }, + height: 128, + size: { + get: function () { + return cc.v2(this.width, this.height); + } + } + }, + + load: function () { + // load this.url... + }; + }); + + // instantiate + + var obj = new Sprite(); + obj.url = 'sprite.png'; + obj.load(); + ``` + */ + export function Class(options?: {name?: string; extends?: Function; ctor?: Function; __ctor__?: Function; properties?: any; statics?: any; mixins?: Function[]; editor?: {executeInEditMode?: boolean; requireComponent?: Function; menu?: string; executionOrder?: number; disallowMultiple?: boolean; playOnFocus?: boolean; inspector?: string; icon?: string; help?: string; }; update?: Function; lateUpdate?: Function; onLoad?: Function; start?: Function; onEnable?: Function; onDisable?: Function; onDestroy?: Function; onFocusInEditor?: Function; onLostFocusInEditor?: Function; resetInEditor?: Function; onRestore?: Function; _getLocalBounds?: Function; }): Function; + /** + !#en + Define an enum type.
+ If a enum item has a value of -1, it will be given an Integer number according to it's order in the list.
+ Otherwise it will use the value specified by user who writes the enum definition. + + !#zh + 定义一个枚举类型。
+ 用户可以把枚举值设为任意的整数,如果设为 -1,系统将会分配为上一个枚举值 + 1。 + @param obj a JavaScript literal object containing enum names and values, or a TypeScript enum type + + @example + ```js + // JavaScript: + + var WrapMode = cc.Enum({ + Repeat: -1, + Clamp: -1 + }); + + // Texture.WrapMode.Repeat == 0 + // Texture.WrapMode.Clamp == 1 + // Texture.WrapMode[0] == "Repeat" + // Texture.WrapMode[1] == "Clamp" + + var FlagType = cc.Enum({ + Flag1: 1, + Flag2: 2, + Flag3: 4, + Flag4: 8, + }); + + var AtlasSizeList = cc.Enum({ + 128: 128, + 256: 256, + 512: 512, + 1024: 1024, + }); + + // TypeScript: + + // If used in TypeScript, just define a TypeScript enum: + enum Direction { + Up, + Down, + Left, + Right + } + + // If you need to inspect the enum in Properties panel, you can call cc.Enum: + const {ccclass, property} = cc._decorator; + + @ccclass + class NewScript extends cc.Component { + @property({ + type: cc.Enum(Direction) // call cc.Enum + }) + direction: Direction = Direction.Up; + } + + ``` + */ + export function Enum(obj: T): T; + /** + + @param touches touches + */ + export function handleTouchesBegin(touches: any[]): void; + /** + + @param touches touches + */ + export function handleTouchesMove(touches: any[]): void; + /** + + @param touches touches + */ + export function handleTouchesEnd(touches: any[]): void; + /** + + @param touches touches + */ + export function handleTouchesCancel(touches: any[]): void; + /** + + @param touches touches + */ + export function getSetOfTouchesEndOrCancel(touches: any[]): any[]; + /** + + @param touch touch + */ + export function getPreTouch(touch: Touch): Touch; + /** + + @param touch touch + */ + export function setPreTouch(touch: Touch): void; + /** + + @param tx tx + @param ty ty + @param pos pos + */ + export function getTouchByXY(tx: number, ty: number, pos: Vec2): Touch; + /** + + @param location location + @param pos pos + @param eventType eventType + */ + export function getMouseEvent(location: Vec2, pos: Vec2, eventType: number): Event.EventMouse; + /** + + @param event event + @param pos pos + */ + export function getPointByEvent(event: Touch, pos: Vec2): Vec2; + /** + + @param event event + @param pos pos + */ + export function getTouchesByEvent(event: Touch, pos: Vec2): any[]; + /** + + @param element element + */ + export function registerSystemEvent(element: HTMLElement): void; + /** + + @param dt dt + */ + export function update(dt: number): void; + /** + !#en + Checks whether the object is non-nil and not yet destroyed.
+ When an object's `destroy` is called, it is actually destroyed after the end of this frame. + So `isValid` will return false from the next frame, while `isValid` in the current frame will still be true. + If you want to determine whether the current frame has called `destroy`, use `cc.isValid(obj, true)`, + but this is often caused by a particular logical requirements, which is not normally required. + + !#zh + 检查该对象是否不为 null 并且尚未销毁。
+ 当一个对象的 `destroy` 调用以后,会在这一帧结束后才真正销毁。因此从下一帧开始 `isValid` 就会返回 false,而当前帧内 `isValid` 仍然会是 true。如果希望判断当前帧是否调用过 `destroy`,请使用 `cc.isValid(obj, true)`,不过这往往是特殊的业务需求引起的,通常情况下不需要这样。 + @param value value + @param strictMode If true, Object called destroy() in this frame will also treated as invalid. + + @example + ```js + var node = new cc.Node(); + cc.log(cc.isValid(node)); // true + node.destroy(); + cc.log(cc.isValid(node)); // true, still valid in this frame + // after a frame... + cc.log(cc.isValid(node)); // false, destroyed in the end of last frame + ``` + */ + export function isValid(value: any, strictMode?: boolean): boolean; + /** !#en cc.view is the shared view object. + !#zh cc.view 是全局的视图对象。 */ + export var view: View; + /** !#en cc.winSize is the alias object for the size of the current game window. + !#zh cc.winSize 为当前的游戏窗口的大小。 */ + export var winSize: Size; + /** Specify that the input value must be integer in Inspector. + Also used to indicates that the elements in array should be type integer. */ + export var Integer: string; + /** Indicates that the elements in array should be type double. */ + export var Float: string; + /** Indicates that the elements in array should be type boolean. */ + export var Boolean: string; + /** Indicates that the elements in array should be type string. */ + export var String: string; + /** + !#en Deserialize json to cc.Asset + !#zh 将 JSON 反序列化为对象实例。 + @param data the serialized cc.Asset json string or json object. + @param details additional loading result + @param options options + */ + export function deserialize(data: string|any, details?: Details, options?: any): any; + /** + !#en Clones the object `original` and returns the clone, or instantiate a node from the Prefab. + !#zh 克隆指定的任意类型的对象,或者从 Prefab 实例化出新节点。 + + (Instantiate 时,function 和 dom 等非可序列化对象会直接保留原有引用,Asset 会直接进行浅拷贝,可序列化类型会进行深拷贝。) + @param original An existing object that you want to make a copy of. + + @example + ```js + // instantiate node from prefab + var scene = cc.director.getScene(); + var node = cc.instantiate(prefabAsset); + node.parent = scene; + // clone node + var scene = cc.director.getScene(); + var node = cc.instantiate(targetNode); + node.parent = scene; + ``` + */ + export function instantiate(original: Prefab): Node; + export function instantiate(original: T): T; + /** + !#en + The convenience method to create a new {{#crossLink "Color/Color:method"}}cc.Color{{/crossLink}} + Alpha channel is optional. Default value is 255. + + !#zh + 通过该方法来创建一个新的 {{#crossLink "Color/Color:method"}}cc.Color{{/crossLink}} 对象。 + Alpha 通道是可选的。默认值是 255。 + @param r r + @param g g + @param b b + @param a a + + @example + ```js + ----------------------- + // 1. All channels seperately as parameters + var color1 = new cc.Color(255, 255, 255, 255); + // 2. Convert a hex string to a color + var color2 = new cc.Color("#000000"); + // 3. An color object as parameter + var color3 = new cc.Color({r: 255, g: 255, b: 255, a: 255}); + + ``` + */ + export function color(r?: number, g?: number, b?: number, a?: number): Color; + /** + !#en The convenience method to create a new {{#crossLink "Mat4"}}cc.Mat4{{/crossLink}}. + !#zh 通过该简便的函数进行创建 {{#crossLink "Mat4"}}cc.Mat4{{/crossLink}} 对象。 + @param m00 Component in column 0, row 0 position (index 0) + @param m01 Component in column 0, row 1 position (index 1) + @param m02 Component in column 0, row 2 position (index 2) + @param m03 Component in column 0, row 3 position (index 3) + @param m10 Component in column 1, row 0 position (index 4) + @param m11 Component in column 1, row 1 position (index 5) + @param m12 Component in column 1, row 2 position (index 6) + @param m13 Component in column 1, row 3 position (index 7) + @param m20 Component in column 2, row 0 position (index 8) + @param m21 Component in column 2, row 1 position (index 9) + @param m22 Component in column 2, row 2 position (index 10) + @param m23 Component in column 2, row 3 position (index 11) + @param m30 Component in column 3, row 0 position (index 12) + @param m31 Component in column 3, row 1 position (index 13) + @param m32 Component in column 3, row 2 position (index 14) + @param m33 Component in column 3, row 3 position (index 15) + */ + export function mat4(m00?: number, m01?: number, m02?: number, m03?: number, m10?: number, m11?: number, m12?: number, m13?: number, m20?: number, m21?: number, m22?: number, m23?: number, m30?: number, m31?: number, m32?: number, m33?: number): Mat4; + /** + !#en The convenience method to create a new {{#crossLink "Quat"}}cc.Quat{{/crossLink}}. + !#zh 通过该简便的函数进行创建 {{#crossLink "Quat"}}cc.Quat{{/crossLink}} 对象。 + @param x x + @param y y + @param z z + @param w w + */ + export function quat(x?: number|any, y?: number, z?: number, w?: number): Quat; + /** + !#en + Helper function that creates a cc.Size.
+ Please use cc.p or cc.v2 instead, it will soon replace cc.Size. + !#zh + 创建一个 cc.Size 对象的帮助函数。
+ 注意:可以使用 cc.p 或者是 cc.v2 代替,它们将很快取代 cc.Size。 + @param w width or a size object + @param h height + + @example + ```js + var size1 = cc.size(); + var size2 = cc.size(100,100); + var size3 = cc.size(size2); + var size4 = cc.size({width: 100, height: 100}); + + ``` + */ + export function size(w: number|Size, h?: number): Size; + export var EPSILON: number; + /** + Clamps a value between a minimum float and maximum float value. + @param val val + @param min min + @param max max + */ + export function clamp(val: number, min: number, max: number): number; + /** + Clamps a value between 0 and 1. + @param val val + */ + export function clamp01(val: number): number; + /** + + @param from from + @param to to + @param ratio the interpolation coefficient + */ + export function lerp(from: number, to: number, ratio: number): number; + export function random(): void; + /** + Returns a floating-point random number between min (inclusive) and max (exclusive). + @param min min + @param max max + */ + export function randomRange(min: number, max: number): number; + /** + Returns a random integer between min (inclusive) and max (exclusive). + @param min min + @param max max + */ + export function randomRangeInt(min: number, max: number): number; + /** + Linear congruential generator using Hull-Dobell Theorem. + @param seed the random seed + */ + export function pseudoRandom(seed: number): number; + /** + Returns a floating-point pseudo-random number between min (inclusive) and max (exclusive). + @param seed seed + @param min min + @param max max + */ + export function pseudoRandomRange(seed: number, min: number, max: number): number; + /** + Returns a pseudo-random integer between min (inclusive) and max (exclusive). + @param seed seed + @param min min + @param max max + */ + export function pseudoRandomRangeInt(seed: number, min: number, max: number): number; + /** + Returns the next power of two for the value + @param val val + */ + export function nextPow2(val: number): number; + /** + Returns float remainder for t / length + @param t time start at 0 + @param length time of one cycle + */ + export function repeat(t: number, length: number): number; + /** + Returns time wrapped in ping-pong mode + @param t time start at 0 + @param length time of one cycle + */ + export function repeat(t: number, length: number): number; + /** + Returns ratio of a value within a given range + @param from start value + @param to end value + @param value given value + */ + export function repeat(from: number, to: number, value: number): number; + /** + Returns -1, 0, +1 depending on sign of x. + @param v v + */ + export function sign(v: number): void; + /** + !#en The convenience method to create a new {{#crossLink "Vec2"}}cc.Vec2{{/crossLink}}. + !#zh 通过该简便的函数进行创建 {{#crossLink "Vec2"}}cc.Vec2{{/crossLink}} 对象。 + @param x x + @param y y + + @example + ```js + var v1 = cc.v2(); + var v2 = cc.v2(0, 0); + var v3 = cc.v2(v2); + var v4 = cc.v2({x: 100, y: 100}); + ``` + */ + export function v2(x?: number|any, y?: number): Vec2; + /** + !#en + The convenience method to create a new Rect. + see {{#crossLink "Rect/Rect:method"}}cc.Rect{{/crossLink}} + !#zh + 该方法用来快速创建一个新的矩形。{{#crossLink "Rect/Rect:method"}}cc.Rect{{/crossLink}} + @param x x + @param y y + @param w w + @param h h + + @example + ```js + var a = new cc.Rect(0 , 0, 10, 0); + ``` + */ + export function rect(x?: number, y?: number, w?: number, h?: number): Rect; + /** + !#en The convenience method to create a new {{#crossLink "Vec3"}}cc.Vec3{{/crossLink}}. + !#zh 通过该简便的函数进行创建 {{#crossLink "Vec3"}}cc.Vec3{{/crossLink}} 对象。 + @param x x + @param y y + @param z z + + @example + ```js + var v1 = cc.v3(); + var v2 = cc.v3(0, 0, 0); + var v3 = cc.v3(v2); + var v4 = cc.v3({x: 100, y: 100, z: 0}); + ``` + */ + export function v3(x?: number|any, y?: number, z?: number): Vec3; + /** + Finds a node by hierarchy path, the path is case-sensitive. + It will traverse the hierarchy by splitting the path using '/' character. + This function will still returns the node even if it is inactive. + It is recommended to not use this function every frame instead cache the result at startup. + @param path path + @param referenceNode referenceNode + */ + export function find(path: string, referenceNode?: Node): Node; + export var dynamicAtlasManager: DynamicAtlasManager; + /** !#en The matrix storage */ + export var matrix: any[]; + /** + !#en Get an element + @param i i + @param j j + */ + export function get(i: number, j: number): number; + /** + !#en Set an element + @param i i + @param j j + @param value value + */ + export function set(i: number, j: number, value: boolean): void; + /** + !#en Sets all elements to zero + */ + export function reset(): void; + /** !#en Base class cc.Action for action classes. + !#zh Action 类是所有动作类型的基类。 */ + export class Action { + /** + !#en + to copy object with deep copy. + returns a clone of action. + !#zh 返回一个克隆的动作。 + */ + clone(): Action; + /** + !#en + return true if the action has finished. + !#zh 如果动作已完成就返回 true。 + */ + isDone(): boolean; + /** + !#en get the target. + !#zh 获取当前目标节点。 + */ + getTarget(): Node; + /** + !#en The action will modify the target properties. + !#zh 设置目标节点。 + @param target target + */ + setTarget(target: Node): void; + /** + !#en get the original target. + !#zh 获取原始目标节点。 + */ + getOriginalTarget(): Node; + /** + !#en get tag number. + !#zh 获取用于识别动作的标签。 + */ + getTag(): number; + /** + !#en set tag number. + !#zh 设置标签,用于识别动作。 + @param tag tag + */ + setTag(tag: number): void; + /** !#en Default Action tag. + !#zh 默认动作标签。 */ + static TAG_INVALID: number; + } + /** !#en + Base class actions that do have a finite time duration.
+ Possible actions:
+ - An action with a duration of 0 seconds.
+ - An action with a duration of 35.5 seconds. + + Infinite time actions are valid + !#zh 有限时间动作,这种动作拥有时长 duration 属性。 */ + export class FiniteTimeAction extends Action { + /** + !#en get duration of the action. (seconds). + !#zh 获取动作以秒为单位的持续时间。 + */ + getDuration(): number; + /** + !#en set duration of the action. (seconds). + !#zh 设置动作以秒为单位的持续时间。 + @param duration duration + */ + setDuration(duration: number): void; + /** + !#en + Returns a reversed action.
+ For example:
+ - The action will be x coordinates of 0 move to 100.
+ - The reversed action will be x of 100 move to 0. + - Will be rewritten + !#zh 返回一个新的动作,执行与原动作完全相反的动作。 + */ + reverse(): void; + /** + !#en + to copy object with deep copy. + returns a clone of action. + !#zh 返回一个克隆的动作。 + */ + clone(): FiniteTimeAction; + } + /** !#en Instant actions are immediate actions. They don't have a duration like the ActionInterval actions. + !#zh 即时动作,这种动作立即就会执行,继承自 FiniteTimeAction。 */ + export class ActionInstant extends FiniteTimeAction { + } + /** !#en +

An interval action is an action that takes place within a certain period of time.
+ It has an start time, and a finish time. The finish time is the parameter
+ duration plus the start time.

+ +

These CCActionInterval actions have some interesting properties, like:
+ - They can run normally (default)
+ - They can run reversed with the reverse method
+ - They can run with the time altered with the Accelerate, AccelDeccel and Speed actions.

+ +

For example, you can simulate a Ping Pong effect running the action normally and
+ then running it again in Reverse mode.

+ !#zh 时间间隔动作,这种动作在已定时间内完成,继承 FiniteTimeAction。 */ + export class ActionInterval extends FiniteTimeAction { + /** + !#en Implementation of ease motion. + !#zh 缓动运动。 + @param easeObj easeObj + + @example + ```js + action.easing(cc.easeIn(3.0)); + ``` + */ + easing(easeObj: any): ActionInterval; + /** + !#en + Repeats an action a number of times. + To repeat an action forever use the CCRepeatForever action. + !#zh 重复动作可以按一定次数重复一个动作,使用 RepeatForever 动作来永远重复一个动作。 + @param times times + */ + repeat(times: number): ActionInterval; + /** + !#en + Repeats an action for ever.
+ To repeat the an action for a limited number of times use the Repeat action.
+ !#zh 永远地重复一个动作,有限次数内重复一个动作请使用 Repeat 动作。 + */ + repeatForever(): ActionInterval; + } + /** !#en + cc.ActionManager is a class that can manage actions.
+ Normally you won't need to use this class directly. 99% of the cases you will use the CCNode interface, + which uses this class's singleton object. + But there are some cases where you might need to use this class.
+ Examples:
+ - When you want to run an action where the target is different from a CCNode.
+ - When you want to pause / resume the actions
+ !#zh + cc.ActionManager 是可以管理动作的单例类。
+ 通常你并不需要直接使用这个类,99%的情况您将使用 CCNode 的接口。
+ 但也有一些情况下,您可能需要使用这个类。
+ 例如: + - 当你想要运行一个动作,但目标不是 CCNode 类型时。
+ - 当你想要暂停/恢复动作时。
*/ + export class ActionManager { + /** + !#en + Adds an action with a target.
+ If the target is already present, then the action will be added to the existing target. + If the target is not present, a new instance of this target will be created either paused or not, and the action will be added to the newly created target. + When the target is paused, the queued actions won't be 'ticked'. + !#zh + 增加一个动作,同时还需要提供动作的目标对象,目标对象是否暂停作为参数。
+ 如果目标已存在,动作将会被直接添加到现有的节点中。
+ 如果目标不存在,将为这一目标创建一个新的实例,并将动作添加进去。
+ 当目标状态的 paused 为 true,动作将不会被执行 + @param action action + @param target target + @param paused paused + */ + addAction(action: Action, target: Node, paused: boolean): void; + /** + !#en Removes all actions from all the targets. + !#zh 移除所有对象的所有动作。 + */ + removeAllActions(): void; + /** + !#en + Removes all actions from a certain target.
+ All the actions that belongs to the target will be removed. + !#zh + 移除指定对象上的所有动作。
+ 属于该目标的所有的动作将被删除。 + @param target target + @param forceDelete forceDelete + */ + removeAllActionsFromTarget(target: Node, forceDelete: boolean): void; + /** + !#en Removes an action given an action reference. + !#zh 移除指定的动作。 + @param action action + */ + removeAction(action: Action): void; + /** + !#en Removes an action given its tag and the target. + !#zh 删除指定对象下特定标签的一个动作,将删除首个匹配到的动作。 + @param tag tag + @param target target + */ + removeActionByTag(tag: number, target?: Node): void; + /** + !#en Gets an action given its tag an a target. + !#zh 通过目标对象和标签获取一个动作。 + @param tag tag + @param target target + */ + getActionByTag(tag: number, target: Node): Action; + /** + !#en + Returns the numbers of actions that are running in a certain target.
+ Composable actions are counted as 1 action.
+ Example:
+ - If you are running 1 Sequence of 7 actions, it will return 1.
+ - If you are running 7 Sequences of 2 actions, it will return 7. + !#zh + 返回指定对象下所有正在运行的动作数量。
+ 组合动作被算作一个动作。
+ 例如:
+ - 如果您正在运行 7 个动作组成的序列动作(Sequence),这个函数将返回 1。
+ - 如果你正在运行 2 个序列动作(Sequence)和 5 个普通动作,这个函数将返回 7。
+ @param target target + */ + getNumberOfRunningActionsInTarget(target: Node): number; + /** + !#en Pauses the target: all running actions and newly added actions will be paused. + !#zh 暂停指定对象:所有正在运行的动作和新添加的动作都将会暂停。 + @param target target + */ + pauseTarget(target: Node): void; + /** + !#en Resumes the target. All queued actions will be resumed. + !#zh 让指定目标恢复运行。在执行序列中所有被暂停的动作将重新恢复运行。 + @param target target + */ + resumeTarget(target: Node): void; + /** + !#en Pauses all running actions, returning a list of targets whose actions were paused. + !#zh 暂停所有正在运行的动作,返回一个包含了那些动作被暂停了的目标对象的列表。 + */ + pauseAllRunningActions(): any[]; + /** + !#en Resume a set of targets (convenience function to reverse a pauseAllRunningActions or pauseTargets call). + !#zh 让一组指定对象恢复运行(用来逆转 pauseAllRunningActions 效果的便捷函数)。 + @param targetsToResume targetsToResume + */ + resumeTargets(targetsToResume: any[]): void; + /** + !#en Pause a set of targets. + !#zh 暂停一组指定对象。 + @param targetsToPause targetsToPause + */ + pauseTargets(targetsToPause: any[]): void; + /** + !#en + purges the shared action manager. It releases the retained instance.
+ because it uses this, so it can not be static. + !#zh + 清除共用的动作管理器。它释放了持有的实例。
+ 因为它使用 this,因此它不能是静态的。 + */ + purgeSharedManager(): void; + /** + !#en The ActionManager update。 + !#zh ActionManager 主循环。 + @param dt delta time in seconds + */ + update(dt: number): void; + } + /** !#en + Tween provide a simple and flexible way to create action. Tween's api is more flexible than `cc.Action`: + - Support creating an action sequence in chained api. + - Support animate any objects' any properties, not limited to node's properties. By contrast, `cc.Action` needs to create a new action class to support new node property. + - Support working with `cc.Action`. + - Support easing and progress function. + !#zh + Tween 提供了一个简单灵活的方法来创建 action。相对于 Cocos 传统的 `cc.Action`,`cc.Tween` 在创建动画上要灵活非常多: + - 支持以链式结构的方式创建一个动画序列。 + - 支持对任意对象的任意属性进行缓动,不再局限于节点上的属性,而 `cc.Action` 添加一个属性的支持时还需要添加一个新的 action 类型。 + - 支持与 `cc.Action` 混用。 + - 支持设置 {{#crossLink "Easing"}}{{/crossLink}} 或者 progress 函数。 */ + export class Tween { + /** + + @param target target + */ + constructor(target?: any); + /** + !#en Stop all tweens + !#zh 停止所有缓动 + */ + static stopAll(): void; + /** + !#en Stop all tweens by tag + !#zh 停止所有指定标签的缓动 + @param tag tag + */ + static stopAllByTag(tag: number): void; + /** + !#en Stop all tweens by target + !#zh 停止所有指定对象的缓动 + @param target target + */ + static stopAllByTarget(target: any): void; + /** + !#en + Insert an action or tween to this sequence + !#zh + 插入一个 action 或者 tween 到队列中 + @param other other + */ + then(other: Action|Tween): Tween; + /** + !#en + Set tween target + !#zh + 设置 tween 的 target + @param target target + */ + target(target: any): Tween; + /** + !#en + Start this tween + !#zh + 运行当前 tween + */ + start(): Tween; + /** + !#en + Stop this tween + !#zh + 停止当前 tween + */ + stop(): Tween; + /** + !#en Sets tween tag + !#zh 设置缓动的标签 + @param tag tag + */ + tag(tag: number): Tween; + /** + !#en + Clone a tween + !#zh + 克隆当前 tween + @param target target + */ + clone(target?: any): Tween; + /** + !#en + Integrate all previous actions to an action. + !#zh + 将之前所有的 action 整合为一个 action。 + */ + union(): Tween; + /** + !#en Sets target's position property according to the bezier curve. + !#zh 按照贝塞尔路径设置目标的 position 属性。 + @param duration duration + @param c1 c1 + @param c2 c2 + @param to to + */ + bezierTo(duration: number, c1: Vec2, c2: Vec2, to: Vec2): Tween; + /** + !#en Sets target's position property according to the bezier curve. + !#zh 按照贝塞尔路径设置目标的 position 属性。 + @param duration duration + @param c1 c1 + @param c2 c2 + @param to to + */ + bezierBy(duration: number, c1: Vec2, c2: Vec2, to: Vec2): Tween; + /** + !#en Flips target's scaleX + !#zh 翻转目标的 scaleX 属性 + */ + flipX(): Tween; + /** + !#en Flips target's scaleY + !#zh 翻转目标的 scaleY 属性 + */ + flipY(): Tween; + /** + !#en Blinks target by set target's opacity property + !#zh 通过设置目标的 opacity 属性达到闪烁效果 + @param duration duration + @param times times + @param opts opts + */ + blink(duration: number, times: number, opts?: {progress?: Function; easing?: Function|string; }): Tween; + /** + !#en + Add an action which calculate with absolute value + !#zh + 添加一个对属性进行绝对值计算的 action + @param duration duration + @param props {scale: 2, position: cc.v3(100, 100, 100)} + @param opts opts + */ + to>(duration: number, props: ConstructorType, opts?: OPTS): Tween; + /** + !#en + Add an action which calculate with relative value + !#zh + 添加一个对属性进行相对值计算的 action + @param duration duration + @param props {scale: 2, position: cc.v3(100, 100, 100)} + @param opts opts + */ + by>(duration: number, props: ConstructorType, opts?: OPTS): Tween; + /** + !#en + Directly set target properties + !#zh + 直接设置 target 的属性 + @param props props + */ + set (props: ConstructorType) : Tween; + /** + !#en + Add an delay action + !#zh + 添加一个延时 action + @param duration duration + */ + delay(duration: number): Tween; + /** + !#en + Add an callback action + !#zh + 添加一个回调 action + @param callback callback + @param selectTarget selectTarget + */ + call(callback: Function, selectTarget?: object): Tween; + /** + !#en + Add an hide action + !#zh + 添加一个隐藏 action + */ + hide(): Tween; + /** + !#en + Add an show action + !#zh + 添加一个显示 action + */ + show(): Tween; + /** + !#en + Add an removeSelf action + !#zh + 添加一个移除自己 action + */ + removeSelf(): Tween; + /** + !#en + Add an sequence action + !#zh + 添加一个队列 action + @param action action + @param actions actions + */ + sequence(action: Action|Tween, ...actions: (Action|Tween)[]): Tween; + /** + !#en + Add an parallel action + !#zh + 添加一个并行 action + @param action action + @param actions actions + */ + parallel(action: Action|Tween, ...actions: (Action|Tween)[]): Tween; + /** + !#en + Add an repeat action. This action will integrate before actions to a sequence action as their parameters. + !#zh + 添加一个重复 action,这个 action 会将前一个动作作为他的参数。 + @param repeatTimes repeatTimes + @param action action + */ + repeat(repeatTimes: number, action?: Action|Tween): Tween; + /** + !#en + Add an repeat forever action. This action will integrate before actions to a sequence action as their parameters. + !#zh + 添加一个永久重复 action,这个 action 会将前一个动作作为他的参数。 + @param action action + */ + repeatForever(action?: Action|Tween): Tween; + /** + !#en + Add an reverse time action. This action will integrate before actions to a sequence action as their parameters. + !#zh + 添加一个倒置时间 action,这个 action 会将前一个动作作为他的参数。 + @param action action + */ + reverseTime(action?: Action|Tween): Tween; + } + /** !#en `cc.audioEngine` is the singleton object, it provide simple audio APIs. + !#zh + cc.audioengine是单例对象。
+ 主要用来播放音频,播放的时候会返回一个 audioID,之后都可以通过这个 audioID 来操作这个音频对象。
+ 不使用的时候,请使用 `cc.audioEngine.uncache(filePath);` 进行资源释放
+ 注意:
+ 在 Android 系统浏览器上,不同浏览器,不同版本的效果不尽相同。
+ 比如说:大多数浏览器都需要用户物理交互才可以开始播放音效,有一些不支持 WebAudio,有一些不支持多音轨播放。总之如果对音乐依赖比较强,请做尽可能多的测试。 */ + export class audioEngine { + /** + !#en Play audio. + !#zh 播放音频 + @param clip The audio clip to play. + @param loop Whether the music loop or not. + @param volume Volume size. + + @example + ```js + cc.resources.load(path, cc.AudioClip, null, function (err, clip) { + var audioID = cc.audioEngine.play(clip, false, 0.5); + }); + ``` + */ + static play(clip: AudioClip, loop: boolean, volume: number): number; + /** + !#en Set audio loop. + !#zh 设置音频是否循环。 + @param audioID audio id. + @param loop Whether cycle. + + @example + ```js + cc.audioEngine.setLoop(id, true); + ``` + */ + static setLoop(audioID: number, loop: boolean): void; + /** + !#en Get audio cycle state. + !#zh 获取音频的循环状态。 + @param audioID audio id. + + @example + ```js + cc.audioEngine.isLoop(id); + ``` + */ + static isLoop(audioID: number): boolean; + /** + !#en Set the volume of audio. + !#zh 设置音量(0.0 ~ 1.0)。 + @param audioID audio id. + @param volume Volume must be in 0.0~1.0 . + + @example + ```js + cc.audioEngine.setVolume(id, 0.5); + ``` + */ + static setVolume(audioID: number, volume: number): void; + /** + !#en The volume of the music max value is 1.0,the min value is 0.0 . + !#zh 获取音量(0.0 ~ 1.0)。 + @param audioID audio id. + + @example + ```js + var volume = cc.audioEngine.getVolume(id); + ``` + */ + static getVolume(audioID: number): number; + /** + !#en Set current time + !#zh 设置当前的音频时间。 + @param audioID audio id. + @param sec current time. + + @example + ```js + cc.audioEngine.setCurrentTime(id, 2); + ``` + */ + static setCurrentTime(audioID: number, sec: number): boolean; + /** + !#en Get current time + !#zh 获取当前的音频播放时间。 + @param audioID audio id. + + @example + ```js + var time = cc.audioEngine.getCurrentTime(id); + ``` + */ + static getCurrentTime(audioID: number): number; + /** + !#en Get audio duration + !#zh 获取音频总时长。 + @param audioID audio id. + + @example + ```js + var time = cc.audioEngine.getDuration(id); + ``` + */ + static getDuration(audioID: number): number; + /** + !#en Get audio state + !#zh 获取音频状态。 + @param audioID audio id. + + @example + ```js + var state = cc.audioEngine.getState(id); + ``` + */ + static getState(audioID: number): audioEngine.AudioState; + /** + !#en Set Audio finish callback + !#zh 设置一个音频结束后的回调 + @param audioID audio id. + @param callback loaded callback. + + @example + ```js + cc.audioEngine.setFinishCallback(id, function () {}); + ``` + */ + static setFinishCallback(audioID: number, callback: Function): void; + /** + !#en Pause playing audio. + !#zh 暂停正在播放音频。 + @param audioID The return value of function play. + + @example + ```js + cc.audioEngine.pause(audioID); + ``` + */ + static pause(audioID: number): void; + /** + !#en Pause all playing audio + !#zh 暂停现在正在播放的所有音频。 + + @example + ```js + cc.audioEngine.pauseAll(); + ``` + */ + static pauseAll(): void; + /** + !#en Resume playing audio. + !#zh 恢复播放指定的音频。 + @param audioID The return value of function play. + + @example + ```js + cc.audioEngine.resume(audioID); + ``` + */ + static resume(audioID: number): void; + /** + !#en Resume all playing audio. + !#zh 恢复播放所有之前暂停的所有音频。 + + @example + ```js + cc.audioEngine.resumeAll(); + ``` + */ + static resumeAll(): void; + /** + !#en Stop playing audio. + !#zh 停止播放指定音频。 + @param audioID The return value of function play. + + @example + ```js + cc.audioEngine.stop(audioID); + ``` + */ + static stop(audioID: number): void; + /** + !#en Stop all playing audio. + !#zh 停止正在播放的所有音频。 + + @example + ```js + cc.audioEngine.stopAll(); + ``` + */ + static stopAll(): void; + /** + !#en Set up an audio can generate a few examples. + !#zh 设置一个音频可以设置几个实例 + @param num a number of instances to be created from within an audio + + @example + ```js + cc.audioEngine.setMaxAudioInstance(20); + ``` + */ + static setMaxAudioInstance(num: number): void; + /** + !#en Getting audio can produce several examples. + !#zh 获取一个音频可以设置几个实例 + + @example + ```js + cc.audioEngine.getMaxAudioInstance(); + ``` + */ + static getMaxAudioInstance(): number; + /** + !#en Unload the preloaded audio from internal buffer. + !#zh 卸载预加载的音频。 + @param clip clip + + @example + ```js + cc.audioEngine.uncache(filePath); + ``` + */ + static uncache(clip: AudioClip): void; + /** + !#en Unload all audio from internal buffer. + !#zh 卸载所有音频。 + + @example + ```js + cc.audioEngine.uncacheAll(); + ``` + */ + static uncacheAll(): void; + /** + !#en Play background music + !#zh 播放背景音乐 + @param clip The audio clip to play. + @param loop Whether the music loop or not. + + @example + ```js + cc.resources.load(path, cc.AudioClip, null, function (err, clip) { + var audioID = cc.audioEngine.playMusic(clip, false); + }); + ``` + */ + static playMusic(clip: AudioClip, loop: boolean): number; + /** + !#en Stop background music. + !#zh 停止播放背景音乐。 + + @example + ```js + cc.audioEngine.stopMusic(); + ``` + */ + static stopMusic(): void; + /** + !#en Pause the background music. + !#zh 暂停播放背景音乐。 + + @example + ```js + cc.audioEngine.pauseMusic(); + ``` + */ + static pauseMusic(): void; + /** + !#en Resume playing background music. + !#zh 恢复播放背景音乐。 + + @example + ```js + cc.audioEngine.resumeMusic(); + ``` + */ + static resumeMusic(): void; + /** + !#en Get the volume(0.0 ~ 1.0). + !#zh 获取音量(0.0 ~ 1.0)。 + + @example + ```js + var volume = cc.audioEngine.getMusicVolume(); + ``` + */ + static getMusicVolume(): number; + /** + !#en Set the background music volume. + !#zh 设置背景音乐音量(0.0 ~ 1.0)。 + @param volume Volume must be in 0.0~1.0. + + @example + ```js + cc.audioEngine.setMusicVolume(0.5); + ``` + */ + static setMusicVolume(volume: number): void; + /** + !#en Background music playing state + !#zh 背景音乐是否正在播放 + + @example + ```js + cc.audioEngine.isMusicPlaying(); + ``` + */ + static isMusicPlaying(): boolean; + /** + !#en Play effect audio. + !#zh 播放音效 + @param clip The audio clip to play. + @param loop Whether the music loop or not. + + @example + ```js + cc.resources.load(path, cc.AudioClip, null, function (err, clip) { + var audioID = cc.audioEngine.playEffect(clip, false); + }); + ``` + */ + static playEffect(clip: AudioClip, loop: boolean): number; + /** + !#en Set the volume of effect audio. + !#zh 设置音效音量(0.0 ~ 1.0)。 + @param volume Volume must be in 0.0~1.0. + + @example + ```js + cc.audioEngine.setEffectsVolume(0.5); + ``` + */ + static setEffectsVolume(volume: number): void; + /** + !#en The volume of the effect audio max value is 1.0,the min value is 0.0 . + !#zh 获取音效音量(0.0 ~ 1.0)。 + + @example + ```js + var volume = cc.audioEngine.getEffectsVolume(); + ``` + */ + static getEffectsVolume(): number; + /** + !#en Pause effect audio. + !#zh 暂停播放音效。 + @param audioID audio id. + + @example + ```js + cc.audioEngine.pauseEffect(audioID); + ``` + */ + static pauseEffect(audioID: number): void; + /** + !#en Stop playing all the sound effects. + !#zh 暂停播放所有音效。 + + @example + ```js + cc.audioEngine.pauseAllEffects(); + ``` + */ + static pauseAllEffects(): void; + /** + !#en Resume effect audio. + !#zh 恢复播放音效音频。 + @param audioID The return value of function play. + + @example + ```js + cc.audioEngine.resumeEffect(audioID); + ``` + */ + static resumeEffect(audioID: number): void; + /** + !#en Resume all effect audio. + !#zh 恢复播放所有之前暂停的音效。 + + @example + ```js + cc.audioEngine.resumeAllEffects(); + ``` + */ + static resumeAllEffects(): void; + /** + !#en Stop playing the effect audio. + !#zh 停止播放音效。 + @param audioID audio id. + + @example + ```js + cc.audioEngine.stopEffect(id); + ``` + */ + static stopEffect(audioID: number): void; + /** + !#en Stop playing all the effects. + !#zh 停止播放所有音效。 + + @example + ```js + cc.audioEngine.stopAllEffects(); + ``` + */ + static stopAllEffects(): void; + } + /** !#en Class for animation data handling. + !#zh 动画剪辑,用于存储动画数据。 */ + export class AnimationClip extends Asset { + /** !#en Duration of this animation. + !#zh 动画的持续时间。 */ + duration: number; + /** !#en FrameRate of this animation. + !#zh 动画的帧速率。 */ + sample: number; + /** !#en Speed of this animation. + !#zh 动画的播放速度。 */ + speed: number; + /** !#en WrapMode of this animation. + !#zh 动画的循环模式。 */ + wrapMode: WrapMode; + /** !#en Curve data. + !#zh 曲线数据。 */ + curveData: any; + /** !#en Event data. + !#zh 事件数据。 */ + events: {frame: number, func: string, params: string[]}[]; + /** + !#en Crate clip with a set of sprite frames + !#zh 使用一组序列帧图片来创建动画剪辑 + @param spriteFrames spriteFrames + @param sample sample + + @example + ```js + var clip = cc.AnimationClip.createWithSpriteFrames(spriteFrames, 10); + ``` + */ + static createWithSpriteFrames(spriteFrames: SpriteFrame[], sample: number): AnimationClip; + } + /** !#en + The AnimationState gives full control over animation playback process. + In most cases the Animation Component is sufficient and easier to use. Use the AnimationState if you need full control. + !#zh + AnimationState 完全控制动画播放过程。
+ 大多数情况下 动画组件 是足够和易于使用的。如果您需要更多的动画控制接口,请使用 AnimationState。 */ + export class AnimationState extends Playable { + /** + + @param clip clip + @param name name + */ + constructor(clip: AnimationClip, name?: string); + /** !#en The curves list. + !#zh 曲线列表。 */ + curves: any[]; + /** !#en The start delay which represents the number of seconds from an animation's start time to the start of + the active interval. + !#zh 延迟多少秒播放。 */ + delay: number; + /** !#en The animation's iteration count property. + + A real number greater than or equal to zero (including positive infinity) representing the number of times + to repeat the animation node. + + Values less than zero and NaN values are treated as the value 1.0 for the purpose of timing model + calculations. + + !#zh 迭代次数,指动画播放多少次后结束, normalize time。 如 2.5(2次半) */ + repeatCount: number; + /** !#en The iteration duration of this animation in seconds. (length) + !#zh 单次动画的持续时间,秒。 */ + duration: number; + /** !#en The animation's playback speed. 1 is normal playback speed. + !#zh 播放速率。 */ + speed: number; + /** !#en + Wrapping mode of the playing animation. + Notice : dynamic change wrapMode will reset time and repeatCount property + !#zh + 动画循环方式。 + 需要注意的是,动态修改 wrapMode 时,会重置 time 以及 repeatCount */ + wrapMode: WrapMode; + /** !#en The current time of this animation in seconds. + !#zh 动画当前的时间,秒。 */ + time: number; + /** !#en The clip that is being played by this animation state. + !#zh 此动画状态正在播放的剪辑。 */ + clip: AnimationClip; + /** !#en The name of the playing animation. + !#zh 动画的名字 */ + name: string; + } + /** !#en + This class provide easing methods for {{#crossLink "tween"}}{{/crossLink}} class.
+ Demonstratio: https://easings.net/ + !#zh + 缓动函数类,为 {{#crossLink "Tween"}}{{/crossLink}} 提供缓动效果函数。
+ 函数效果演示: https://easings.net/ */ + export class Easing { + /** + !#en Easing in with quadratic formula. From slow to fast. + !#zh 平方曲线缓入函数。运动由慢到快。 + @param t The current time as a percentage of the total time. + */ + quadIn(t: number): number; + /** + !#en Easing out with quadratic formula. From fast to slow. + !#zh 平方曲线缓出函数。运动由快到慢。 + @param t The current time as a percentage of the total time. + */ + quadOut(t: number): number; + /** + !#en Easing in and out with quadratic formula. From slow to fast, then back to slow. + !#zh 平方曲线缓入缓出函数。运动由慢到快再到慢。 + @param t The current time as a percentage of the total time. + */ + quadInOut(t: number): number; + /** + !#en Easing in with cubic formula. From slow to fast. + !#zh 立方曲线缓入函数。运动由慢到快。 + @param t The current time as a percentage of the total time. + */ + cubicIn(t: number): number; + /** + !#en Easing out with cubic formula. From slow to fast. + !#zh 立方曲线缓出函数。运动由快到慢。 + @param t The current time as a percentage of the total time. + */ + cubicOut(t: number): number; + /** + !#en Easing in and out with cubic formula. From slow to fast, then back to slow. + !#zh 立方曲线缓入缓出函数。运动由慢到快再到慢。 + @param t The current time as a percentage of the total time. + */ + cubicInOut(t: number): number; + /** + !#en Easing in with quartic formula. From slow to fast. + !#zh 四次方曲线缓入函数。运动由慢到快。 + @param t The current time as a percentage of the total time. + */ + quartIn(t: number): number; + /** + !#en Easing out with quartic formula. From fast to slow. + !#zh 四次方曲线缓出函数。运动由快到慢。 + @param t The current time as a percentage of the total time. + */ + quartOut(t: number): number; + /** + !#en Easing in and out with quartic formula. From slow to fast, then back to slow. + !#zh 四次方曲线缓入缓出函数。运动由慢到快再到慢。 + @param t The current time as a percentage of the total time. + */ + quartInOut(t: number): number; + /** + !#en Easing in with quintic formula. From slow to fast. + !#zh 五次方曲线缓入函数。运动由慢到快。 + @param t The current time as a percentage of the total time. + */ + quintIn(t: number): number; + /** + !#en Easing out with quintic formula. From fast to slow. + !#zh 五次方曲线缓出函数。运动由快到慢。 + @param t The current time as a percentage of the total time. + */ + quintOut(t: number): number; + /** + !#en Easing in and out with quintic formula. From slow to fast, then back to slow. + !#zh 五次方曲线缓入缓出函数。运动由慢到快再到慢。 + @param t The current time as a percentage of the total time. + */ + quintInOut(t: number): number; + /** + !#en Easing in and out with sine formula. From slow to fast. + !#zh 正弦曲线缓入函数。运动由慢到快。 + @param t The current time as a percentage of the total time. + */ + sineIn(t: number): number; + /** + !#en Easing in and out with sine formula. From fast to slow. + !#zh 正弦曲线缓出函数。运动由快到慢。 + @param t The current time as a percentage of the total time. + */ + sineOut(t: number): number; + /** + !#en Easing in and out with sine formula. From slow to fast, then back to slow. + !#zh 正弦曲线缓入缓出函数。运动由慢到快再到慢。 + @param t The current time as a percentage of the total time. + */ + sineInOut(t: number): number; + /** + !#en Easing in and out with exponential formula. From slow to fast. + !#zh 指数曲线缓入函数。运动由慢到快。 + @param t The current time as a percentage of the total time. + */ + expoIn(t: number): number; + /** + !#en Easing in and out with exponential formula. From fast to slow. + !#zh 指数曲线缓出函数。运动由快到慢。 + @param t The current time as a percentage of the total time. + */ + expoOut(t: number): number; + /** + !#en Easing in and out with exponential formula. From slow to fast. + !#zh 指数曲线缓入和缓出函数。运动由慢到很快再到慢。 + @param t The current time as a percentage of the total time, then back to slow. + */ + expoInOut(t: number): number; + /** + !#en Easing in and out with circular formula. From slow to fast. + !#zh 循环公式缓入函数。运动由慢到快。 + @param t The current time as a percentage of the total time. + */ + circIn(t: number): number; + /** + !#en Easing in and out with circular formula. From fast to slow. + !#zh 循环公式缓出函数。运动由快到慢。 + @param t The current time as a percentage of the total time. + */ + circOut(t: number): number; + /** + !#en Easing in and out with circular formula. From slow to fast. + !#zh 指数曲线缓入缓出函数。运动由慢到很快再到慢。 + @param t The current time as a percentage of the total time, then back to slow. + */ + circInOut(t: number): number; + /** + !#en Easing in action with a spring oscillating effect. + !#zh 弹簧回震效果的缓入函数。 + @param t The current time as a percentage of the total time. + */ + elasticIn(t: number): number; + /** + !#en Easing out action with a spring oscillating effect. + !#zh 弹簧回震效果的缓出函数。 + @param t The current time as a percentage of the total time. + */ + elasticOut(t: number): number; + /** + !#en Easing in and out action with a spring oscillating effect. + !#zh 弹簧回震效果的缓入缓出函数。 + @param t The current time as a percentage of the total time. + */ + elasticInOut(t: number): number; + /** + !#en Easing in action with "back up" behavior. + !#zh 回退效果的缓入函数。 + @param t The current time as a percentage of the total time. + */ + backIn(t: number): number; + /** + !#en Easing out action with "back up" behavior. + !#zh 回退效果的缓出函数。 + @param t The current time as a percentage of the total time. + */ + backOut(t: number): number; + /** + !#en Easing in and out action with "back up" behavior. + !#zh 回退效果的缓入缓出函数。 + @param t The current time as a percentage of the total time. + */ + backInOut(t: number): number; + /** + !#en Easing in action with bouncing effect. + !#zh 弹跳效果的缓入函数。 + @param t The current time as a percentage of the total time. + */ + bounceIn(t: number): number; + /** + !#en Easing out action with bouncing effect. + !#zh 弹跳效果的缓出函数。 + @param t The current time as a percentage of the total time. + */ + bounceOut(t: number): number; + /** + !#en Easing in and out action with bouncing effect. + !#zh 弹跳效果的缓入缓出函数。 + @param t The current time as a percentage of the total time. + */ + bounceInOut(t: number): number; + /** + !#en Target will run action with smooth effect. + !#zh 平滑效果函数。 + @param t The current time as a percentage of the total time. + */ + smooth(t: number): number; + /** + !#en Target will run action with fade effect. + !#zh 渐褪效果函数。 + @param t The current time as a percentage of the total time. + */ + fade(t: number): number; + } + /** !#en Specifies how time is treated when it is outside of the keyframe range of an Animation. + !#zh 动画使用的循环模式。 */ + export enum WrapMode { + Default = 0, + Normal = 0, + Reverse = 0, + Loop = 0, + LoopReverse = 0, + PingPong = 0, + PingPongReverse = 0, + } + /** undefined */ + export class Playable { + /** !#en Is playing or paused in play mode? + !#zh 当前是否正在播放。 */ + isPlaying: boolean; + /** !#en Is currently paused? This can be true even if in edit mode(isPlaying == false). + !#zh 当前是否正在暂停 */ + isPaused: boolean; + /** + !#en Play this animation. + !#zh 播放动画。 + */ + play(): void; + /** + !#en Stop this animation. + !#zh 停止动画播放。 + */ + stop(): void; + /** + !#en Pause this animation. + !#zh 暂停动画。 + */ + pause(): void; + /** + !#en Resume this animation. + !#zh 重新播放动画。 + */ + resume(): void; + /** + !#en Perform a single frame step. + !#zh 执行一帧动画。 + */ + step(): void; + } + /** !#en An object to boot the game. + !#zh 包含游戏主体信息并负责驱动游戏的游戏对象。 */ + export class debug { + /** + !#en Gets error message with the error id and possible parameters. + !#zh 通过 error id 和必要的参数来获取错误信息。 + @param errorId errorId + @param param param + */ + static getError(errorId: number, param?: any): string; + /** + !#en Returns whether or not to display the FPS informations. + !#zh 是否显示 FPS 信息。 + */ + static isDisplayStats(): boolean; + /** + !#en Sets whether display the FPS on the bottom-left corner. + !#zh 设置是否在左下角显示 FPS。 + @param displayStats displayStats + */ + static setDisplayStats(displayStats: boolean): void; + } + /** !#en +

+ ATTENTION: USE cc.director INSTEAD OF cc.Director.
+ cc.director is a singleton object which manage your game's logic flow.
+ Since the cc.director is a singleton, you don't need to call any constructor or create functions,
+ the standard way to use it is by calling:
+ - cc.director.methodName();
+ + It creates and handle the main Window and manages how and when to execute the Scenes.
+
+ The cc.director is also responsible for:
+ - initializing the OpenGL context
+ - setting the OpenGL pixel format (default on is RGB565)
+ - setting the OpenGL buffer depth (default on is 0-bit)
+ - setting the color for clear screen (default one is BLACK)
+ - setting the projection (default one is 3D)
+ - setting the orientation (default one is Portrait)
+
+
+ The cc.director also sets the default OpenGL context:
+ - GL_TEXTURE_2D is enabled
+ - GL_VERTEX_ARRAY is enabled
+ - GL_COLOR_ARRAY is enabled
+ - GL_TEXTURE_COORD_ARRAY is enabled
+

+

+ cc.director also synchronizes timers with the refresh rate of the display.
+ Features and Limitations:
+ - Scheduled timers & drawing are synchronizes with the refresh rate of the display
+ - Only supports animation intervals of 1/60 1/30 & 1/15
+

+ + !#zh +

+ 注意:用 cc.director 代替 cc.Director。
+ cc.director 一个管理你的游戏的逻辑流程的单例对象。
+ 由于 cc.director 是一个单例,你不需要调用任何构造函数或创建函数,
+ 使用它的标准方法是通过调用:
+ - cc.director.methodName(); +
+ 它创建和处理主窗口并且管理什么时候执行场景。
+
+ cc.director 还负责:
+ - 初始化 OpenGL 环境。
+ - 设置OpenGL像素格式。(默认是 RGB565)
+ - 设置OpenGL缓冲区深度 (默认是 0-bit)
+ - 设置空白场景的颜色 (默认是 黑色)
+ - 设置投影 (默认是 3D)
+ - 设置方向 (默认是 Portrait)
+
+ cc.director 设置了 OpenGL 默认环境
+ - GL_TEXTURE_2D 启用。
+ - GL_VERTEX_ARRAY 启用。
+ - GL_COLOR_ARRAY 启用。
+ - GL_TEXTURE_COORD_ARRAY 启用。
+

+

+ cc.director 也同步定时器与显示器的刷新速率。 +
+ 特点和局限性:
+ - 将计时器 & 渲染与显示器的刷新频率同步。
+ - 只支持动画的间隔 1/60 1/30 & 1/15。
+

*/ + export class Director extends EventTarget { + /** + !#en + Converts a view coordinate to an WebGL coordinate
+ Useful to convert (multi) touches coordinates to the current layout (portrait or landscape)
+ Implementation can be found in CCDirectorWebGL. + !#zh 将触摸点的屏幕坐标转换为 WebGL View 下的坐标。 + @param uiPoint uiPoint + */ + convertToGL(uiPoint: Vec2): Vec2; + /** + !#en + Converts an OpenGL coordinate to a view coordinate
+ Useful to convert node points to window points for calls such as glScissor
+ Implementation can be found in CCDirectorWebGL. + !#zh 将触摸点的 WebGL View 坐标转换为屏幕坐标。 + @param glPoint glPoint + */ + convertToUI(glPoint: Vec2): Vec2; + /** + End the life of director in the next frame + */ + end(): void; + /** + !#en + Returns the size of the WebGL view in points.
+ It takes into account any possible rotation (device orientation) of the window. + !#zh 获取视图的大小,以点为单位。 + */ + getWinSize(): Size; + /** + !#en + Returns the size of the OpenGL view in pixels.
+ It takes into account any possible rotation (device orientation) of the window.
+ On Mac winSize and winSizeInPixels return the same value. + (The pixel here refers to the resource resolution. If you want to get the physics resolution of device, you need to use cc.view.getFrameSize()) + !#zh + 获取视图大小,以像素为单位(这里的像素指的是资源分辨率。 + 如果要获取屏幕物理分辨率,需要用 cc.view.getFrameSize()) + */ + getWinSizeInPixels(): Size; + /** + !#en Pause the director's ticker, only involve the game logic execution. + It won't pause the rendering process nor the event manager. + If you want to pause the entier game including rendering, audio and event, + please use {{#crossLink "Game.pause"}}cc.game.pause{{/crossLink}} + !#zh 暂停正在运行的场景,该暂停只会停止游戏逻辑执行,但是不会停止渲染和 UI 响应。 + 如果想要更彻底得暂停游戏,包含渲染,音频和事件,请使用 {{#crossLink "Game.pause"}}cc.game.pause{{/crossLink}}。 + */ + pause(): void; + /** + !#en + Run a scene. Replaces the running scene with a new one or enter the first scene.
+ The new scene will be launched immediately. + !#zh 立刻切换指定场景。 + @param scene The need run scene. + @param onBeforeLoadScene The function invoked at the scene before loading. + @param onLaunched The function invoked at the scene after launch. + */ + runSceneImmediate(scene: Scene|SceneAsset, onBeforeLoadScene?: Function, onLaunched?: Function): void; + /** + !#en + Run a scene. Replaces the running scene with a new one or enter the first scene. + The new scene will be launched at the end of the current frame. + !#zh 运行指定场景。 + @param scene The need run scene. + @param onBeforeLoadScene The function invoked at the scene before loading. + @param onLaunched The function invoked at the scene after launch. + */ + runScene(scene: Scene|SceneAsset, onBeforeLoadScene?: Function, onLaunched?: Function): void; + /** + !#en Loads the scene by its name. + !#zh 通过场景名称进行加载场景。 + @param sceneName The name of the scene to load. + @param onLaunched callback, will be called after scene launched. + */ + loadScene(sceneName: string, onLaunched?: Function): boolean; + /** + !#en + Preloads the scene to reduces loading time. You can call this method at any time you want. + After calling this method, you still need to launch the scene by `cc.director.loadScene`. + It will be totally fine to call `cc.director.loadScene` at any time even if the preloading is not + yet finished, the scene will be launched after loaded automatically. + !#zh 预加载场景,你可以在任何时候调用这个方法。 + 调用完后,你仍然需要通过 `cc.director.loadScene` 来启动场景,因为这个方法不会执行场景加载操作。 + 就算预加载还没完成,你也可以直接调用 `cc.director.loadScene`,加载完成后场景就会启动。 + @param sceneName The name of the scene to preload. + @param onProgress callback, will be called when the load progression change. + @param onLoaded callback, will be called after scene loaded. + */ + preloadScene(sceneName: string, onProgress?: (completedCount: number, totalCount: number, item: any) => void, onLoaded?: (error: Error) => void): void; + /** + !#en Resume game logic execution after pause, if the current scene is not paused, nothing will happen. + !#zh 恢复暂停场景的游戏逻辑,如果当前场景没有暂停将没任何事情发生。 + */ + resume(): void; + /** + !#en + Enables or disables WebGL depth test.
+ Implementation can be found in CCDirectorCanvas.js/CCDirectorWebGL.js + !#zh 启用/禁用深度测试(在 Canvas 渲染模式下不会生效)。 + @param on on + */ + setDepthTest(on: boolean): void; + /** + !#en + Set color for clear screen.
+ (Implementation can be found in CCDirectorCanvas.js/CCDirectorWebGL.js) + !#zh + 设置场景的默认擦除颜色。
+ 支持全透明,但不支持透明度为中间值。要支持全透明需手工开启 cc.macro.ENABLE_TRANSPARENT_CANVAS。 + @param clearColor clearColor + */ + setClearColor(clearColor: Color): void; + /** + !#en Returns current logic Scene. + !#zh 获取当前逻辑场景。 + + @example + ```js + // This will help you to get the Canvas node in scene + cc.director.getScene().getChildByName('Canvas'); + ``` + */ + getScene(): Scene; + /** + !#en Returns the FPS value. Please use {{#crossLink "Game.setFrameRate"}}cc.game.setFrameRate{{/crossLink}} to control animation interval. + !#zh 获取单位帧执行时间。请使用 {{#crossLink "Game.setFrameRate"}}cc.game.setFrameRate{{/crossLink}} 来控制游戏帧率。 + */ + getAnimationInterval(): number; + /** + Sets animation interval, this doesn't control the main loop. + To control the game's frame rate overall, please use {{#crossLink "Game.setFrameRate"}}cc.game.setFrameRate{{/crossLink}} + @param value The animation interval desired. + */ + setAnimationInterval(value: number): void; + /** + !#en Returns the delta time since last frame. + !#zh 获取上一帧的增量时间。 + */ + getDeltaTime(): number; + /** + !#en Returns the total passed time since game start, unit: ms + !#zh 获取从游戏开始到现在总共经过的时间,单位为 ms + */ + getTotalTime(): number; + /** + !#en Returns how many frames were called since the director started. + !#zh 获取 director 启动以来游戏运行的总帧数。 + */ + getTotalFrames(): number; + /** + !#en Returns whether or not the Director is paused. + !#zh 是否处于暂停状态。 + */ + isPaused(): boolean; + /** + !#en Returns the cc.Scheduler associated with this director. + !#zh 获取和 director 相关联的 cc.Scheduler。 + */ + getScheduler(): Scheduler; + /** + !#en Sets the cc.Scheduler associated with this director. + !#zh 设置和 director 相关联的 cc.Scheduler。 + @param scheduler scheduler + */ + setScheduler(scheduler: Scheduler): void; + /** + !#en Returns the cc.ActionManager associated with this director. + !#zh 获取和 director 相关联的 cc.ActionManager(动作管理器)。 + */ + getActionManager(): ActionManager; + /** + !#en Sets the cc.ActionManager associated with this director. + !#zh 设置和 director 相关联的 cc.ActionManager(动作管理器)。 + @param actionManager actionManager + */ + setActionManager(actionManager: ActionManager): void; + /** + !#en Returns the cc.CollisionManager associated with this director. + !#zh 获取和 director 相关联的 cc.CollisionManager (碰撞管理器)。 + */ + getCollisionManager(): CollisionManager; + /** + !#en Returns the cc.PhysicsManager associated with this director. + !#zh 返回与 director 相关联的 cc.PhysicsManager (物理管理器)。 + */ + getPhysicsManager(): PhysicsManager; + /** + !#en Returns the cc.Physics3DManager associated with this director. + !#zh 返回与 director 相关联的 cc.Physics3DManager (物理管理器)。 + */ + getPhysics3DManager(): Physics3DManager; + /** !#en The event projection changed of cc.Director. This event will not get triggered since v2.0 + !#zh cc.Director 投影变化的事件。从 v2.0 开始这个事件不会再被触发 */ + static EVENT_PROJECTION_CHANGED: string; + /** !#en The event which will be triggered before loading a new scene. + !#zh 加载新场景之前所触发的事件。 */ + static EVENT_BEFORE_SCENE_LOADING: string; + /** !#en The event which will be triggered before launching a new scene. + !#zh 运行新场景之前所触发的事件。 */ + static EVENT_BEFORE_SCENE_LAUNCH: string; + /** !#en The event which will be triggered after launching a new scene. + !#zh 运行新场景之后所触发的事件。 */ + static EVENT_AFTER_SCENE_LAUNCH: string; + /** !#en The event which will be triggered at the beginning of every frame. + !#zh 每个帧的开始时所触发的事件。 */ + static EVENT_BEFORE_UPDATE: string; + /** !#en The event which will be triggered after engine and components update logic. + !#zh 将在引擎和组件 “update” 逻辑之后所触发的事件。 */ + static EVENT_AFTER_UPDATE: string; + /** !#en The event is deprecated since v2.0, please use cc.Director.EVENT_BEFORE_DRAW instead + !#zh 这个事件从 v2.0 开始被废弃,请直接使用 cc.Director.EVENT_BEFORE_DRAW */ + static EVENT_BEFORE_VISIT: string; + /** !#en The event is deprecated since v2.0, please use cc.Director.EVENT_BEFORE_DRAW instead + !#zh 这个事件从 v2.0 开始被废弃,请直接使用 cc.Director.EVENT_BEFORE_DRAW */ + static EVENT_AFTER_VISIT: string; + /** !#en The event which will be triggered before the rendering process. + !#zh 渲染过程之前所触发的事件。 */ + static EVENT_BEFORE_DRAW: string; + /** !#en The event which will be triggered after the rendering process. + !#zh 渲染过程之后所触发的事件。 */ + static EVENT_AFTER_DRAW: string; + /** Constant for 2D projection (orthogonal projection) */ + static PROJECTION_2D: number; + /** Constant for 3D projection with a fovy=60, znear=0.5f and zfar=1500. */ + static PROJECTION_3D: number; + /** Constant for custom projection, if cc.Director's projection set to it, it calls "updateProjection" on the projection delegate. */ + static PROJECTION_CUSTOM: number; + /** Constant for default projection of cc.Director, default projection is 2D projection */ + static PROJECTION_DEFAULT: number; + } + /** !#en An object to boot the game. + !#zh 包含游戏主体信息并负责驱动游戏的游戏对象。 */ + export class Game extends EventTarget { + /** !#en Event triggered when game hide to background. + Please note that this event is not 100% guaranteed to be fired on Web platform, + on native platforms, it corresponds to enter background event, os status bar or notification center may not trigger this event. + !#zh 游戏进入后台时触发的事件。 + 请注意,在 WEB 平台,这个事件不一定会 100% 触发,这完全取决于浏览器的回调行为。 + 在原生平台,它对应的是应用被切换到后台事件,下拉菜单和上拉状态栏等不一定会触发这个事件,这取决于系统行为。 */ + EVENT_HIDE: string; + /** !#en Event triggered when game back to foreground + Please note that this event is not 100% guaranteed to be fired on Web platform, + on native platforms, it corresponds to enter foreground event. + !#zh 游戏进入前台运行时触发的事件。 + 请注意,在 WEB 平台,这个事件不一定会 100% 触发,这完全取决于浏览器的回调行为。 + 在原生平台,它对应的是应用被切换到前台事件。 */ + EVENT_SHOW: string; + /** !#en Event triggered when game restart + !#zh 调用restart后,触发事件。 */ + EVENT_RESTART: string; + /** Event triggered after game inited, at this point all engine objects and game scripts are loaded */ + EVENT_GAME_INITED: string; + /** Event triggered after engine inited, at this point you will be able to use all engine classes. + It was defined as EVENT_RENDERER_INITED in cocos creator v1.x and renamed in v2.0 */ + EVENT_ENGINE_INITED: string; + /** Web Canvas 2d API as renderer backend */ + RENDER_TYPE_CANVAS: number; + /** WebGL API as renderer backend */ + RENDER_TYPE_WEBGL: number; + /** OpenGL API as renderer backend */ + RENDER_TYPE_OPENGL: number; + /** !#en The outer frame of the game canvas, parent of game container. + !#zh 游戏画布的外框,container 的父容器。 */ + frame: any; + /** !#en The container of game canvas. + !#zh 游戏画布的容器。 */ + container: HTMLDivElement; + /** !#en The canvas of the game. + !#zh 游戏的画布。 */ + canvas: HTMLCanvasElement; + /** !#en The renderer backend of the game. + !#zh 游戏的渲染器类型。 */ + renderType: number; + /** !#en + The current game configuration, including:
+ 1. debugMode
+ "debugMode" possible values :
+ 0 - No message will be printed.
+ 1 - cc.error, cc.assert, cc.warn, cc.log will print in console.
+ 2 - cc.error, cc.assert, cc.warn will print in console.
+ 3 - cc.error, cc.assert will print in console.
+ 4 - cc.error, cc.assert, cc.warn, cc.log will print on canvas, available only on web.
+ 5 - cc.error, cc.assert, cc.warn will print on canvas, available only on web.
+ 6 - cc.error, cc.assert will print on canvas, available only on web.
+ 2. showFPS
+ Left bottom corner fps information will show when "showFPS" equals true, otherwise it will be hide.
+ 3. exposeClassName
+ Expose class name to chrome debug tools, the class intantiate performance is a little bit slower when exposed.
+ 4. frameRate
+ "frameRate" set the wanted frame rate for your game, but the real fps depends on your game implementation and the running environment.
+ 5. id
+ "gameCanvas" sets the id of your canvas element on the web page, it's useful only on web.
+ 6. renderMode
+ "renderMode" sets the renderer type, only useful on web :
+ 0 - Automatically chosen by engine
+ 1 - Forced to use canvas renderer
+ 2 - Forced to use WebGL renderer, but this will be ignored on mobile browsers
+
+ Please DO NOT modify this object directly, it won't have any effect.
+ !#zh + 当前的游戏配置,包括:
+ 1. debugMode(debug 模式,但是在浏览器中这个选项会被忽略)
+ "debugMode" 各种设置选项的意义。
+ 0 - 没有消息被打印出来。
+ 1 - cc.error,cc.assert,cc.warn,cc.log 将打印在 console 中。
+ 2 - cc.error,cc.assert,cc.warn 将打印在 console 中。
+ 3 - cc.error,cc.assert 将打印在 console 中。
+ 4 - cc.error,cc.assert,cc.warn,cc.log 将打印在 canvas 中(仅适用于 web 端)。
+ 5 - cc.error,cc.assert,cc.warn 将打印在 canvas 中(仅适用于 web 端)。
+ 6 - cc.error,cc.assert 将打印在 canvas 中(仅适用于 web 端)。
+ 2. showFPS(显示 FPS)
+ 当 showFPS 为 true 的时候界面的左下角将显示 fps 的信息,否则被隐藏。
+ 3. exposeClassName
+ 暴露类名让 Chrome DevTools 可以识别,如果开启会稍稍降低类的创建过程的性能,但对对象构造没有影响。
+ 4. frameRate (帧率)
+ “frameRate” 设置想要的帧率你的游戏,但真正的FPS取决于你的游戏实现和运行环境。
+ 5. id
+ "gameCanvas" Web 页面上的 Canvas Element ID,仅适用于 web 端。
+ 6. renderMode(渲染模式)
+ “renderMode” 设置渲染器类型,仅适用于 web 端:
+ 0 - 通过引擎自动选择。
+ 1 - 强制使用 canvas 渲染。 + 2 - 强制使用 WebGL 渲染,但是在部分 Android 浏览器中这个选项会被忽略。
+
+ 注意:请不要直接修改这个对象,它不会有任何效果。 */ + config: any; + /** + !#en Callback when the scripts of engine have been load. + !#zh 当引擎完成启动后的回调函数。 + */ + onStart(): void; + /** + !#en Set frame rate of game. + !#zh 设置游戏帧率。 + @param frameRate frameRate + */ + setFrameRate(frameRate: number): void; + /** + !#en Get frame rate set for the game, it doesn't represent the real frame rate. + !#zh 获取设置的游戏帧率(不等同于实际帧率)。 + */ + getFrameRate(): number; + /** + !#en Run the game frame by frame. + !#zh 执行一帧游戏循环。 + */ + step(): void; + /** + !#en Pause the game main loop. This will pause: + game logic execution, rendering process, event manager, background music and all audio effects. + This is different with cc.director.pause which only pause the game logic execution. + !#zh 暂停游戏主循环。包含:游戏逻辑,渲染,事件处理,背景音乐和所有音效。这点和只暂停游戏逻辑的 cc.director.pause 不同。 + */ + pause(): void; + /** + !#en Resume the game from pause. This will resume: + game logic execution, rendering process, event manager, background music and all audio effects. + !#zh 恢复游戏主循环。包含:游戏逻辑,渲染,事件处理,背景音乐和所有音效。 + */ + resume(): void; + /** + !#en Check whether the game is paused. + !#zh 判断游戏是否暂停。 + */ + isPaused(): boolean; + /** + !#en Restart game. + !#zh 重新开始游戏 + */ + restart(): void; + /** + !#en End game, it will close the game window + !#zh 退出游戏 + */ + end(): void; + /** + !#en + Register an callback of a specific event type on the game object. + This type of event should be triggered via `emit`. + !#zh + 注册 game 的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Register an callback of a specific event type on the game object, + the callback will remove itself after the first time it is triggered. + !#zh + 注册 game 的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en Prepare game. + !#zh 准备引擎,请不要直接调用这个函数。 + @param cb cb + */ + prepare(cb: Function): void; + /** + !#en Run game with configuration object and onStart function. + !#zh 运行游戏,并且指定引擎配置和 onStart 的回调。 + @param config Pass configuration object or onStart function + @param onStart function to be executed after game initialized + */ + run(config: any, onStart: Function): void; + /** + !#en + Add a persistent root node to the game, the persistent node won't be destroyed during scene transition.
+ The target node must be placed in the root level of hierarchy, otherwise this API won't have any effect. + !#zh + 声明常驻根节点,该节点不会被在场景切换中被销毁。
+ 目标节点必须位于为层级的根节点,否则无效。 + @param node The node to be made persistent + */ + addPersistRootNode(node: Node): void; + /** + !#en Remove a persistent root node. + !#zh 取消常驻根节点。 + @param node The node to be removed from persistent node list + */ + removePersistRootNode(node: Node): void; + /** + !#en Check whether the node is a persistent root node. + !#zh 检查节点是否是常驻根节点。 + @param node The node to be checked + */ + isPersistRootNode(node: Node): boolean; + } + /** !#en + Class of all entities in Cocos Creator scenes.
+ For events supported by Node, please refer to {{#crossLink "Node.EventType"}}{{/crossLink}} + !#zh + Cocos Creator 场景中的所有节点类。
+ 支持的节点事件,请参阅 {{#crossLink "Node.EventType"}}{{/crossLink}}。 */ + export class Node extends _BaseNode { + /** !#en + Group index of node.
+ Which Group this node belongs to will resolve that this node's collision components can collide with which other collision componentns.
+ !#zh + 节点的分组索引。
+ 节点的分组将关系到节点的碰撞组件可以与哪些碰撞组件相碰撞。
*/ + groupIndex: number; + /** !#en + Group of node.
+ Which Group this node belongs to will resolve that this node's collision components can collide with which other collision componentns.
+ !#zh + 节点的分组。
+ 节点的分组将关系到节点的碰撞组件可以与哪些碰撞组件相碰撞。
*/ + group: string; + /** !#en The position (x, y) of the node in its parent's coordinates. + !#zh 节点在父节点坐标系中的位置(x, y)。 */ + position: Vec3; + /** !#en x axis position of node. + !#zh 节点 X 轴坐标。 */ + x: number; + /** !#en y axis position of node. + !#zh 节点 Y 轴坐标。 */ + y: number; + /** !#en z axis position of node. + !#zh 节点 Z 轴坐标。 */ + z: number; + /** !#en Rotation of node. + !#zh 该节点旋转角度。 */ + rotation: number; + /** !#en + Angle of node, the positive value is anti-clockwise direction. + !#zh + 该节点的旋转角度,正值为逆时针方向。 */ + angle: number; + /** !#en The rotation as Euler angles in degrees, used in 3D node. + !#zh 该节点的欧拉角度,用于 3D 节点。 */ + eulerAngles: Vec3; + /** !#en Rotation on x axis. + !#zh 该节点 X 轴旋转角度。 */ + rotationX: number; + /** !#en Rotation on y axis. + !#zh 该节点 Y 轴旋转角度。 */ + rotationY: number; + /** !#en The local scale relative to the parent. + !#zh 节点相对父节点的缩放。 */ + scale: number; + /** !#en Scale on x axis. + !#zh 节点 X 轴缩放。 */ + scaleX: number; + /** !#en Scale on y axis. + !#zh 节点 Y 轴缩放。 */ + scaleY: number; + /** !#en Scale on z axis. + !#zh 节点 Z 轴缩放。 */ + scaleZ: number; + /** !#en Skew x + !#zh 该节点 X 轴倾斜角度。 */ + skewX: number; + /** !#en Skew y + !#zh 该节点 Y 轴倾斜角度。 */ + skewY: number; + /** !#en Opacity of node, default value is 255. + !#zh 节点透明度,默认值为 255。 */ + opacity: number; + /** !#en Color of node, default value is white: (255, 255, 255). + !#zh 节点颜色。默认为白色,数值为:(255,255,255)。 */ + color: Color; + /** !#en Anchor point's position on x axis. + !#zh 节点 X 轴锚点位置。 */ + anchorX: number; + /** !#en Anchor point's position on y axis. + !#zh 节点 Y 轴锚点位置。 */ + anchorY: number; + /** !#en Width of node. + !#zh 节点宽度。 */ + width: number; + /** !#en Height of node. + !#zh 节点高度。 */ + height: number; + /** !#en zIndex is the 'key' used to sort the node relative to its siblings.
+ The value of zIndex should be in the range between cc.macro.MIN_ZINDEX and cc.macro.MAX_ZINDEX.
+ The Node's parent will sort all its children based on the zIndex value and the arrival order.
+ Nodes with greater zIndex will be sorted after nodes with smaller zIndex.
+ If two nodes have the same zIndex, then the node that was added first to the children's array will be in front of the other node in the array.
+ Node's order in children list will affect its rendering order. Parent is always rendering before all children. + !#zh zIndex 是用来对节点进行排序的关键属性,它决定一个节点在兄弟节点之间的位置。
+ zIndex 的取值应该介于 cc.macro.MIN_ZINDEX 和 cc.macro.MAX_ZINDEX 之间 + 父节点主要根据节点的 zIndex 和添加次序来排序,拥有更高 zIndex 的节点将被排在后面,如果两个节点的 zIndex 一致,先添加的节点会稳定排在另一个节点之前。
+ 节点在 children 中的顺序决定了其渲染顺序。父节点永远在所有子节点之前被渲染 */ + zIndex: number; + /** !#en + Switch 2D/3D node. The 2D nodes will run faster. + !#zh + 切换 2D/3D 节点,2D 节点会有更高的运行效率 */ + is3DNode: boolean; + /** !#en Returns a normalized vector representing the up direction (Y axis) of the node in world space. + !#zh 获取节点正上方(y 轴)面对的方向,返回值为世界坐标系下的归一化向量 */ + up: Vec3; + /** !#en Returns a normalized vector representing the right direction (X axis) of the node in world space. + !#zh 获取节点正右方(x 轴)面对的方向,返回值为世界坐标系下的归一化向量 */ + right: Vec3; + /** !#en Returns a normalized vector representing the forward direction (Z axis) of the node in world space. + !#zh 获取节点正前方(z 轴)面对的方向,返回值为世界坐标系下的归一化向量 */ + forward: Vec3; + /** + + @param name name + */ + constructor(name?: string); + /** + !#en + Register a callback of a specific event type on Node.
+ Use this method to register touch or mouse event permit propagation based on scene graph,
+ These kinds of event are triggered with dispatchEvent, the dispatch process has three steps:
+ 1. Capturing phase: dispatch in capture targets (`_getCapturingTargets`), e.g. parents in node tree, from root to the real target
+ 2. At target phase: dispatch to the listeners of the real target
+ 3. Bubbling phase: dispatch in bubble targets (`_getBubblingTargets`), e.g. parents in node tree, from the real target to root
+ In any moment of the dispatching process, it can be stopped via `event.stopPropagation()` or `event.stopPropagationImmidiate()`.
+ It's the recommended way to register touch/mouse event for Node,
+ please do not use cc.eventManager directly for Node.
+ You can also register custom event and use `emit` to trigger custom event on Node.
+ For such events, there won't be capturing and bubbling phase, your event will be dispatched directly to its listeners registered on the same node.
+ You can also pass event callback parameters with `emit` by passing parameters after `type`. + !#zh + 在节点上注册指定类型的回调函数,也可以设置 target 用于绑定响应函数的 this 对象。
+ 鼠标或触摸事件会被系统调用 dispatchEvent 方法触发,触发的过程包含三个阶段:
+ 1. 捕获阶段:派发事件给捕获目标(通过 `_getCapturingTargets` 获取),比如,节点树中注册了捕获阶段的父节点,从根节点开始派发直到目标节点。
+ 2. 目标阶段:派发给目标节点的监听器。
+ 3. 冒泡阶段:派发事件给冒泡目标(通过 `_getBubblingTargets` 获取),比如,节点树中注册了冒泡阶段的父节点,从目标节点开始派发直到根节点。
+ 同时您可以将事件派发到父节点或者通过调用 stopPropagation 拦截它。
+ 推荐使用这种方式来监听节点上的触摸或鼠标事件,请不要在节点上直接使用 cc.eventManager。
+ 你也可以注册自定义事件到节点上,并通过 emit 方法触发此类事件,对于这类事件,不会发生捕获冒泡阶段,只会直接派发给注册在该节点上的监听器
+ 你可以通过在 emit 方法调用时在 type 之后传递额外的参数作为事件回调的参数列表 + @param type A string representing the event type to listen for.
See {{#crossLink "Node/EventTyupe/POSITION_CHANGED"}}Node Events{{/crossLink}} for all builtin events. + @param callback The callback that will be invoked when the event is dispatched. The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + @param useCapture When set to true, the listener will be triggered at capturing phase which is ahead of the final target emit, otherwise it will be triggered during bubbling phase. + + @example + ```js + this.node.on(cc.Node.EventType.TOUCH_START, this.memberFunction, this); // if "this" is component and the "memberFunction" declared in CCClass. + node.on(cc.Node.EventType.TOUCH_START, callback, this); + node.on(cc.Node.EventType.TOUCH_MOVE, callback, this); + node.on(cc.Node.EventType.TOUCH_END, callback, this); + node.on(cc.Node.EventType.TOUCH_CANCEL, callback, this); + node.on(cc.Node.EventType.ANCHOR_CHANGED, callback); + node.on(cc.Node.EventType.COLOR_CHANGED, callback); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Register an callback of a specific event type on the Node, + the callback will remove itself after the first time it is triggered. + !#zh + 注册节点的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + node.once(cc.Node.EventType.ANCHOR_CHANGED, callback); + ``` + */ + once(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the callback previously registered with the same type, callback, target and or useCapture. + This method is merely an alias to removeEventListener. + !#zh 删除之前与同类型,回调,目标或 useCapture 注册的回调。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + @param useCapture When set to true, the listener will be triggered at capturing phase which is ahead of the final target emit, otherwise it will be triggered during bubbling phase. + + @example + ```js + this.node.off(cc.Node.EventType.TOUCH_START, this.memberFunction, this); + node.off(cc.Node.EventType.TOUCH_START, callback, this.node); + node.off(cc.Node.EventType.ANCHOR_CHANGED, callback, this); + ``` + */ + off(type: string, callback?: Function, target?: any, useCapture?: boolean): void; + /** + !#en Removes all callbacks previously registered with the same target. + !#zh 移除目标上的所有注册事件。 + @param target The target to be searched for all related callbacks + + @example + ```js + node.targetOff(target); + ``` + */ + targetOff(target: any): void; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Trigger an event directly with the event name and necessary arguments. + !#zh + 通过事件名发送自定义事件 + @param type event type + @param arg1 First argument in callback + @param arg2 Second argument in callback + @param arg3 Third argument in callback + @param arg4 Fourth argument in callback + @param arg5 Fifth argument in callback + + @example + ```js + eventTarget.emit('fire', event); + eventTarget.emit('fire', message, emitter); + ``` + */ + emit(type: string, arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any): void; + /** + !#en + Dispatches an event into the event flow. + The event target is the EventTarget object upon which the dispatchEvent() method is called. + !#zh 分发事件到事件流中。 + @param event The Event object that is dispatched into the event flow + */ + dispatchEvent(event: Event): void; + /** + !#en Pause node related system events registered with the current Node. Node system events includes touch and mouse events. + If recursive is set to true, then this API will pause the node system events for the node and all nodes in its sub node tree. + Reference: http://docs.cocos2d-x.org/editors_and_tools/creator-chapters/scripting/internal-events/ + !#zh 暂停当前节点上注册的所有节点系统事件,节点系统事件包含触摸和鼠标事件。 + 如果传递 recursive 为 true,那么这个 API 将暂停本节点和它的子树上所有节点的节点系统事件。 + 参考:https://www.cocos.com/docs/creator/scripting/internal-events.html + @param recursive Whether to pause node system events on the sub node tree. + + @example + ```js + node.pauseSystemEvents(true); + ``` + */ + pauseSystemEvents(recursive: boolean): void; + /** + !#en Resume node related system events registered with the current Node. Node system events includes touch and mouse events. + If recursive is set to true, then this API will resume the node system events for the node and all nodes in its sub node tree. + Reference: http://docs.cocos2d-x.org/editors_and_tools/creator-chapters/scripting/internal-events/ + !#zh 恢复当前节点上注册的所有节点系统事件,节点系统事件包含触摸和鼠标事件。 + 如果传递 recursive 为 true,那么这个 API 将恢复本节点和它的子树上所有节点的节点系统事件。 + 参考:https://www.cocos.com/docs/creator/scripting/internal-events.html + @param recursive Whether to resume node system events on the sub node tree. + + @example + ```js + node.resumeSystemEvents(true); + ``` + */ + resumeSystemEvents(recursive: boolean): void; + /** + !#en + Executes an action, and returns the action that is executed.
+ The node becomes the action's target. Refer to cc.Action's getTarget()
+ Calling runAction while the node is not active won't have any effect.
+ Note:You shouldn't modify the action after runAction, that won't take any effect.
+ if you want to modify, when you define action plus. + !#zh + 执行并返回该执行的动作。该节点将会变成动作的目标。
+ 调用 runAction 时,节点自身处于不激活状态将不会有任何效果。
+ 注意:你不应该修改 runAction 后的动作,将无法发挥作用,如果想进行修改,请在定义 action 时加入。 + @param action action + + @example + ```js + var action = cc.scaleTo(0.2, 1, 0.6); + node.runAction(action); + node.runAction(action).repeatForever(); // fail + node.runAction(action.repeatForever()); // right + ``` + */ + runAction(action: Action): Action; + /** + !#en Pause all actions running on the current node. Equals to `cc.director.getActionManager().pauseTarget(node)`. + !#zh 暂停本节点上所有正在运行的动作。和 `cc.director.getActionManager().pauseTarget(node);` 等价。 + + @example + ```js + node.pauseAllActions(); + ``` + */ + pauseAllActions(): void; + /** + !#en Resume all paused actions on the current node. Equals to `cc.director.getActionManager().resumeTarget(node)`. + !#zh 恢复运行本节点上所有暂停的动作。和 `cc.director.getActionManager().resumeTarget(node);` 等价。 + + @example + ```js + node.resumeAllActions(); + ``` + */ + resumeAllActions(): void; + /** + !#en Stops and removes all actions from the running action list . + !#zh 停止并且移除所有正在运行的动作列表。 + + @example + ```js + node.stopAllActions(); + ``` + */ + stopAllActions(): void; + /** + !#en Stops and removes an action from the running action list. + !#zh 停止并移除指定的动作。 + @param action An action object to be removed. + + @example + ```js + var action = cc.scaleTo(0.2, 1, 0.6); + node.stopAction(action); + ``` + */ + stopAction(action: Action): void; + /** + !#en Removes an action from the running action list by its tag. + !#zh 停止并且移除指定标签的动作。 + @param tag A tag that indicates the action to be removed. + + @example + ```js + node.stopActionByTag(1); + ``` + */ + stopActionByTag(tag: number): void; + /** + !#en Returns an action from the running action list by its tag. + !#zh 通过标签获取指定动作。 + @param tag tag + + @example + ```js + var action = node.getActionByTag(1); + ``` + */ + getActionByTag(tag: number): Action; + /** + !#en + Returns the numbers of actions that are running plus the ones that are schedule to run (actions in actionsToAdd and actions arrays).
+ Composable actions are counted as 1 action. Example:
+ If you are running 1 Sequence of 7 actions, it will return 1.
+ If you are running 7 Sequences of 2 actions, it will return 7.

+ !#zh + 获取运行着的动作加上正在调度运行的动作的总数。
+ 例如:
+ - 如果你正在运行 7 个动作中的 1 个 Sequence,它将返回 1。
+ - 如果你正在运行 2 个动作中的 7 个 Sequence,它将返回 7。
+ + @example + ```js + var count = node.getNumberOfRunningActions(); + cc.log("Running Action Count: " + count); + ``` + */ + getNumberOfRunningActions(): number; + /** + !#en + Returns a copy of the position (x, y, z) of the node in its parent's coordinates. + You can pass a cc.Vec2 or cc.Vec3 as the argument to receive the return values. + !#zh + 获取节点在父节点坐标系中的位置(x, y, z)。 + 你可以传一个 cc.Vec2 或者 cc.Vec3 作为参数来接收返回值。 + @param out The return value to receive position + + @example + ```js + cc.log("Node Position: " + node.getPosition()); + ``` + */ + getPosition(out?: Vec2|Vec3): Vec2; + /** + !#en + Sets the position (x, y, z) of the node in its parent's coordinates.
+ Usually we use cc.v2(x, y) to compose cc.Vec2 object, in this case, position.z will become 0.
+ and passing two numbers (x, y) is more efficient than passing cc.Vec2 object, in this case, position.z will remain unchanged. + For 3D node we can use cc.v3(x, y, z) to compose cc.Vec3 object,
+ and passing three numbers (x, y, z) is more efficient than passing cc.Vec3 object. + !#zh + 设置节点在父节点坐标系中的位置。
+ 可以通过下面的方式设置坐标点:
+ 1. 传入 2 个数值 x, y (此时不会改变 position.z 的值)。
+ 2. 传入 cc.v2(x, y) 类型为 cc.Vec2 的对象 (此时 position.z 的值将被设置为0)。 + 3. 对于 3D 节点可以传入 3 个数值 x, y, z。
+ 4. 对于 3D 节点可以传入 cc.v3(x, y, z) 类型为 cc.Vec3 的对象。 + @param x X coordinate for position or the position object + @param y Y coordinate for position + @param z Z coordinate for position + */ + setPosition(x: Vec2|Vec3|number, y?: number, z?: number): void; + /** + !#en + Returns the scale factor of the node. + Need pass a cc.Vec2 or cc.Vec3 as the argument to receive the return values. + !#zh 获取节点的缩放,需要传一个 cc.Vec2 或者 cc.Vec3 作为参数来接收返回值。 + @param out out + + @example + ```js + cc.log("Node Scale: " + node.getScale(cc.v3())); + ``` + */ + getScale(out: Vec2|Vec3): Vec2; + /** + !#en + Sets the scale of axis in local coordinates of the node. + You can operate 2 axis in 2D node, and 3 axis in 3D node. + When only (x, y) is passed, the value of scale.z will not be changed. + When a Vec2 is passed in, the value of scale.z will be set to 0. + !#zh + 设置节点在本地坐标系中坐标轴上的缩放比例。 + 2D 节点可以操作两个坐标轴,而 3D 节点可以操作三个坐标轴。 + 当只传入 (x, y) 时,scale.z 的值不会被改变。 + 当只传入 Vec2 对象时,scale.z 的值将被设置为0。 + @param x scaleX or scale object + @param y y + @param z z + + @example + ```js + node.setScale(cc.v2(2, 2)); // Notice: scaleZ will be 0 + node.setScale(cc.v3(2, 2, 2)); // for 3D node + node.setScale(2); + ``` + */ + setScale(x: number|Vec2|Vec3, y?: number, z?: number): void; + /** + !#en + Get rotation of node (in quaternion). + Need pass a cc.Quat as the argument to receive the return values. + !#zh + 获取该节点的 quaternion 旋转角度,需要传一个 cc.Quat 作为参数来接收返回值。 + @param out out + */ + getRotation(out: Quat): Quat; + /** + !#en Set rotation of node (in quaternion). + !#zh 设置该节点的 quaternion 旋转角度。 + @param quat Quaternion object represents the rotation or the x value of quaternion + @param y y value of quternion + @param z z value of quternion + @param w w value of quternion + */ + setRotation(quat: Quat|number, y?: number, z?: number, w?: number): void; + /** + !#en + Returns a copy the untransformed size of the node.
+ The contentSize remains the same no matter the node is scaled or rotated.
+ All nodes has a size. Layer and Scene has the same size of the screen by default.
+ !#zh 获取节点自身大小,不受该节点是否被缩放或者旋转的影响。 + + @example + ```js + cc.log("Content Size: " + node.getContentSize()); + ``` + */ + getContentSize(): Size; + /** + !#en + Sets the untransformed size of the node.
+ The contentSize remains the same no matter the node is scaled or rotated.
+ All nodes has a size. Layer and Scene has the same size of the screen. + !#zh 设置节点原始大小,不受该节点是否被缩放或者旋转的影响。 + @param size The untransformed size of the node or The untransformed size's width of the node. + @param height The untransformed size's height of the node. + + @example + ```js + node.setContentSize(cc.size(100, 100)); + node.setContentSize(100, 100); + ``` + */ + setContentSize(size: Size|number, height?: number): void; + /** + !#en + Returns a copy of the anchor point.
+ Anchor point is the point around which all transformations and positioning manipulations take place.
+ It's like a pin in the node where it is "attached" to its parent.
+ The anchorPoint is normalized, like a percentage. (0,0) means the bottom-left corner and (1,1) means the top-right corner.
+ But you can use values higher than (1,1) and lower than (0,0) too.
+ The default anchor point is (0.5,0.5), so it starts at the center of the node. + !#zh + 获取节点锚点,用百分比表示。
+ 锚点应用于所有变换和坐标点的操作,它就像在节点上连接其父节点的大头针。
+ 锚点是标准化的,就像百分比一样。(0,0) 表示左下角,(1,1) 表示右上角。
+ 但是你可以使用比(1,1)更高的值或者比(0,0)更低的值。
+ 默认的锚点是(0.5,0.5),因此它开始于节点的中心位置。
+ 注意:Creator 中的锚点仅用于定位所在的节点,子节点的定位不受影响。 + + @example + ```js + cc.log("Node AnchorPoint: " + node.getAnchorPoint()); + ``` + */ + getAnchorPoint(): Vec2; + /** + !#en + Sets the anchor point in percent.
+ anchor point is the point around which all transformations and positioning manipulations take place.
+ It's like a pin in the node where it is "attached" to its parent.
+ The anchorPoint is normalized, like a percentage. (0,0) means the bottom-left corner and (1,1) means the top-right corner.
+ But you can use values higher than (1,1) and lower than (0,0) too.
+ The default anchor point is (0.5,0.5), so it starts at the center of the node. + !#zh + 设置锚点的百分比。
+ 锚点应用于所有变换和坐标点的操作,它就像在节点上连接其父节点的大头针。
+ 锚点是标准化的,就像百分比一样。(0,0) 表示左下角,(1,1) 表示右上角。
+ 但是你可以使用比(1,1)更高的值或者比(0,0)更低的值。
+ 默认的锚点是(0.5,0.5),因此它开始于节点的中心位置。
+ 注意:Creator 中的锚点仅用于定位所在的节点,子节点的定位不受影响。 + @param point The anchor point of node or The x axis anchor of node. + @param y The y axis anchor of node. + + @example + ```js + node.setAnchorPoint(cc.v2(1, 1)); + node.setAnchorPoint(1, 1); + ``` + */ + setAnchorPoint(point: Vec2|number, y?: number): void; + /** + !#en Set rotation by lookAt target point, normally used by Camera Node + !#zh 通过观察目标来设置 rotation,一般用于 Camera Node 上 + @param pos pos + @param up default is (0,1,0) + */ + lookAt(pos: Vec3, up?: Vec3): void; + /** + !#en + Get the local transform matrix (4x4), based on parent node coordinates + !#zh 返回局部空间坐标系的矩阵,基于父节点坐标系。 + @param out The matrix object to be filled with data + + @example + ```js + let mat4 = cc.mat4(); + node.getLocalMatrix(mat4); + ``` + */ + getLocalMatrix(out: Mat4): Mat4; + /** + !#en + Get the world transform matrix (4x4) + !#zh 返回世界空间坐标系的矩阵。 + @param out The matrix object to be filled with data + + @example + ```js + let mat4 = cc.mat4(); + node.getWorldMatrix(mat4); + ``` + */ + getWorldMatrix(out: Mat4): Mat4; + /** + !#en + Converts a Point to node (local) space coordinates. + !#zh + 将一个点转换到节点 (局部) 空间坐标系。 + @param worldPoint worldPoint + @param out out + + @example + ```js + var newVec2 = node.convertToNodeSpaceAR(cc.v2(100, 100)); + var newVec3 = node.convertToNodeSpaceAR(cc.v3(100, 100, 100)); + ``` + */ + convertToNodeSpaceAR(worldPoint: T, out?: T): T; + /** + !#en + Converts a Point in node coordinates to world space coordinates. + !#zh + 将节点坐标系下的一个点转换到世界空间坐标系。 + @param nodePoint nodePoint + @param out out + + @example + ```js + var newVec2 = node.convertToWorldSpaceAR(cc.v2(100, 100)); + var newVec3 = node.convertToWorldSpaceAR(cc.v3(100, 100, 100)); + ``` + */ + convertToWorldSpaceAR(nodePoint: T, out?: T): T; + /** + !#en Converts a Point to node (local) space coordinates then add the anchor point position. + So the return position will be related to the left bottom corner of the node's bounding box. + This equals to the API behavior of cocos2d-x, you probably want to use convertToNodeSpaceAR instead + !#zh 将一个点转换到节点 (局部) 坐标系,并加上锚点的坐标。
+ 也就是说返回的坐标是相对于节点包围盒左下角的坐标。
+ 这个 API 的设计是为了和 cocos2d-x 中行为一致,更多情况下你可能需要使用 convertToNodeSpaceAR。 + @param worldPoint worldPoint + + @example + ```js + var newVec2 = node.convertToNodeSpace(cc.v2(100, 100)); + ``` + */ + convertToNodeSpace(worldPoint: Vec2): Vec2; + /** + !#en Converts a Point related to the left bottom corner of the node's bounding box to world space coordinates. + This equals to the API behavior of cocos2d-x, you probably want to use convertToWorldSpaceAR instead + !#zh 将一个相对于节点左下角的坐标位置转换到世界空间坐标系。 + 这个 API 的设计是为了和 cocos2d-x 中行为一致,更多情况下你可能需要使用 convertToWorldSpaceAR + @param nodePoint nodePoint + + @example + ```js + var newVec2 = node.convertToWorldSpace(cc.v2(100, 100)); + ``` + */ + convertToWorldSpace(nodePoint: Vec2): Vec2; + /** + !#en + Returns the matrix that transform the node's (local) space coordinates into the parent's space coordinates.
+ The matrix is in Pixels. + !#zh 返回这个将节点(局部)的空间坐标系转换成父节点的空间坐标系的矩阵。这个矩阵以像素为单位。 + @param out The affine transform object to be filled with data + + @example + ```js + let affineTransform = cc.AffineTransform.create(); + node.getNodeToParentTransform(affineTransform); + ``` + */ + getNodeToParentTransform(out?: AffineTransform): AffineTransform; + /** + !#en + Returns the matrix that transform the node's (local) space coordinates into the parent's space coordinates.
+ The matrix is in Pixels.
+ This method is AR (Anchor Relative). + !#zh + 返回这个将节点(局部)的空间坐标系转换成父节点的空间坐标系的矩阵。
+ 这个矩阵以像素为单位。
+ 该方法基于节点坐标。 + @param out The affine transform object to be filled with data + + @example + ```js + let affineTransform = cc.AffineTransform.create(); + node.getNodeToParentTransformAR(affineTransform); + ``` + */ + getNodeToParentTransformAR(out?: AffineTransform): AffineTransform; + /** + !#en Returns the world affine transform matrix. The matrix is in Pixels. + !#zh 返回节点到世界坐标系的仿射变换矩阵。矩阵单位是像素。 + @param out The affine transform object to be filled with data + + @example + ```js + let affineTransform = cc.AffineTransform.create(); + node.getNodeToWorldTransform(affineTransform); + ``` + */ + getNodeToWorldTransform(out?: AffineTransform): AffineTransform; + /** + !#en + Returns the world affine transform matrix. The matrix is in Pixels.
+ This method is AR (Anchor Relative). + !#zh + 返回节点到世界坐标仿射变换矩阵。矩阵单位是像素。
+ 该方法基于节点坐标。 + @param out The affine transform object to be filled with data + + @example + ```js + let affineTransform = cc.AffineTransform.create(); + node.getNodeToWorldTransformAR(affineTransform); + ``` + */ + getNodeToWorldTransformAR(out?: AffineTransform): AffineTransform; + /** + !#en + Returns the matrix that transform parent's space coordinates to the node's (local) space coordinates.
+ The matrix is in Pixels. The returned transform is readonly and cannot be changed. + !#zh + 返回将父节点的坐标系转换成节点(局部)的空间坐标系的矩阵。
+ 该矩阵以像素为单位。返回的矩阵是只读的,不能更改。 + @param out The affine transform object to be filled with data + + @example + ```js + let affineTransform = cc.AffineTransform.create(); + node.getParentToNodeTransform(affineTransform); + ``` + */ + getParentToNodeTransform(out?: AffineTransform): AffineTransform; + /** + !#en Returns the inverse world affine transform matrix. The matrix is in Pixels. + !#en 返回世界坐标系到节点坐标系的逆矩阵。 + @param out The affine transform object to be filled with data + + @example + ```js + let affineTransform = cc.AffineTransform.create(); + node.getWorldToNodeTransform(affineTransform); + ``` + */ + getWorldToNodeTransform(out?: AffineTransform): AffineTransform; + /** + !#en convenience methods which take a cc.Touch instead of cc.Vec2. + !#zh 将触摸点转换成本地坐标系中位置。 + @param touch The touch object + + @example + ```js + var newVec2 = node.convertTouchToNodeSpace(touch); + ``` + */ + convertTouchToNodeSpace(touch: Touch): Vec2; + /** + !#en converts a cc.Touch (world coordinates) into a local coordinate. This method is AR (Anchor Relative). + !#zh 转换一个 cc.Touch(世界坐标)到一个局部坐标,该方法基于节点坐标。 + @param touch The touch object + + @example + ```js + var newVec2 = node.convertTouchToNodeSpaceAR(touch); + ``` + */ + convertTouchToNodeSpaceAR(touch: Touch): Vec2; + /** + !#en + Returns a "local" axis aligned bounding box of the node.
+ The returned box is relative only to its parent. + !#zh 返回父节坐标系下的轴向对齐的包围盒。 + + @example + ```js + var boundingBox = node.getBoundingBox(); + ``` + */ + getBoundingBox(): Rect; + /** + !#en + Returns a "world" axis aligned bounding box of the node.
+ The bounding box contains self and active children's world bounding box. + !#zh + 返回节点在世界坐标系下的对齐轴向的包围盒(AABB)。
+ 该边框包含自身和已激活的子节点的世界边框。 + + @example + ```js + var newRect = node.getBoundingBoxToWorld(); + ``` + */ + getBoundingBoxToWorld(): Rect; + /** + !#en + Adds a child to the node with z order and name. + !#zh + 添加子节点,并且可以修改该节点的 局部 Z 顺序和名字。 + @param child A child node + @param zIndex Z order for drawing priority. Please refer to zIndex property + @param name A name to identify the node easily. Please refer to name property + + @example + ```js + node.addChild(newNode, 1, "node"); + ``` + */ + addChild(child: Node, zIndex?: number, name?: string): void; + /** + !#en Stops all running actions and schedulers. + !#zh 停止所有正在播放的动作和计时器。 + + @example + ```js + node.cleanup(); + ``` + */ + cleanup(): void; + /** + !#en Sorts the children array depends on children's zIndex and arrivalOrder, + normally you won't need to invoke this function. + !#zh 根据子节点的 zIndex 和 arrivalOrder 进行排序,正常情况下开发者不需要手动调用这个函数。 + */ + sortAllChildren(): void; + /** + !#en + Returns the displayed opacity of Node, + the difference between displayed opacity and opacity is that displayed opacity is calculated based on opacity and parent node's opacity when cascade opacity enabled. + !#zh + 获取节点显示透明度, + 显示透明度和透明度之间的不同之处在于当启用级连透明度时, + 显示透明度是基于自身透明度和父节点透明度计算的。 + */ + getDisplayedOpacity(): number; + /** + !#en + Returns the displayed color of Node, + the difference between displayed color and color is that displayed color is calculated based on color and parent node's color when cascade color enabled. + !#zh + 获取节点的显示颜色, + 显示颜色和颜色之间的不同之处在于当启用级连颜色时, + 显示颜色是基于自身颜色和父节点颜色计算的。 + */ + getDisplayedColor(): Color; + /** !#en Cascade opacity is removed from v2.0 + Indicate whether node's opacity value affect its child nodes, default value is true. + !#zh 透明度级联功能从 v2.0 开始已移除 + 节点的不透明度值是否影响其子节点,默认值为 true。 */ + cascadeOpacity: boolean; + /** + !#en Cascade opacity is removed from v2.0 + Returns whether node's opacity value affect its child nodes. + !#zh 透明度级联功能从 v2.0 开始已移除 + 返回节点的不透明度值是否影响其子节点。 + */ + isCascadeOpacityEnabled(): boolean; + /** + !#en Cascade opacity is removed from v2.0 + Enable or disable cascade opacity, if cascade enabled, child nodes' opacity will be the multiplication of parent opacity and its own opacity. + !#zh 透明度级联功能从 v2.0 开始已移除 + 启用或禁用级连不透明度,如果级连启用,子节点的不透明度将是父不透明度乘上它自己的不透明度。 + @param cascadeOpacityEnabled cascadeOpacityEnabled + */ + setCascadeOpacityEnabled(cascadeOpacityEnabled: boolean): void; + /** + !#en Opacity modify RGB have been removed since v2.0 + Set whether color should be changed with the opacity value, + useless in ccsg.Node, but this function is override in some class to have such behavior. + !#zh 透明度影响颜色配置已经被废弃 + 设置更改透明度时是否修改RGB值, + @param opacityValue opacityValue + */ + setOpacityModifyRGB(opacityValue: boolean): void; + /** + !#en Opacity modify RGB have been removed since v2.0 + Get whether color should be changed with the opacity value. + !#zh 透明度影响颜色配置已经被废弃 + 获取更改透明度时是否修改RGB值。 + */ + isOpacityModifyRGB(): boolean; + } + /** !#en + Class of private entities in Cocos Creator scenes.
+ The PrivateNode is hidden in editor, and completely transparent to users.
+ It's normally used as Node's private content created by components in parent node.
+ So in theory private nodes are not children, they are part of the parent node.
+ Private node have two important characteristics:
+ 1. It has the minimum z index and cannot be modified, because they can't be displayed over real children.
+ 2. The positioning of private nodes is also special, they will consider the left bottom corner of the parent node's bounding box as the origin of local coordinates.
+ In this way, they can be easily kept inside the bounding box.
+ Currently, it's used by RichText component and TileMap component. + !#zh + Cocos Creator 场景中的私有节点类。
+ 私有节点在编辑器中不可见,对用户透明。
+ 通常私有节点是被一些特殊的组件创建出来作为父节点的一部分而存在的,理论上来说,它们不是子节点,而是父节点的组成部分。
+ 私有节点有两个非常重要的特性:
+ 1. 它有着最小的渲染排序的 Z 轴深度,并且无法被更改,因为它们不能被显示在其他正常子节点之上。
+ 2. 它的定位也是特殊的,对于私有节点来说,父节点包围盒的左下角是它的局部坐标系原点,这个原点相当于父节点的位置减去它锚点的偏移。这样私有节点可以比较容易被控制在包围盒之中。
+ 目前在引擎中,RichText 和 TileMap 都有可能生成私有节点。 */ + export class PrivateNode extends Node { + /** + + @param name name + */ + constructor(name?: string); + } + /** !#en + cc.Scene is a subclass of cc.Node that is used only as an abstract concept.
+ cc.Scene and cc.Node are almost identical with the difference that users can not modify cc.Scene manually. + !#zh + cc.Scene 是 cc.Node 的子类,仅作为一个抽象的概念。
+ cc.Scene 和 cc.Node 有点不同,用户不应直接修改 cc.Scene。 */ + export class Scene extends Node { + /** !#en Indicates whether all (directly or indirectly) static referenced assets of this scene are releasable by default after scene unloading. + !#zh 指示该场景中直接或间接静态引用到的所有资源是否默认在场景切换后自动释放。 */ + autoReleaseAssets: boolean; + } + /** !#en + Scheduler is responsible of triggering the scheduled callbacks.
+ You should not use NSTimer. Instead use this class.
+
+ There are 2 different types of callbacks (selectors):
+ - update callback: the 'update' callback will be called every frame. You can customize the priority.
+ - custom callback: A custom callback will be called every frame, or with a custom interval of time
+
+ The 'custom selectors' should be avoided when possible. It is faster, + and consumes less memory to use the 'update callback'. * + !#zh + Scheduler 是负责触发回调函数的类。
+ 通常情况下,建议使用 cc.director.getScheduler() 来获取系统定时器。
+ 有两种不同类型的定时器:
+ - update 定时器:每一帧都会触发。您可以自定义优先级。
+ - 自定义定时器:自定义定时器可以每一帧或者自定义的时间间隔触发。
+ 如果希望每帧都触发,应该使用 update 定时器,使用 update 定时器更快,而且消耗更少的内存。 */ + export class Scheduler { + /** + !#en This method should be called for any target which needs to schedule tasks, and this method should be called before any scheduler API usage. + This method will add a `_id` property if it doesn't exist. + !#zh 任何需要用 Scheduler 管理任务的对象主体都应该调用这个方法,并且应该在调用任何 Scheduler API 之前调用这个方法。 + 这个方法会给对象添加一个 `_id` 属性,如果这个属性不存在的话。 + @param target target + */ + enableForTarget(target: any): void; + /** + !#en + Modifies the time of all scheduled callbacks.
+ You can use this property to create a 'slow motion' or 'fast forward' effect.
+ Default is 1.0. To create a 'slow motion' effect, use values below 1.0.
+ To create a 'fast forward' effect, use values higher than 1.0.
+ Note:It will affect EVERY scheduled selector / action. + !#zh + 设置时间间隔的缩放比例。
+ 您可以使用这个方法来创建一个 “slow motion(慢动作)” 或 “fast forward(快进)” 的效果。
+ 默认是 1.0。要创建一个 “slow motion(慢动作)” 效果,使用值低于 1.0。
+ 要使用 “fast forward(快进)” 效果,使用值大于 1.0。
+ 注意:它影响该 Scheduler 下管理的所有定时器。 + @param timeScale timeScale + */ + setTimeScale(timeScale: number): void; + /** + !#en Returns time scale of scheduler. + !#zh 获取时间间隔的缩放比例。 + */ + getTimeScale(): number; + /** + !#en 'update' the scheduler. (You should NEVER call this method, unless you know what you are doing.) + !#zh update 调度函数。(不应该直接调用这个方法,除非完全了解这么做的结果) + @param dt delta time + */ + update(dt: number): void; + /** + !#en +

+ The scheduled method will be called every 'interval' seconds.
+ If paused is YES, then it won't be called until it is resumed.
+ If 'interval' is 0, it will be called every frame, but if so, it recommended to use 'scheduleUpdateForTarget:' instead.
+ If the callback function is already scheduled, then only the interval parameter will be updated without re-scheduling it again.
+ repeat let the action be repeated repeat + 1 times, use cc.macro.REPEAT_FOREVER to let the action run continuously
+ delay is the amount of time the action will wait before it'll start
+

+ !#zh + 指定回调函数,调用对象等信息来添加一个新的定时器。
+ 如果 paused 值为 true,那么直到 resume 被调用才开始计时。
+ 当时间间隔达到指定值时,设置的回调函数将会被调用。
+ 如果 interval 值为 0,那么回调函数每一帧都会被调用,但如果是这样, + 建议使用 scheduleUpdateForTarget 代替。
+ 如果回调函数已经被定时器使用,那么只会更新之前定时器的时间间隔参数,不会设置新的定时器。
+ repeat 值可以让定时器触发 repeat + 1 次,使用 cc.macro.REPEAT_FOREVER + 可以让定时器一直循环触发。
+ delay 值指定延迟时间,定时器会在延迟指定的时间之后开始计时。 + @param callback callback + @param target target + @param interval interval + @param repeat repeat + @param delay delay + @param paused paused + + @example + ```js + //register a schedule to scheduler + cc.director.getScheduler().schedule(callback, this, interval, !this._isRunning); + + ``` + */ + schedule(callback: Function, target: any, interval: number, repeat: number, delay: number, paused?: boolean): void; + schedule(callback: Function, target: any, interval: number, paused?: boolean): void; + /** + !#en + Schedules the update callback for a given target, + During every frame after schedule started, the "update" function of target will be invoked. + !#zh + 使用指定的优先级为指定的对象设置 update 定时器。 + update 定时器每一帧都会被触发,触发时自动调用指定对象的 "update" 函数。 + 优先级的值越低,定时器被触发的越早。 + @param target target + @param priority priority + @param paused paused + */ + scheduleUpdate(target: any, priority: number, paused: boolean): void; + /** + !#en + Unschedules a callback for a callback and a given target. + If you want to unschedule the "update", use `unscheduleUpdate()` + !#zh + 取消指定对象定时器。 + 如果需要取消 update 定时器,请使用 unscheduleUpdate()。 + @param callback The callback to be unscheduled + @param target The target bound to the callback. + */ + unschedule(callback: Function, target: any): void; + /** + !#en Unschedules the update callback for a given target. + !#zh 取消指定对象的 update 定时器。 + @param target The target to be unscheduled. + */ + unscheduleUpdate(target: any): void; + /** + !#en + Unschedules all scheduled callbacks for a given target. + This also includes the "update" callback. + !#zh 取消指定对象的所有定时器,包括 update 定时器。 + @param target The target to be unscheduled. + */ + unscheduleAllForTarget(target: any): void; + /** + !#en + Unschedules all scheduled callbacks from all targets including the system callbacks.
+ You should NEVER call this method, unless you know what you are doing. + !#zh + 取消所有对象的所有定时器,包括系统定时器。
+ 不要调用此函数,除非你确定你在做什么。 + */ + unscheduleAll(): void; + /** + !#en + Unschedules all callbacks from all targets with a minimum priority.
+ You should only call this with `PRIORITY_NON_SYSTEM_MIN` or higher. + !#zh + 取消所有优先级的值大于指定优先级的定时器。
+ 你应该只取消优先级的值大于 PRIORITY_NON_SYSTEM_MIN 的定时器。 + @param minPriority The minimum priority of selector to be unscheduled. Which means, all selectors which + priority is higher than minPriority will be unscheduled. + */ + unscheduleAllWithMinPriority(minPriority: number): void; + /** + !#en Checks whether a callback for a given target is scheduled. + !#zh 检查指定的回调函数和回调对象组合是否存在定时器。 + @param callback The callback to check. + @param target The target of the callback. + */ + isScheduled(callback: Function, target: any): boolean; + /** + !#en + Pause all selectors from all targets.
+ You should NEVER call this method, unless you know what you are doing. + !#zh + 暂停所有对象的所有定时器。
+ 不要调用这个方法,除非你知道你正在做什么。 + */ + pauseAllTargets(): void; + /** + !#en + Pause all selectors from all targets with a minimum priority.
+ You should only call this with kCCPriorityNonSystemMin or higher. + !#zh + 暂停所有优先级的值大于指定优先级的定时器。
+ 你应该只暂停优先级的值大于 PRIORITY_NON_SYSTEM_MIN 的定时器。 + @param minPriority minPriority + */ + pauseAllTargetsWithMinPriority(minPriority: number): void; + /** + !#en + Resume selectors on a set of targets.
+ This can be useful for undoing a call to pauseAllCallbacks. + !#zh + 恢复指定数组中所有对象的定时器。
+ 这个函数是 pauseAllCallbacks 的逆操作。 + @param targetsToResume targetsToResume + */ + resumeTargets(targetsToResume: any[]): void; + /** + !#en + Pauses the target.
+ All scheduled selectors/update for a given target won't be 'ticked' until the target is resumed.
+ If the target is not present, nothing happens. + !#zh + 暂停指定对象的定时器。
+ 指定对象的所有定时器都会被暂停。
+ 如果指定的对象没有定时器,什么也不会发生。 + @param target target + */ + pauseTarget(target: any): void; + /** + !#en + Resumes the target.
+ The 'target' will be unpaused, so all schedule selectors/update will be 'ticked' again.
+ If the target is not present, nothing happens. + !#zh + 恢复指定对象的所有定时器。
+ 指定对象的所有定时器将继续工作。
+ 如果指定的对象没有定时器,什么也不会发生。 + @param target target + */ + resumeTarget(target: any): void; + /** + !#en Returns whether or not the target is paused. + !#zh 返回指定对象的定时器是否暂停了。 + @param target target + */ + isTargetPaused(target: any): boolean; + /** !#en Priority level reserved for system services. + !#zh 系统服务的优先级。 */ + static PRIORITY_SYSTEM: number; + /** !#en Minimum priority level for user scheduling. + !#zh 用户调度最低优先级。 */ + static PRIORITY_NON_SYSTEM: number; + } + /** Class for particle asset handling. */ + export class ParticleAsset extends Asset { + } + /** Particle System base class.
+ Attributes of a Particle System:
+ - emmision rate of the particles
+ - Gravity Mode (Mode A):
+ - gravity
+ - direction
+ - speed +- variance
+ - tangential acceleration +- variance
+ - radial acceleration +- variance
+ - Radius Mode (Mode B):
+ - startRadius +- variance
+ - endRadius +- variance
+ - rotate +- variance
+ - Properties common to all modes:
+ - life +- life variance
+ - start spin +- variance
+ - end spin +- variance
+ - start size +- variance
+ - end size +- variance
+ - start color +- variance
+ - end color +- variance
+ - life +- variance
+ - blending function
+ - texture
+
+ cocos2d also supports particles generated by Particle Designer (http://particledesigner.71squared.com/).
+ 'Radius Mode' in Particle Designer uses a fixed emit rate of 30 hz. Since that can't be guarateed in cocos2d,
+ cocos2d uses a another approach, but the results are almost identical.
+ cocos2d supports all the variables used by Particle Designer plus a bit more:
+ - spinning particles (supported when using ParticleSystem)
+ - tangential acceleration (Gravity mode)
+ - radial acceleration (Gravity mode)
+ - radius direction (Radius mode) (Particle Designer supports outwards to inwards direction only)
+ It is possible to customize any of the above mentioned properties in runtime. Example:
*/ + export class ParticleSystem extends RenderComponent implements BlendFunc { + /** !#en Play particle in edit mode. + !#zh 在编辑器模式下预览粒子,启用后选中粒子时,粒子将自动播放。 */ + preview: boolean; + /** !#en + If set custom to true, then use custom properties insteadof read particle file. + !#zh 是否自定义粒子属性。 */ + custom: boolean; + /** !#en The plist file. + !#zh plist 格式的粒子配置文件。 */ + file: ParticleAsset; + /** !#en SpriteFrame used for particles display + !#zh 用于粒子呈现的 SpriteFrame */ + spriteFrame: SpriteFrame; + /** !#en Texture of Particle System, readonly, please use spriteFrame to setup new texture。 + !#zh 粒子贴图,只读属性,请使用 spriteFrame 属性来替换贴图。 */ + texture: string; + /** !#en Current quantity of particles that are being simulated. + !#zh 当前播放的粒子数量。 */ + particleCount: number; + /** !#en Indicate whether the system simulation have stopped. + !#zh 指示粒子播放是否完毕。 */ + stopped: boolean; + /** !#en If set to true, the particle system will automatically start playing on onLoad. + !#zh 如果设置为 true 运行时会自动发射粒子。 */ + playOnLoad: boolean; + /** !#en Indicate whether the owner node will be auto-removed when it has no particles left. + !#zh 粒子播放完毕后自动销毁所在的节点。 */ + autoRemoveOnFinish: boolean; + /** !#en Indicate whether the particle system is activated. + !#zh 是否激活粒子。 */ + active: boolean; + /** !#en Maximum particles of the system. + !#zh 粒子最大数量。 */ + totalParticles: number; + /** !#en How many seconds the emitter wil run. -1 means 'forever'. + !#zh 发射器生存时间,单位秒,-1表示持续发射。 */ + duration: number; + /** !#en Emission rate of the particles. + !#zh 每秒发射的粒子数目。 */ + emissionRate: number; + /** !#en Life of each particle setter. + !#zh 粒子的运行时间。 */ + life: number; + /** !#en Variation of life. + !#zh 粒子的运行时间变化范围。 */ + lifeVar: number; + /** !#en Start color of each particle. + !#zh 粒子初始颜色。 */ + startColor: Color; + /** !#en Variation of the start color. + !#zh 粒子初始颜色变化范围。 */ + startColorVar: Color; + /** !#en Ending color of each particle. + !#zh 粒子结束颜色。 */ + endColor: Color; + /** !#en Variation of the end color. + !#zh 粒子结束颜色变化范围。 */ + endColorVar: Color; + /** !#en Angle of each particle setter. + !#zh 粒子角度。 */ + angle: number; + /** !#en Variation of angle of each particle setter. + !#zh 粒子角度变化范围。 */ + angleVar: number; + /** !#en Start size in pixels of each particle. + !#zh 粒子的初始大小。 */ + startSize: number; + /** !#en Variation of start size in pixels. + !#zh 粒子初始大小的变化范围。 */ + startSizeVar: number; + /** !#en End size in pixels of each particle. + !#zh 粒子结束时的大小。 */ + endSize: number; + /** !#en Variation of end size in pixels. + !#zh 粒子结束大小的变化范围。 */ + endSizeVar: number; + /** !#en Start angle of each particle. + !#zh 粒子开始自旋角度。 */ + startSpin: number; + /** !#en Variation of start angle. + !#zh 粒子开始自旋角度变化范围。 */ + startSpinVar: number; + /** !#en End angle of each particle. + !#zh 粒子结束自旋角度。 */ + endSpin: number; + /** !#en Variation of end angle. + !#zh 粒子结束自旋角度变化范围。 */ + endSpinVar: number; + /** !#en Source position of the emitter. + !#zh 发射器位置。 */ + sourcePos: Vec2; + /** !#en Variation of source position. + !#zh 发射器位置的变化范围。(横向和纵向) */ + posVar: Vec2; + /** !#en Particles movement type. + !#zh 粒子位置类型。 */ + positionType: ParticleSystem.PositionType; + /** !#en Particles emitter modes. + !#zh 发射器类型。 */ + emitterMode: ParticleSystem.EmitterMode; + /** !#en Gravity of the emitter. + !#zh 重力。 */ + gravity: Vec2; + /** !#en Speed of the emitter. + !#zh 速度。 */ + speed: number; + /** !#en Variation of the speed. + !#zh 速度变化范围。 */ + speedVar: number; + /** !#en Tangential acceleration of each particle. Only available in 'Gravity' mode. + !#zh 每个粒子的切向加速度,即垂直于重力方向的加速度,只有在重力模式下可用。 */ + tangentialAccel: number; + /** !#en Variation of the tangential acceleration. + !#zh 每个粒子的切向加速度变化范围。 */ + tangentialAccelVar: number; + /** !#en Acceleration of each particle. Only available in 'Gravity' mode. + !#zh 粒子径向加速度,即平行于重力方向的加速度,只有在重力模式下可用。 */ + radialAccel: number; + /** !#en Variation of the radial acceleration. + !#zh 粒子径向加速度变化范围。 */ + radialAccelVar: number; + /** !#en Indicate whether the rotation of each particle equals to its direction. Only available in 'Gravity' mode. + !#zh 每个粒子的旋转是否等于其方向,只有在重力模式下可用。 */ + rotationIsDir: boolean; + /** !#en Starting radius of the particles. Only available in 'Radius' mode. + !#zh 初始半径,表示粒子出生时相对发射器的距离,只有在半径模式下可用。 */ + startRadius: number; + /** !#en Variation of the starting radius. + !#zh 初始半径变化范围。 */ + startRadiusVar: number; + /** !#en Ending radius of the particles. Only available in 'Radius' mode. + !#zh 结束半径,只有在半径模式下可用。 */ + endRadius: number; + /** !#en Variation of the ending radius. + !#zh 结束半径变化范围。 */ + endRadiusVar: number; + /** !#en Number of degress to rotate a particle around the source pos per second. Only available in 'Radius' mode. + !#zh 粒子每秒围绕起始点的旋转角度,只有在半径模式下可用。 */ + rotatePerS: number; + /** !#en Variation of the degress to rotate a particle around the source pos per second. + !#zh 粒子每秒围绕起始点的旋转角度变化范围。 */ + rotatePerSVar: number; + /** !#en The Particle emitter lives forever. + !#zh 表示发射器永久存在 */ + static DURATION_INFINITY: number; + /** !#en The starting size of the particle is equal to the ending size. + !#zh 表示粒子的起始大小等于结束大小。 */ + static START_SIZE_EQUAL_TO_END_SIZE: number; + /** !#en The starting radius of the particle is equal to the ending radius. + !#zh 表示粒子的起始半径等于结束半径。 */ + static START_RADIUS_EQUAL_TO_END_RADIUS: number; + /** + !#en Stop emitting particles. Running particles will continue to run until they die. + !#zh 停止发射器发射粒子,发射出去的粒子将继续运行,直至粒子生命结束。 + + @example + ```js + // stop particle system. + myParticleSystem.stopSystem(); + ``` + */ + stopSystem(): void; + /** + !#en Kill all living particles. + !#zh 杀死所有存在的粒子,然后重新启动粒子发射器。 + + @example + ```js + // play particle system. + myParticleSystem.resetSystem(); + ``` + */ + resetSystem(): void; + /** + !#en Whether or not the system is full. + !#zh 发射器中粒子是否大于等于设置的总粒子数量。 + */ + isFull(): boolean; + /** + !#en Sets a new texture with a rect. The rect is in texture position and size. + Please use spriteFrame property instead, this function is deprecated since v1.9 + !#zh 设置一张新贴图和关联的矩形。 + 请直接设置 spriteFrame 属性,这个函数从 v1.9 版本开始已经被废弃 + @param texture texture + @param rect rect + */ + setTextureWithRect(texture: Texture2D, rect: Rect): void; + /** !#en specify the source Blend Factor, this will generate a custom material object, please pay attention to the memory cost. + !#zh 指定原图的混合模式,这会克隆一个新的材质对象,注意这带来的开销 */ + srcBlendFactor: macro.BlendFactor; + /** !#en specify the destination Blend Factor. + !#zh 指定目标的混合模式 */ + dstBlendFactor: macro.BlendFactor; + } + /** !#en cc.WebView is a component for display web pages in the game. Because different platforms have different authorization, API and control methods for WebView component. And have not yet formed a unified standard, only Web, iOS, and Android platforms are currently supported. + !#zh WebView 组件,用于在游戏中显示网页。由于不同平台对于 WebView 组件的授权、API、控制方式都不同,还没有形成统一的标准,所以目前只支持 Web、iOS 和 Android 平台。 */ + export class WebView extends Component { + /** !#en A given URL to be loaded by the WebView, it should have a http or https prefix. + !#zh 指定 WebView 加载的网址,它应该是一个 http 或者 https 开头的字符串 */ + url: string; + /** !#en The webview's event callback , it will be triggered when certain webview event occurs. + !#zh WebView 的回调事件,当网页加载过程中,加载完成后或者加载出错时都会回调此函数 */ + webviewLoadedEvents: Component.EventHandler[]; + /** + !#en + Set javascript interface scheme (see also setOnJSCallback).
+ Note: Supports only on the Android and iOS. For HTML5, please refer to the official documentation.
+ Please refer to the official documentation for more details. + !#zh + 设置 JavaScript 接口方案(与 'setOnJSCallback' 配套使用)。
+ 注意:只支持 Android 和 iOS ,Web 端用法请前往官方文档查看。
+ 详情请参阅官方文档 + @param scheme scheme + */ + setJavascriptInterfaceScheme(scheme: string): void; + /** + !#en + This callback called when load URL that start with javascript + interface scheme (see also setJavascriptInterfaceScheme).
+ Note: Supports only on the Android and iOS. For HTML5, please refer to the official documentation.
+ Please refer to the official documentation for more details. + !#zh + 当加载 URL 以 JavaScript 接口方案开始时调用这个回调函数。
+ 注意:只支持 Android 和 iOS,Web 端用法请前往官方文档查看。 + 详情请参阅官方文档 + @param callback callback + */ + setOnJSCallback(callback: Function): void; + /** + !#en + Evaluates JavaScript in the context of the currently displayed page.
+ Please refer to the official document for more details
+ Note: Cross domain issues need to be resolved by yourself
+ !#zh + 执行 WebView 内部页面脚本(详情请参阅官方文档)
+ 注意:需要自行解决跨域问题 + @param str str + */ + evaluateJS(str: string): void; + /** + !#en if you don't need the WebView and it isn't in any running Scene, you should + call the destroy method on this component or the associated node explicitly. + Otherwise, the created DOM element won't be removed from web page. + !#zh + 如果你不再使用 WebView,并且组件未添加到场景中,那么你必须手动对组件或所在节点调用 destroy。 + 这样才能移除网页上的 DOM 节点,避免 Web 平台内存泄露。 + + @example + ```js + webview.node.parent = null; // or webview.node.removeFromParent(false); + // when you don't need webview anymore + webview.node.destroy(); + ``` + */ + destroy(): boolean; + } + /** cc.TMXLayerInfo contains the information about the layers like: + - Layer name + - Layer size + - Layer opacity at creation time (it can be modified at runtime) + - Whether the layer is visible (if it's not visible, then the CocosNode won't be created) + This information is obtained from the TMX file. */ + export class TMXLayerInfo { + /** Properties of the layer info. */ + properties: any; + } + /** cc.TMXImageLayerInfo contains the information about the image layers. + This information is obtained from the TMX file. */ + export class TMXImageLayerInfo { + } + /**

cc.TMXObjectGroupInfo contains the information about the object group like: + - group name + - group size + - group opacity at creation time (it can be modified at runtime) + - Whether the group is visible + + This information is obtained from the TMX file.

*/ + export class TMXObjectGroupInfo { + /** Properties of the ObjectGroup info. */ + properties: any[]; + } + /**

cc.TMXTilesetInfo contains the information about the tilesets like:
+ - Tileset name
+ - Tileset spacing
+ - Tileset margin
+ - size of the tiles
+ - Image used for the tiles
+ - Image size
+ + This information is obtained from the TMX file.

*/ + export class TMXTilesetInfo { + /** Tileset name */ + name: string; + /** First grid */ + firstGid: number; + /** Spacing */ + spacing: number; + /** Margin */ + margin: number; + /** Texture containing the tiles (should be sprite sheet / texture atlas) */ + sourceImage: any; + /** Size in pixels of the image */ + imageSize: Size; + } + /**

cc.TMXMapInfo contains the information about the map like:
+ - Map orientation (hexagonal, isometric or orthogonal)
+ - Tile size
+ - Map size

+ +

And it also contains:
+ - Layers (an array of TMXLayerInfo objects)
+ - Tilesets (an array of TMXTilesetInfo objects)
+ - ObjectGroups (an array of TMXObjectGroupInfo objects)

+ +

This information is obtained from the TMX file.

*/ + export class TMXMapInfo { + /** Properties of the map info. */ + properties: any[]; + /** Map orientation. */ + orientation: number; + /** Parent element. */ + parentElement: any; + /** Parent GID. */ + parentGID: number; + /** Layer attributes. */ + layerAttrs: any; + /** Is reading storing characters stream. */ + storingCharacters: boolean; + /** Current string stored from characters stream. */ + currentString: string; + /** Width of the map */ + mapWidth: number; + /** Height of the map */ + mapHeight: number; + /** Width of a tile */ + tileWidth: number; + /** Height of a tile */ + tileHeight: number; + static ATTRIB_NONE: number; + static ATTRIB_BASE64: number; + static ATTRIB_GZIP: number; + static ATTRIB_ZLIB: number; + } + /** !#en Render the TMX layer. + !#zh 渲染 TMX layer。 */ + export class TiledLayer extends Component { + /** + !#en enable or disable culling + !#zh 开启或关闭裁剪。 + @param value value + */ + enableCulling(value: any): void; + /** + !#en Adds user's node into layer. + !#zh 添加用户节点。 + @param node node + */ + addUserNode(node: Node): boolean; + /** + !#en Removes user's node. + !#zh 移除用户节点。 + @param node node + */ + removeUserNode(node: Node): boolean; + /** + !#en Destroy user's node. + !#zh 销毁用户节点。 + @param node node + */ + destroyUserNode(node: Node): void; + /** + !#en Gets the layer name. + !#zh 获取层的名称。 + + @example + ```js + let layerName = tiledLayer.getLayerName(); + cc.log(layerName); + ``` + */ + getLayerName(): string; + /** + !#en Set the layer name. + !#zh 设置层的名称 + @param layerName layerName + + @example + ```js + tiledLayer.setLayerName("New Layer"); + ``` + */ + SetLayerName(layerName: string): void; + /** + !#en Return the value for the specific property name. + !#zh 获取指定属性名的值。 + @param propertyName propertyName + + @example + ```js + let property = tiledLayer.getProperty("info"); + cc.log(property); + ``` + */ + getProperty(propertyName: string): any; + /** + !#en Returns the position in pixels of a given tile coordinate. + !#zh 获取指定 tile 的像素坐标。 + @param pos position or x + @param y y + + @example + ```js + let pos = tiledLayer.getPositionAt(cc.v2(0, 0)); + cc.log("Pos: " + pos); + let pos = tiledLayer.getPositionAt(0, 0); + cc.log("Pos: " + pos); + ``` + */ + getPositionAt(pos: Vec2|number, y?: number): Vec2; + /** + !#en + Sets the tiles gid (gid = tile global id) at a given tiles rect. + !#zh + 设置给定区域的 tile 的 gid (gid = tile 全局 id), + @param gids an array contains gid + @param beginCol begin col number + @param beginRow begin row number + @param totalCols count of column + + @example + ```js + tiledLayer.setTilesGIDAt([1, 1, 1, 1], 10, 10, 2) + ``` + */ + setTilesGIDAt(gids: any[], beginCol: number, beginRow: number, totalCols: number): void; + /** + !#en + Sets the tile gid (gid = tile global id) at a given tile coordinate.
+ The Tile GID can be obtained by using the method "tileGIDAt" or by using the TMX editor . Tileset Mgr +1.
+ If a tile is already placed at that position, then it will be removed. + !#zh + 设置给定坐标的 tile 的 gid (gid = tile 全局 id), + tile 的 GID 可以使用方法 “tileGIDAt” 来获得。
+ 如果一个 tile 已经放在那个位置,那么它将被删除。 + @param gid gid + @param posOrX position or x + @param flagsOrY flags or y + @param flags flags + + @example + ```js + tiledLayer.setTileGIDAt(1001, 10, 10, 1) + ``` + */ + setTileGIDAt(gid: number, posOrX: Vec2|number, flagsOrY: number, flags?: number): void; + /** + !#en + Returns the tiles data.An array fill with GIDs.
+ !#zh + 返回 tiles 数据. 由GID构成的一个数组.
+ */ + getTiles(): number[]; + /** + !#en + Returns the tile gid at a given tile coordinate.
+ if it returns 0, it means that the tile is empty.
+ !#zh + 通过给定的 tile 坐标、flags(可选)返回 tile 的 GID.
+ 如果它返回 0,则表示该 tile 为空。
+ @param pos or x + @param y y + + @example + ```js + let tileGid = tiledLayer.getTileGIDAt(0, 0); + ``` + */ + getTileGIDAt(pos: Vec2|number, y?: number): number; + /** + !#en Layer orientation, which is the same as the map orientation. + !#zh 获取 Layer 方向(同地图方向)。 + + @example + ```js + let orientation = tiledLayer.getLayerOrientation(); + cc.log("Layer Orientation: " + orientation); + ``` + */ + getLayerOrientation(): number; + /** + !#en properties from the layer. They can be added using Tiled. + !#zh 获取 layer 的属性,可以使用 Tiled 编辑器添加属性。 + + @example + ```js + let properties = tiledLayer.getProperties(); + cc.log("Properties: " + properties); + ``` + */ + getProperties(): any; + /** + !#en + Get the TiledTile with the tile coordinate.
+ If there is no tile in the specified coordinate and forceCreate parameter is true,
+ then will create a new TiledTile at the coordinate. + The renderer will render the tile with the rotation, scale, position and color property of the TiledTile. + !#zh + 通过指定的 tile 坐标获取对应的 TiledTile。
+ 如果指定的坐标没有 tile,并且设置了 forceCreate 那么将会在指定的坐标创建一个新的 TiledTile 。
+ 在渲染这个 tile 的时候,将会使用 TiledTile 的节点的旋转、缩放、位移、颜色属性。
+ @param x x + @param y y + @param forceCreate forceCreate + + @example + ```js + let tile = tiledLayer.getTiledTileAt(100, 100, true); + cc.log(tile); + ``` + */ + getTiledTileAt(x: number, y: number, forceCreate: boolean): TiledTile; + /** + !#en + Change tile to TiledTile at the specified coordinate. + !#zh + 将指定的 tile 坐标替换为指定的 TiledTile。 + @param x x + @param y y + @param tiledTile tiledTile + */ + setTiledTileAt(x: number, y: number, tiledTile: TiledTile): TiledTile; + /** + !#en Return texture. + !#zh 获取纹理。 + @param index The index of textures + */ + getTexture(index: any): Texture2D; + /** + !#en Return texture. + !#zh 获取纹理。 + */ + getTextures(): Texture2D; + /** + !#en Set the texture. + !#zh 设置纹理。 + @param texture texture + */ + setTexture(texture: Texture2D): void; + /** + !#en Set the texture. + !#zh 设置纹理。 + @param textures textures + */ + setTexture(textures: Texture2D): void; + /** + !#en Gets layer size. + !#zh 获得层大小。 + + @example + ```js + let size = tiledLayer.getLayerSize(); + cc.log("layer size: " + size); + ``` + */ + getLayerSize(): Size; + /** + !#en Size of the map's tile (could be different from the tile's size). + !#zh 获取 tile 的大小( tile 的大小可能会有所不同)。 + + @example + ```js + let mapTileSize = tiledLayer.getMapTileSize(); + cc.log("MapTile size: " + mapTileSize); + ``` + */ + getMapTileSize(): Size; + /** + !#en Gets Tile set first information for the layer. + !#zh 获取 layer 索引位置为0的 Tileset 信息。 + @param index The index of tilesets + */ + getTileSet(index: any): TMXTilesetInfo; + /** + !#en Gets tile set all information for the layer. + !#zh 获取 layer 所有的 Tileset 信息。 + */ + getTileSet(): TMXTilesetInfo; + /** + !#en Sets tile set information for the layer. + !#zh 设置 layer 的 tileset 信息。 + @param tileset tileset + */ + setTileSet(tileset: TMXTilesetInfo): void; + /** + !#en Sets Tile set information for the layer. + !#zh 设置 layer 的 Tileset 信息。 + @param tilesets tilesets + */ + setTileSets(tilesets: TMXTilesetInfo): void; + } + /** !#en Renders a TMX Tile Map in the scene. + !#zh 在场景中渲染一个 tmx 格式的 Tile Map。 */ + export class TiledMap extends Component { + /** !#en The TiledMap Asset. + !#zh TiledMap 资源。 */ + tmxAsset: TiledMapAsset; + /** + !#en Gets the map size. + !#zh 获取地图大小。 + + @example + ```js + let mapSize = tiledMap.getMapSize(); + cc.log("Map Size: " + mapSize); + ``` + */ + getMapSize(): Size; + /** + !#en Gets the tile size. + !#zh 获取地图背景中 tile 元素的大小。 + + @example + ```js + let tileSize = tiledMap.getTileSize(); + cc.log("Tile Size: " + tileSize); + ``` + */ + getTileSize(): Size; + /** + !#en map orientation. + !#zh 获取地图方向。 + + @example + ```js + let mapOrientation = tiledMap.getMapOrientation(); + cc.log("Map Orientation: " + mapOrientation); + ``` + */ + getMapOrientation(): number; + /** + !#en object groups. + !#zh 获取所有的对象层。 + + @example + ```js + let objGroups = titledMap.getObjectGroups(); + for (let i = 0; i < objGroups.length; ++i) { + cc.log("obj: " + objGroups[i]); + } + ``` + */ + getObjectGroups(): TiledObjectGroup[]; + /** + !#en Return the TMXObjectGroup for the specific group. + !#zh 获取指定的 TMXObjectGroup。 + @param groupName groupName + + @example + ```js + let group = titledMap.getObjectGroup("Players"); + cc.log("ObjectGroup: " + group); + ``` + */ + getObjectGroup(groupName: string): TiledObjectGroup; + /** + !#en enable or disable culling + !#zh 开启或关闭裁剪。 + @param value value + */ + enableCulling(value: any): void; + /** + !#en Gets the map properties. + !#zh 获取地图的属性。 + + @example + ```js + let properties = titledMap.getProperties(); + for (let i = 0; i < properties.length; ++i) { + cc.log("Properties: " + properties[i]); + } + ``` + */ + getProperties(): any[]; + /** + !#en Return All layers array. + !#zh 返回包含所有 layer 的数组。 + + @example + ```js + let layers = titledMap.getLayers(); + for (let i = 0; i < layers.length; ++i) { + cc.log("Layers: " + layers[i]); + } + ``` + */ + getLayers(): TiledLayer[]; + /** + !#en return the cc.TiledLayer for the specific layer. + !#zh 获取指定名称的 layer。 + @param layerName layerName + + @example + ```js + let layer = titledMap.getLayer("Player"); + cc.log(layer); + ``` + */ + getLayer(layerName: string): TiledLayer; + /** + !#en Return the value for the specific property name. + !#zh 通过属性名称,获取指定的属性。 + @param propertyName propertyName + + @example + ```js + let property = titledMap.getProperty("info"); + cc.log("Property: " + property); + ``` + */ + getProperty(propertyName: string): string; + /** + !#en Return properties dictionary for tile GID. + !#zh 通过 GID ,获取指定的属性。 + @param GID GID + + @example + ```js + let properties = titledMap.getPropertiesForGID(GID); + cc.log("Properties: " + properties); + ``` + */ + getPropertiesForGID(GID: number): any; + } + /** Class for tiled map asset handling. */ + export class TiledMapAsset extends Asset { + textures: Texture2D[]; + textureNames: string[]; + textureSizes: Size[]; + imageLayerTextures: Texture2D[]; + imageLayerTextureNames: string[]; + } + /** !#en Renders the TMX object group. + !#zh 渲染 tmx object group。 */ + export class TiledObjectGroup extends Component { + /** + !#en Offset position of child objects. + !#zh 获取子对象的偏移位置。 + + @example + ```js + let offset = tMXObjectGroup.getPositionOffset(); + ``` + */ + getPositionOffset(): Vec2; + /** + !#en List of properties stored in a dictionary. + !#zh 以映射的形式获取属性列表。 + + @example + ```js + let offset = tMXObjectGroup.getProperties(); + ``` + */ + getProperties(): any; + /** + !#en Gets the Group name. + !#zh 获取组名称。 + + @example + ```js + let groupName = tMXObjectGroup.getGroupName; + ``` + */ + getGroupName(): string; + /** + !#en + Return the object for the specific object name.
+ It will return the 1st object found on the array for the given name. + !#zh 获取指定的对象。 + @param objectName objectName + + @example + ```js + let object = tMXObjectGroup.getObject("Group"); + ``` + */ + getObject(objectName: string): any; + /** + !#en Gets the objects. + !#zh 获取对象数组。 + + @example + ```js + let objects = tMXObjectGroup.getObjects(); + ``` + */ + getObjects(): any[]; + } + /** !#en TiledTile can control the specified map tile. + It will apply the node rotation, scale, translate to the map tile. + You can change the TiledTile's gid to change the map tile's style. + !#zh TiledTile 可以单独对某一个地图块进行操作。 + 他会将节点的旋转,缩放,平移操作应用在这个地图块上,并可以通过更换当前地图块的 gid 来更换地图块的显示样式。 */ + export class TiledTile extends Component { + /** !#en Specify the TiledTile horizontal coordinate,use map tile as the unit. + !#zh 指定 TiledTile 的横向坐标,以地图块为单位 */ + x: number; + /** !#en Specify the TiledTile vertical coordinate,use map tile as the unit. + !#zh 指定 TiledTile 的纵向坐标,以地图块为单位 */ + y: number; + /** !#en Specify the TiledTile gid. + !#zh 指定 TiledTile 的 gid 值 */ + gid: number; + } + /** !#en cc.VideoPlayer is a component for playing videos, you can use it for showing videos in your game. Because different platforms have different authorization, API and control methods for VideoPlayer component. And have not yet formed a unified standard, only Web, iOS, and Android platforms are currently supported. + !#zh Video 组件,用于在游戏中播放视频。由于不同平台对于 VideoPlayer 组件的授权、API、控制方式都不同,还没有形成统一的标准,所以目前只支持 Web、iOS 和 Android 平台。 */ + export class VideoPlayer extends Component { + /** !#en The resource type of videoplayer, REMOTE for remote url and LOCAL for local file path. + !#zh 视频来源:REMOTE 表示远程视频 URL,LOCAL 表示本地视频地址。 */ + resourceType: VideoPlayer.ResourceType; + /** !#en The remote URL of video. + !#zh 远程视频的 URL */ + remoteURL: string; + /** !#en The local video full path. + !#zh 本地视频的 URL */ + clip: string; + /** !#en The current playback time of the now playing item in seconds, you could also change the start playback time. + !#zh 指定视频从什么时间点开始播放,单位是秒,也可以用来获取当前视频播放的时间进度。 */ + currentTime: number; + /** !#en The volume of the video. + !#zh 视频的音量(0.0 ~ 1.0) */ + volume: number; + /** !#en Mutes the VideoPlayer. Mute sets the volume=0, Un-Mute restore the original volume. + !#zh 是否静音视频。静音时设置音量为 0,取消静音是恢复原来的音量。 */ + mute: boolean; + /** !#en Whether keep the aspect ration of the original video. + !#zh 是否保持视频原来的宽高比 */ + keepAspectRatio: boolean; + /** !#en Whether play video in fullscreen mode. + !#zh 是否全屏播放视频 */ + isFullscreen: boolean; + /** !#en Always below the game view (only useful on Web. Note: The specific effects are not guaranteed to be consistent, depending on whether each browser supports or restricts). + !#zh 永远在游戏视图最底层(这个属性只有在 Web 平台上有效果。注意:具体效果无法保证一致,跟各个浏览器是否支持与限制有关) */ + stayOnBottom: boolean; + /** !#en the video player's callback, it will be triggered when certain event occurs, like: playing, paused, stopped and completed. + !#zh 视频播放回调函数,该回调函数会在特定情况被触发,比如播放中,暂时,停止和完成播放。 */ + videoPlayerEvent: Component.EventHandler[]; + /** + !#en If a video is paused, call this method could resume playing. If a video is stopped, call this method to play from scratch. + !#zh 如果视频被暂停播放了,调用这个接口可以继续播放。如果视频被停止播放了,调用这个接口可以从头开始播放。 + */ + play(): void; + /** + !#en If a video is paused, call this method to resume playing. + !#zh 如果一个视频播放被暂停播放了,调用这个接口可以继续播放。 + */ + resume(): void; + /** + !#en If a video is playing, call this method to pause playing. + !#zh 如果一个视频正在播放,调用这个接口可以暂停播放。 + */ + pause(): void; + /** + !#en If a video is playing, call this method to stop playing immediately. + !#zh 如果一个视频正在播放,调用这个接口可以立马停止播放。 + */ + stop(): void; + /** + !#en Gets the duration of the video + !#zh 获取视频文件的播放总时长 + */ + getDuration(): number; + /** + !#en Determine whether video is playing or not. + !#zh 判断当前视频是否处于播放状态 + */ + isPlaying(): boolean; + /** + !#en if you don't need the VideoPlayer and it isn't in any running Scene, you should + call the destroy method on this component or the associated node explicitly. + Otherwise, the created DOM element won't be removed from web page. + !#zh + 如果你不再使用 VideoPlayer,并且组件未添加到场景中,那么你必须手动对组件或所在节点调用 destroy。 + 这样才能移除网页上的 DOM 节点,避免 Web 平台内存泄露。 + + @example + ```js + videoplayer.node.parent = null; // or videoplayer.node.removeFromParent(false); + // when you don't need videoplayer anymore + videoplayer.node.destroy(); + ``` + */ + destroy(): boolean; + } + /** !#en + cc.NodePool is the cache pool designed for node type.
+ It can helps you to improve your game performance for objects which need frequent release and recreate operations
+ + It's recommended to create cc.NodePool instances by node type, the type corresponds to node type in game design, not the class, + for example, a prefab is a specific node type.
+ When you create a node pool, you can pass a Component which contains `unuse`, `reuse` functions to control the content of node.
+ + Some common use case is :
+ 1. Bullets in game (die very soon, massive creation and recreation, no side effect on other objects)
+ 2. Blocks in candy crash (massive creation and recreation)
+ etc... + !#zh + cc.NodePool 是用于管理节点对象的对象缓存池。
+ 它可以帮助您提高游戏性能,适用于优化对象的反复创建和销毁
+ 以前 cocos2d-x 中的 cc.pool 和新的节点事件注册系统不兼容,因此请使用 cc.NodePool 来代替。 + + 新的 NodePool 需要实例化之后才能使用,每种不同的节点对象池需要一个不同的对象池实例,这里的种类对应于游戏中的节点设计,一个 prefab 相当于一个种类的节点。
+ 在创建缓冲池时,可以传入一个包含 unuse, reuse 函数的组件类型用于节点的回收和复用逻辑。
+ + 一些常见的用例是:
+ 1.在游戏中的子弹(死亡很快,频繁创建,对其他对象无副作用)
+ 2.糖果粉碎传奇中的木块(频繁创建)。 + 等等.... */ + export class NodePool { + /** + !#en + Constructor for creating a pool for a specific node template (usually a prefab). You can pass a component (type or name) argument for handling event for reusing and recycling node. + !#zh + 使用构造函数来创建一个节点专用的对象池,您可以传递一个组件类型或名称,用于处理节点回收和复用时的事件逻辑。 + @param poolHandlerComp !#en The constructor or the class name of the component to control the unuse/reuse logic. !#zh 处理节点回收和复用事件逻辑的组件类型或名称。 + + @example + ```js + properties: { + template: cc.Prefab + }, + onLoad () { + // MyTemplateHandler is a component with 'unuse' and 'reuse' to handle events when node is reused or recycled. + this.myPool = new cc.NodePool('MyTemplateHandler'); + } + ``` + */ + constructor(poolHandlerComp?: {prototype: Component}|string); + /** !#en The pool handler component, it could be the class name or the constructor. + !#zh 缓冲池处理组件,用于节点的回收和复用逻辑,这个属性可以是组件类名或组件的构造函数。 */ + poolHandlerComp: Function|string; + /** + !#en The current available size in the pool + !#zh 获取当前缓冲池的可用对象数量 + */ + size(): number; + /** + !#en Destroy all cached nodes in the pool + !#zh 销毁对象池中缓存的所有节点 + */ + clear(): void; + /** + !#en Put a new Node into the pool. + It will automatically remove the node from its parent without cleanup. + It will also invoke unuse method of the poolHandlerComp if exist. + !#zh 向缓冲池中存入一个不再需要的节点对象。 + 这个函数会自动将目标节点从父节点上移除,但是不会进行 cleanup 操作。 + 这个函数会调用 poolHandlerComp 的 unuse 函数,如果组件和函数都存在的话。 + @param obj obj + + @example + ```js + let myNode = cc.instantiate(this.template); + this.myPool.put(myNode); + ``` + */ + put(obj: Node): void; + /** + !#en Get a obj from pool, if no available object in pool, null will be returned. + This function will invoke the reuse function of poolHandlerComp if exist. + !#zh 获取对象池中的对象,如果对象池没有可用对象,则返回空。 + 这个函数会调用 poolHandlerComp 的 reuse 函数,如果组件和函数都存在的话。 + @param params !#en Params to pass to 'reuse' method in poolHandlerComp !#zh 向 poolHandlerComp 中的 'reuse' 函数传递的参数 + + @example + ```js + let newNode = this.myPool.get(); + ``` + */ + get(...params: any[]): Node; + } + /** !#en Box Collider. + !#zh 包围盒碰撞组件 */ + export class BoxCollider extends Collider implements Collider.Box { + /** !#en + Collider info in world coordinate. + !#zh + 碰撞体的世界坐标系下的信息。 */ + world: ColliderInfo; + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Box size + !#zh 包围盒大小 */ + size: Size; + } + /** !#en Collider component base class. + !#zh 碰撞组件基类 */ + export class Collider extends Component { + /** !#en Tag. If a node has several collider components, you can judge which type of collider is collided according to the tag. + !#zh 标签。当一个节点上有多个碰撞组件时,在发生碰撞后,可以使用此标签来判断是节点上的哪个碰撞组件被碰撞了。 */ + tag: number; + } + /** !#en Circle Collider. + !#zh 圆形碰撞组件 */ + export class CircleCollider extends Collider implements Collider.Circle { + /** !#en + Collider info in world coordinate. + !#zh + 碰撞体的世界坐标系下的信息。 */ + world: ColliderInfo; + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Circle radius + !#zh 圆形半径 */ + radius: number; + } + /** !#en + Collider Info. + !#zh + 碰撞体信息。 */ + export class ColliderInfo { + /** !#en + Collider aabb information of last frame + !#zh + 碰撞体上一帧的 aabb 信息 */ + preAabb: Rect; + /** !#en + Collider aabb information of current frame + !#zh + 碰撞体当前帧的 aabb 信息 */ + aabb: Rect; + /** !#en + Collider matrix + !#zh + 碰撞体的矩阵信息 */ + matrix: Mat4; + /** !#en + Collider radius (for CircleCollider) + !#zh + 碰撞体的半径(只对 CircleCollider 有效) */ + radius: number; + /** !#en + Collider position (for CircleCollider) + !#zh + 碰撞体的位置(只对 CircleCollider 有效) */ + position: Vec2; + /** !#en + Collider points (for BoxCollider and PolygonCollider) + !#zh + 碰撞体的顶点信息(只对 BoxCollider 和 PolygonCollider 有效) */ + points: Vec2[]; + } + /** !#en + A simple collision manager class. + It will calculate whether the collider collides other colliders, if collides then call the callbacks. + !#zh + 一个简单的碰撞组件管理类,用于处理节点之间的碰撞组件是否产生了碰撞,并调用相应回调函数。 */ + export class CollisionManager implements EventTarget { + /** !#en + !#zh + 是否开启碰撞管理,默认为不开启 */ + enabled: boolean; + /** !#en + !#zh + 是否绘制碰撞组件的包围盒,默认为不绘制 */ + enabledDrawBoundingBox: boolean; + /** !#en + !#zh + 是否绘制碰撞组件的形状,默认为不绘制 */ + enabledDebugDraw: boolean; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** !#en Intersection helper class + !#zh 辅助类,用于测试形状与形状是否相交 */ + export class Intersection { + /** + !#en Test line and line + !#zh 测试线段与线段是否相交 + @param a1 The start point of the first line + @param a2 The end point of the first line + @param b1 The start point of the second line + @param b2 The end point of the second line + */ + static lineLine(a1: Vec2, a2: Vec2, b1: Vec2, b2: Vec2): boolean; + /** + !#en Test line and rect + !#zh 测试线段与矩形是否相交 + @param a1 The start point of the line + @param a2 The end point of the line + @param b The rect + */ + static lineRect(a1: Vec2, a2: Vec2, b: Rect): boolean; + /** + !#en Test line and polygon + !#zh 测试线段与多边形是否相交 + @param a1 The start point of the line + @param a2 The end point of the line + @param b The polygon, a set of points + */ + static linePolygon(a1: Vec2, a2: Vec2, b: Vec2[]): boolean; + /** + !#en Test rect and rect + !#zh 测试矩形与矩形是否相交 + @param a The first rect + @param b The second rect + */ + static rectRect(a: Rect, b: Rect): boolean; + /** + !#en Test rect and polygon + !#zh 测试矩形与多边形是否相交 + @param a The rect + @param b The polygon, a set of points + */ + static rectPolygon(a: Rect, b: Vec2[]): boolean; + /** + !#en Test polygon and polygon + !#zh 测试多边形与多边形是否相交 + @param a The first polygon, a set of points + @param b The second polygon, a set of points + */ + static polygonPolygon(a: Vec2[], b: Vec2[]): boolean; + /** + !#en Test circle and circle + !#zh 测试圆形与圆形是否相交 + @param a Object contains position and radius + @param b Object contains position and radius + */ + static circleCircle(a: {position: Vec2, radius: number}, b: {position: Vec2, radius: number}): boolean; + /** + !#en Test polygon and circle + !#zh 测试矩形与圆形是否相交 + @param polygon The Polygon, a set of points + @param circle Object contains position and radius + */ + static polygonCircle(polygon: Vec2[], circle: {position: Vec2, radius: number}): boolean; + /** + !#en Test whether the point is in the polygon + !#zh 测试一个点是否在一个多边形中 + @param point The point + @param polygon The polygon, a set of points + */ + static pointInPolygon(point: Vec2, polygon: Vec2[]): boolean; + /** + !#en Calculate the distance of point to line. + !#zh 计算点到直线的距离。如果这是一条线段并且垂足不在线段内,则会计算点到线段端点的距离。 + @param point The point + @param start The start point of line + @param end The end point of line + @param isSegment whether this line is a segment + */ + static pointLineDistance(point: Vec2, start: Vec2, end: Vec2, isSegment: boolean): number; + } + /** !#en Polygon Collider. + !#zh 多边形碰撞组件 */ + export class PolygonCollider extends Collider implements Collider.Polygon { + /** !#en + Collider info in world coordinate. + !#zh + 碰撞体的世界坐标系下的信息。 */ + world: ColliderInfo; + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Polygon points + !#zh 多边形顶点数组 */ + points: Vec2[]; + } + /** !#en The Light Component + + !#zh 光源组件 */ + export class Light extends Component { + } + /** !#en + This module controls asset's behaviors and information, include loading, releasing etc. it is a singleton + All member can be accessed with `cc.assetManager`. + + !#zh + 此模块管理资源的行为和信息,包括加载,释放等,这是一个单例,所有成员能够通过 `cc.assetManager` 调用 */ + export class AssetManager { + /** !#en + Normal loading pipeline + + !#zh + 正常加载管线 */ + pipeline: cc.AssetManager.Pipeline; + /** !#en + Fetching pipeline + + !#zh + 下载管线 */ + fetchPipeline: cc.AssetManager.Pipeline; + /** !#en + Url transformer + + !#zh + Url 转换器 */ + transformPipeline: cc.AssetManager.Pipeline; + /** !#en + The collection of bundle which is already loaded, you can remove cache with {{#crossLink "AssetManager/removeBundle:method"}}{{/crossLink}} + + !#zh + 已加载 bundle 的集合, 你能通过 {{#crossLink "AssetManager/removeBundle:method"}}{{/crossLink}} 来移除缓存 */ + bundles: AssetManager.Cache; + /** !#en + The collection of asset which is already loaded, you can remove cache with {{#crossLink "AssetManager/releaseAsset:method"}}{{/crossLink}} + + !#zh + 已加载资源的集合, 你能通过 {{#crossLink "AssetManager/releaseAsset:method"}}{{/crossLink}} 来移除缓存 */ + assets: AssetManager.Cache; + /** !#en + Manage relationship between asset and its dependencies + + !#zh + 管理资源依赖关系 */ + dependUtil: cc.AssetManager.DependUtil; + /** !#en + Whether or not cache the loaded asset + + !#zh + 是否缓存已加载的资源 */ + cacheAsset: boolean; + /** !#en + Whether or not load asset forcely, if it is true, asset will be loaded regardless of error + + !#zh + 是否强制加载资源, 如果为 true ,加载资源将会忽略报错 */ + force: boolean; + /** !#en + Some useful function + + !#zh + 一些有用的方法 */ + utils: cc.AssetManager.Helper; + /** !#en + Manage all downloading task + + !#zh + 管理所有下载任务 */ + downloader: cc.AssetManager.Downloader; + /** !#en + Manage all parsing task + + !#zh + 管理所有解析任务 */ + parser: cc.AssetManager.Parser; + /** !#en + Manage internal asset + + !#zh + 管理内置资源 */ + builtins: cc.AssetManager.Builtins; + /** !#en + Manage all packed asset + + !#zh + 管理所有合并后的资源 */ + packManager: cc.AssetManager.PackManager; + /** !#en + Cache manager is a module which controls all caches downloaded from server in non-web platform. + + !#zh + 缓存管理器是一个模块,在非 WEB 平台上,用于管理所有从服务器上下载下来的缓存 */ + cacheManager: cc.AssetManager.CacheManager|null; + /** !#en + The preset of options + + !#zh + 可选参数的预设集 */ + presets: Record>; + /** !#en + The builtin 'main' bundle + + !#zh + 内置 main 包 */ + main: cc.AssetManager.Bundle; + /** !#en + The builtin 'resources' bundle + + !#zh + 内置 resources 包 */ + resources: cc.AssetManager.Bundle; + /** !#en + The builtin 'internal' bundle + + !#zh + 内置 internal 包 */ + internal: cc.AssetManager.Bundle; + /** + !#en + Initialize assetManager with options + + !#zh + 初始化资源管理器 + @param options options + */ + init(options: Record): void; + /** + !#en + Get the bundle which has been loaded + + !#zh + 获取已加载的分包 + @param name The name of bundle + + @example + ```js + // ${project}/assets/test1 + cc.assetManager.getBundle('test1'); + + cc.assetManager.getBundle('resources'); + ``` + */ + getBundle (name: string): cc.AssetManager.Bundle; + /** + !#en + Remove this bundle. NOTE: The asset whthin this bundle will not be released automatically, you can call {{#crossLink "Bundle/releaseAll:method"}}{{/crossLink}} manually before remove it if you need + + !#zh + 移除此包, 注意:这个包内的资源不会自动释放, 如果需要的话你可以在摧毁之前手动调用 {{#crossLink "Bundle/releaseAll:method"}}{{/crossLink}} 进行释放 + @param bundle The bundle to be removed + */ + removeBundle(bundle: cc.AssetManager.Bundle): void; + /** + !#en + General interface used to load assets with a progression callback and a complete callback. You can achieve almost all effect you want with combination of `requests` and `options`. + It is highly recommended that you use more simple API, such as `load`, `loadDir` etc. Every custom parameter in `options` will be distribute to each of `requests`. + if request already has same one, the parameter in request will be given priority. Besides, if request has dependencies, `options` will distribute to dependencies too. + Every custom parameter in `requests` will be tranfered to handler of `downloader` and `parser` as `options`. + You can register you own handler downloader or parser to collect these custom parameters for some effect. + + Reserved Keyword: `uuid`, `url`, `path`, `dir`, `scene`, `type`, `priority`, `preset`, `audioLoadMode`, `ext`, `bundle`, `onFileProgress`, `maxConcurrency`, `maxRequestsPerFrame` + `maxRetryCount`, `version`, `responseType`, `withCredentials`, `mimeType`, `timeout`, `header`, `reload`, `cacheAsset`, `cacheEnabled`, + Please DO NOT use these words as custom options! + + !#zh + 通用加载资源接口,可传入进度回调以及完成回调,通过组合 `request` 和 `options` 参数,几乎可以实现和扩展所有想要的加载效果。非常建议你使用更简单的API,例如 `load`、`loadDir` 等。 + `options` 中的自定义参数将会分发到 `requests` 的每一项中,如果request中已存在同名的参数则以 `requests` 中为准,同时如果有其他 + 依赖资源,则 `options` 中的参数会继续向依赖项中分发。request中的自定义参数都会以 `options` 形式传入加载流程中的 `downloader`, `parser` 的方法中, 你可以 + 扩展 `downloader`, `parser` 收集参数完成想实现的效果。 + + 保留关键字: `uuid`, `url`, `path`, `dir`, `scene`, `type`, `priority`, `preset`, `audioLoadMode`, `ext`, `bundle`, `onFileProgress`, `maxConcurrency`, `maxRequestsPerFrame` + `maxRetryCount`, `version`, `responseType`, `withCredentials`, `mimeType`, `timeout`, `header`, `reload`, `cacheAsset`, `cacheEnabled`, + 请不要使用这些字段为自定义参数! + @param requests The request you want to load + @param options Optional parameters + @param onProgress Callback invoked when progression change + @param onComplete Callback invoked when finish loading + + @example + ```js + cc.assetManager.loadAny({url: 'http://example.com/a.png'}, (err, img) => cc.log(img)); + cc.assetManager.loadAny(['60sVXiTH1D/6Aft4MRt9VC'], (err, assets) => cc.log(assets)); + cc.assetManager.loadAny([{ uuid: '0cbZa5Y71CTZAccaIFluuZ'}, {url: 'http://example.com/a.png'}], (err, assets) => cc.log(assets)); + cc.assetManager.downloader.register('.asset', (url, options, onComplete) => { + url += '?userName=' + options.userName + "&password=" + options.password; + cc.assetManager.downloader.downloadFile(url, null, onComplete); + }); + cc.assetManager.parser.register('.asset', (file, options, onComplete) => { + var json = JSON.parse(file); + var skin = json[options.skin]; + var model = json[options.model]; + onComplete(null, {skin, model}); + }); + cc.assetManager.loadAny({ url: 'http://example.com/my.asset', skin: 'xxx', model: 'xxx', userName: 'xxx', password: 'xxx' }); + ``` + */ + loadAny(requests: string | string[] | Record | Record[], options: Record, onProgress: (finished: number, total: number, item: cc.AssetManager.RequestItem) => void, onComplete: (err: Error, data: any) => void): void; + loadAny(requests: string | string[] | Record | Record[], onProgress: (finished: number, total: number, item: cc.AssetManager.RequestItem) => void, onComplete: (err: Error, data: any) => void): void; + loadAny(requests: string | string[] | Record | Record[], options: Record, onComplete: (err: Error, data: any) => void): void; + loadAny(requests: string | string[] | Record | Record[], onComplete: (err: Error, data: any) => void): void; + loadAny(requests: string | string[] | Record | Record[], options: Record): void; + loadAny(requests: string | string[] | Record | Record[]): void; + /** + !#en + General interface used to preload assets with a progression callback and a complete callback.It is highly recommended that you use more simple API, such as `preloadRes`, `preloadResDir` etc. + Everything about preload is just likes `cc.assetManager.loadAny`, the difference is `cc.assetManager.preloadAny` will only download asset but not parse asset. You need to invoke `cc.assetManager.loadAny(preloadTask)` + to finish loading asset + + !#zh + 通用预加载资源接口,可传入进度回调以及完成回调,非常建议你使用更简单的 API ,例如 `preloadRes`, `preloadResDir` 等。`preloadAny` 和 `loadAny` 几乎一样,区别在于 `preloadAny` 只会下载资源,不会去解析资源,你需要调用 `cc.assetManager.loadAny(preloadTask)` + 来完成资源加载。 + @param requests The request you want to preload + @param options Optional parameters + @param onProgress Callback invoked when progression change + @param onComplete Callback invoked when finish preloading + + @example + ```js + cc.assetManager.preloadAny('0cbZa5Y71CTZAccaIFluuZ', (err) => cc.assetManager.loadAny('0cbZa5Y71CTZAccaIFluuZ')); + ``` + */ + preloadAny(requests: string | string[] | Record | Record[], options: Record, onProgress: (finished: number, total: number, item: cc.AssetManager.RequestItem) => void, onComplete: (err: Error, items: cc.AssetManager.RequestItem[]) => void): void; + preloadAny(requests: string | string[] | Record | Record[], onProgress: (finished: number, total: number, item: cc.AssetManager.RequestItem) => void, onComplete: (err: Error, items: cc.AssetManager.RequestItem[]) => void): void; + preloadAny(requests: string | string[] | Record | Record[], options: Record, onComplete: (err: Error, items: cc.AssetManager.RequestItem[]) => void): void; + preloadAny(requests: string | string[] | Record | Record[], onComplete: (err: Error, items: cc.AssetManager.RequestItem[]) => void): void; + preloadAny(requests: string | string[] | Record | Record[], options: Record): void; + preloadAny(requests: string | string[] | Record | Record[]): void; + /** + !#en + Load native file of asset, if you check the option 'Async Load Assets', you may need to load native file with this before you use the asset + + !#zh + 加载资源的原生文件,如果你勾选了'延迟加载资源'选项,你可能需要在使用资源之前调用此方法来加载原生文件 + @param asset The asset + @param options Some optional parameters + @param onComplete Callback invoked when finish loading + + @example + ```js + cc.assetManager.postLoadNative(texture, (err) => console.log(err)); + ``` + */ + postLoadNative(asset: cc.Asset, options: Record, onComplete: (err: Error) => void): void; + postLoadNative(asset: cc.Asset, onComplete: (err: Error) => void): void; + postLoadNative(asset: cc.Asset, options: Record): void; + postLoadNative(asset: cc.Asset): void; + /** + !#en + Load remote asset with url, such as audio, image, text and so on. + + !#zh + 使用 url 加载远程资源,例如音频,图片,文本等等。 + @param url The url of asset + @param options Some optional parameters + @param onComplete Callback invoked when finish loading + + @example + ```js + cc.assetManager.loadRemote('http://www.cloud.com/test1.jpg', (err, texture) => console.log(err)); + cc.assetManager.loadRemote('http://www.cloud.com/test2.mp3', (err, audioClip) => console.log(err)); + cc.assetManager.loadRemote('http://www.cloud.com/test3', { ext: '.png' }, (err, texture) => console.log(err)); + ``` + */ + loadRemote(url: string, options: Record, onComplete: (err: Error, asset: T) => void): void; + loadRemote(url: string, onComplete: (err: Error, asset: T) => void): void; + loadRemote(url: string, options: Record): void; + loadRemote(url: string): void; + /** + !#en + Load script + + !#zh + 加载脚本 + @param url Url of the script + @param options Some optional paramters + @param onComplete Callback when script loaded or failed + + @example + ```js + loadScript('http://localhost:8080/index.js', null, (err) => console.log(err)); + ``` + */ + loadScript(url: string|string[], options: Record, onComplete: (err: Error) => void): void; + loadScript(url: string|string[], onComplete: (err: Error) => void): void; + loadScript(url: string|string[], options: Record): void; + loadScript(url: string|string[]): void; + /** + !#en + load bundle + + !#zh + 加载资源包 + @param nameOrUrl The name or root path of bundle + @param options Some optional paramter, same like downloader.downloadFile + @param onComplete Callback when bundle loaded or failed + + @example + ```js + loadBundle('http://localhost:8080/test', null, (err, bundle) => console.log(err)); + ``` + */ + loadBundle(nameOrUrl: string, options: Record, onComplete: (err: Error, bundle: cc.AssetManager.Bundle) => void): void; + loadBundle(nameOrUrl: string, onComplete: (err: Error, bundle: cc.AssetManager.Bundle) => void): void; + loadBundle(nameOrUrl: string, options: Record): void; + loadBundle(nameOrUrl: string): void; + /** + !#en + Release asset and it's dependencies. + This method will not only remove the cache of the asset in assetManager, but also clean up its content. + For example, if you release a texture, the texture asset and its gl texture data will be freed up. + Notice, this method may cause the texture to be unusable, if there are still other nodes use the same texture, they may turn to black and report gl errors. + + !#zh + 释放资源以及其依赖资源, 这个方法不仅会从 assetManager 中删除资源的缓存引用,还会清理它的资源内容。 + 比如说,当你释放一个 texture 资源,这个 texture 和它的 gl 贴图数据都会被释放。 + 注意,这个函数可能会导致资源贴图或资源所依赖的贴图不可用,如果场景中存在节点仍然依赖同样的贴图,它们可能会变黑并报 GL 错误。 + @param asset The asset to be released + + @example + ```js + // release a texture which is no longer need + cc.assetManager.releaseAsset(texture); + ``` + */ + releaseAsset(asset: cc.Asset): void; + /** + !#en + Release all assets. Refer to {{#crossLink "AssetManager/releaseAsset:method"}}{{/crossLink}} for detailed informations. + + !#zh + 释放所有资源。详细信息请参考 {{#crossLink "AssetManager/releaseAsset:method"}}{{/crossLink}} + */ + releaseAll(): void; + } + /** `cc.loader` is deprecated, please backup your project and upgrade to {{#crossLink "AssetManager"}}{{/crossLink}} */ + export class loader { + /** `cc.loader.onProgress` is deprecated, please transfer onProgress to API as a parameter */ + static onProgress: any; + /** + `cc.loader.load` is deprecated, please use {{#crossLink "AssetManager/loadAny:method"}}{{/crossLink}} instead + @param resources Url list in an array + @param progressCallback Callback invoked when progression change + @param completeCallback Callback invoked when all resources loaded + */ + static load(resources: string|string[]|{uuid?: string, url?: string, type?: string}, completeCallback?: Function): void; + static load(resources: string|string[]|{uuid?: string, url?: string, type?: string}, progressCallback: (completedCount: number, totalCount: number, item: any) => void, completeCallback: Function|null): void; + /** + `cc.loader.getXMLHttpRequest` is deprecated, please use `XMLHttpRequest` directly + */ + static getXMLHttpRequest(): XMLHttpRequest; + /** + `cc.loader.getItem` is deprecated, please use `cc.assetManager.asset.get` instead + @param id The id of the item + */ + static getItem(id: any): any; + /** + `cc.loader.loadRes` is deprecated, please use {{#crossLink "Bundle/load:method"}}{{/crossLink}} instead + @param url Url of the target resource. + The url is relative to the "resources" folder, extensions must be omitted. + @param type Only asset of type will be loaded if this argument is supplied. + @param progressCallback Callback invoked when progression change. + @param completeCallback Callback invoked when the resource loaded. + */ + static loadRes(url: string, type: typeof cc.Asset, progressCallback: (completedCount: number, totalCount: number, item: any) => void, completeCallback: ((error: Error, resource: any) => void)|null): void; + static loadRes(url: string, type: typeof cc.Asset, completeCallback: (error: Error, resource: any) => void): void; + static loadRes(url: string, type: typeof cc.Asset): void; + static loadRes(url: string, progressCallback: (completedCount: number, totalCount: number, item: any) => void, completeCallback: ((error: Error, resource: any) => void)|null): void; + static loadRes(url: string, completeCallback: (error: Error, resource: any) => void): void; + static loadRes(url: string): void; + /** + `cc.loader.loadResArray` is deprecated, please use {{#crossLink "Bundle/load:method"}}{{/crossLink}} instead + @param urls Array of URLs of the target resource. + The url is relative to the "resources" folder, extensions must be omitted. + @param type Only asset of type will be loaded if this argument is supplied. + @param progressCallback Callback invoked when progression change. + @param completeCallback A callback which is called when all assets have been loaded, or an error occurs. + */ + static loadResArray(url: string[], type: typeof cc.Asset, progressCallback: (completedCount: number, totalCount: number, item: any) => void, completeCallback: ((error: Error, resource: any[]) => void)|null): void; + static loadResArray(url: string[], type: typeof cc.Asset, completeCallback: (error: Error, resource: any[]) => void): void; + static loadResArray(url: string[], type: typeof cc.Asset): void; + static loadResArray(url: string[], progressCallback: (completedCount: number, totalCount: number, item: any) => void, completeCallback: ((error: Error, resource: any[]) => void)|null): void; + static loadResArray(url: string[], completeCallback: (error: Error, resource: any[]) => void): void; + static loadResArray(url: string[]): void; + static loadResArray(url: string[], type: typeof cc.Asset[]): void; + /** + `cc.loader.loadResDir` is deprecated, please use {{#crossLink "Bundle/loadDir:method"}}{{/crossLink}} instead + @param url Url of the target folder. + The url is relative to the "resources" folder, extensions must be omitted. + @param type Only asset of type will be loaded if this argument is supplied. + @param progressCallback Callback invoked when progression change. + @param completeCallback A callback which is called when all assets have been loaded, or an error occurs. + */ + static loadResDir(url: string, type: typeof cc.Asset, progressCallback: (completedCount: number, totalCount: number, item: any) => void, completeCallback: ((error: Error, resource: any[], urls: string[]) => void)|null): void; + static loadResDir(url: string, type: typeof cc.Asset, completeCallback: (error: Error, resource: any[], urls: string[]) => void): void; + static loadResDir(url: string, type: typeof cc.Asset): void; + static loadResDir(url: string, progressCallback: (completedCount: number, totalCount: number, item: any) => void, completeCallback: ((error: Error, resource: any[], urls: string[]) => void)|null): void; + static loadResDir(url: string, completeCallback: (error: Error, resource: any[], urls: string[]) => void): void; + static loadResDir(url: string): void; + /** + `cc.loader.getRes` is deprecated, please use {{#crossLink "Bundle/get:method"}}{{/crossLink}} instead + @param url url + @param type Only asset of type will be returned if this argument is supplied. + */ + static getRes(url: string, type?: Function): any; + /** + `cc.loader.getDependsRecursively` is deprecated, please use use {{#crossLink "DependUtil/getDepsRecursively:method"}}{{/crossLink}} instead + @param owner The owner asset or the resource url or the asset's uuid + */ + static getDependsRecursively(owner: Asset|string): any[]; + /** `cc.loader.assetLoader` was removed, assetLoader and md5Pipe were merged into {{#crossLink "AssetManager/transformPipeline:property"}}{{/crossLink}} */ + static assetLoader: any; + /** `cc.loader.md5Pipe` is deprecated, assetLoader and md5Pipe were merged into {{#crossLink "AssetManager/transformPipeline:property"}}{{/crossLink}} */ + static md5Pipe: any; + /** `cc.loader.downloader` is deprecated, please use {{#crossLink "AssetManager/downloader:property"}}{{/crossLink}} instead */ + static downloader: any; + /** `cc.loader.loader` is deprecated, please use {{#crossLink "AssetManager/parser:property"}}{{/crossLink}} instead */ + static loader: any; + /** + `cc.loader.addDownloadHandlers` is deprecated, please use `cc.assetManager.downloader.register` instead + @param extMap Custom supported types with corresponded handler + */ + static addDownloadHandlers(extMap: any): void; + /** + `cc.loader.addLoadHandlers` is deprecated, please use `cc.assetManager.parser.register` instead + @param extMap Custom supported types with corresponded handler + */ + static addLoadHandlers(extMap: any): void; + /** + `cc.loader.release` is deprecated, please use {{#crossLink "AssetManager/releaseAsset:method"}}{{/crossLink}} instead + @param asset asset + */ + static release(asset: Asset|string|any[]): void; + /** + `cc.loader.releaseAsset` is deprecated, please use {{#crossLink "AssetManager/releaseAsset:method"}}{{/crossLink}} instead + @param asset asset + */ + static releaseAsset(asset: Asset): void; + /** + `cc.loader.releaseRes` is deprecated, please use {{#crossLink "AssetManager/releaseRes:method"}}{{/crossLink}} instead + @param url url + @param type Only asset of type will be released if this argument is supplied. + */ + static releaseRes(url: string, type?: Function): void; + /** + `cc.loader.releaseResDir` was removed, please use {{#crossLink "AssetManager/releaseRes:method"}}{{/crossLink}} instead + */ + static releaseResDir(): void; + /** + `cc.loader.releaseAll` is deprecated, please use {{#crossLink "AssetManager/releaseAll:method"}}{{/crossLink}} instead + */ + static releaseAll(): void; + /** + `cc.loader.removeItem` is deprecated, please use `cc.assetManager.assets.remove` instead + @param id The id of the item + */ + static removeItem(id: any): boolean; + /** + `cc.loader.setAutoRelease` is deprecated, if you want to prevent some asset from auto releasing, please use {{#crossLink "Asset/addRef:method"}}{{/crossLink}} instead + @param assetOrUrlOrUuid asset object or the raw asset's url or uuid + @param autoRelease indicates whether should release automatically + */ + static setAutoRelease(assetOrUrlOrUuid: Asset|string, autoRelease: boolean): void; + /** + `cc.loader.setAutoReleaseRecursively` is deprecated, if you want to prevent some asset from auto releasing, please use {{#crossLink "Asset/addRef:method"}}{{/crossLink}} instead + @param assetOrUrlOrUuid asset object or the raw asset's url or uuid + @param autoRelease indicates whether should release automatically + */ + static setAutoReleaseRecursively(assetOrUrlOrUuid: Asset|string, autoRelease: boolean): void; + /** + `cc.loader.isAutoRelease` is deprecated + @param assetOrUrl asset object or the raw asset's url + */ + static isAutoRelease(assetOrUrl: Asset|string): boolean; + } + /** `cc.url` is deprecated */ + export class url { + /** + `cc.url.raw` is deprecated, please use `cc.resources.load` directly, or use `Asset.nativeUrl` instead. + @param url url + */ + static raw(url: string): string; + } + /** `cc.LoadingItems` was removed, please use {{#crossLink "Task"}}{{/crossLink}} instead */ + export class LoadingItems { + } + /** !#en + Base class for handling assets used in Creator.
+ + You may want to override:
+ - createNode
+ - getset functions of _nativeAsset
+ - cc.Object._serialize
+ - cc.Object._deserialize
+ !#zh + Creator 中的资源基类。
+ + 您可能需要重写:
+ - createNode
+ - _nativeAsset 的 getset 方法
+ - cc.Object._serialize
+ - cc.Object._deserialize
*/ + export class Asset extends Object { + /** `cc.Asset.url` is deprecated, please use {{#crossLink "Asset/nativeUrl:property"}}{{/crossLink}} instead */ + url: string; + /** !#en + Whether the asset is loaded or not. + !#zh + 该资源是否已经成功加载。 */ + loaded: boolean; + /** !#en + Returns the url of this asset's native object, if none it will returns an empty string. + !#zh + 返回该资源对应的目标平台资源的 URL,如果没有将返回一个空字符串。 */ + nativeUrl: string; + /** !#en + The number of reference + + !#zh + 引用的数量 */ + refCount: number; + /** !#en Indicates whether its dependent raw assets can support deferred load if the owner scene (or prefab) is marked as `asyncLoadAssets`. + !#zh 当场景或 Prefab 被标记为 `asyncLoadAssets`,禁止延迟加载该资源所依赖的其它原始资源。 */ + static preventDeferredLoadDependents: boolean; + /** !#en Indicates whether its native object should be preloaded from native url. + !#zh 禁止预加载原生对象。 */ + static preventPreloadNativeObject: boolean; + /** + !#en + Returns the asset's url. + + The `Asset` object overrides the `toString()` method of the `Object` object. + For `Asset` objects, the `toString()` method returns a string representation of the object. + JavaScript calls the `toString()` method automatically when an asset is to be represented as a text value or when a texture is referred to in a string concatenation. + !#zh + 返回资源的 URL。 + + Asset 对象将会重写 Object 对象的 `toString()` 方法。 + 对于 Asset 对象,`toString()` 方法返回该对象的字符串表示形式。 + 当资源要表示为文本值时或在字符串连接时引用时,JavaScript 会自动调用 `toString()` 方法。 + */ + toString(): string; + /** + !#en + Create a new node using this asset in the scene.
+ If this type of asset dont have its corresponding node type, this method should be null. + !#zh + 使用该资源在场景中创建一个新节点。
+ 如果这类资源没有相应的节点类型,该方法应该是空的。 + @param callback callback + */ + createNode(callback: (error: string, node: any) => void): void; + /** + !#en + Add references of asset + + !#zh + 增加资源的引用 + */ + addRef(): cc.Asset; + /** + !#en + Reduce references of asset and it will be auto released when refCount equals 0. + + !#zh + 减少资源的引用并尝试进行自动释放。 + */ + decRef(): cc.Asset; + } + /** Predefined constants */ + export class macro { + /** `cc.macro.DOWNLOAD_MAX_CONCURRENT` is deprecated now, please use {{#crossLink "Downloader/maxConcurrency:property"}}{{/crossLink}} instead */ + static DOWNLOAD_MAX_CONCURRENT: number; + /** PI / 180 */ + static RAD: number; + /** One degree */ + static DEG: number; + static REPEAT_FOREVER: number; + static FLT_EPSILON: number; + /** Minimum z index value for node */ + static MIN_ZINDEX: number; + /** Maximum z index value for node */ + static MAX_ZINDEX: number; + static ONE: number; + static ZERO: number; + static SRC_ALPHA: number; + static SRC_ALPHA_SATURATE: number; + static SRC_COLOR: number; + static DST_ALPHA: number; + static DST_COLOR: number; + static ONE_MINUS_SRC_ALPHA: number; + static ONE_MINUS_SRC_COLOR: number; + static ONE_MINUS_DST_ALPHA: number; + static ONE_MINUS_DST_COLOR: number; + static ONE_MINUS_CONSTANT_ALPHA: number; + static ONE_MINUS_CONSTANT_COLOR: number; + /** Oriented vertically */ + static ORIENTATION_PORTRAIT: number; + /** Oriented horizontally */ + static ORIENTATION_LANDSCAPE: number; + /** Oriented automatically */ + static ORIENTATION_AUTO: number; + /**

+ If enabled, the texture coordinates will be calculated by using this formula:
+ - texCoord.left = (rect.x*2+1) / (texture.wide*2);
+ - texCoord.right = texCoord.left + (rect.width*2-2)/(texture.wide*2);
+
+ The same for bottom and top.
+
+ This formula prevents artifacts by using 99% of the texture.
+ The "correct" way to prevent artifacts is by expand the texture's border with the same color by 1 pixel
+
+ Affected component:
+ - cc.TMXLayer
+
+ Enabled by default. To disabled set it to 0.
+ To modify it, in Web engine please refer to CCMacro.js, in JSB please refer to CCConfig.h +

*/ + static FIX_ARTIFACTS_BY_STRECHING_TEXEL_TMX: number; + /** Position of the FPS (Default: 0,0 (bottom-left corner))
+ To modify it, in Web engine please refer to CCMacro.js, in JSB please refer to CCConfig.h */ + static DIRECTOR_STATS_POSITION: Vec2; + /**

+ If enabled, actions that alter the position property (eg: CCMoveBy, CCJumpBy, CCBezierBy, etc..) will be stacked.
+ If you run 2 or more 'position' actions at the same time on a node, then end position will be the sum of all the positions.
+ If disabled, only the last run action will take effect. +

*/ + static ENABLE_STACKABLE_ACTIONS: number; + /** !#en + The timeout to determine whether a touch is no longer active and should be removed. + The reason to add this timeout is due to an issue in X5 browser core, + when X5 is presented in wechat on Android, if a touch is glissed from the bottom up, and leave the page area, + no touch cancel event is triggered, and the touch will be considered active forever. + After multiple times of this action, our maximum touches number will be reached and all new touches will be ignored. + So this new mechanism can remove the touch that should be inactive if it's not updated during the last 5000 milliseconds. + Though it might remove a real touch if it's just not moving for the last 5 seconds which is not easy with the sensibility of mobile touch screen. + You can modify this value to have a better behavior if you find it's not enough. + !#zh + 用于甄别一个触点对象是否已经失效并且可以被移除的延时时长 + 添加这个时长的原因是 X5 内核在微信浏览器中出现的一个 bug。 + 在这个环境下,如果用户将一个触点从底向上移出页面区域,将不会触发任何 touch cancel 或 touch end 事件,而这个触点会被永远当作停留在页面上的有效触点。 + 重复这样操作几次之后,屏幕上的触点数量将达到我们的事件系统所支持的最高触点数量,之后所有的触摸事件都将被忽略。 + 所以这个新的机制可以在触点在一定时间内没有任何更新的情况下视为失效触点并从事件系统中移除。 + 当然,这也可能移除一个真实的触点,如果用户的触点真的在一定时间段内完全没有移动(这在当前手机屏幕的灵敏度下会很难)。 + 你可以修改这个值来获得你需要的效果,默认值是 5000 毫秒。 */ + static TOUCH_TIMEOUT: number; + /** !#en + The maximum vertex count for a single batched draw call. + !#zh + 最大可以被单次批处理渲染的顶点数量。 */ + static BATCH_VERTEX_COUNT: number; + /** !#en + Whether or not enabled tiled map auto culling. If you set the TiledMap skew or rotation, then need to manually disable this, otherwise, the rendering will be wrong. + !#zh + 是否开启瓦片地图的自动裁减功能。瓦片地图如果设置了 skew, rotation 或者采用了摄像机的话,需要手动关闭,否则渲染会出错。 */ + static ENABLE_TILEDMAP_CULLING: boolean; + /** !#en + Boolean that indicates if the canvas contains an alpha channel, default sets to false for better performance. + Though if you want to make your canvas background transparent and show other dom elements at the background, + you can set it to true before `cc.game.run`. + Web only. + !#zh + 用于设置 Canvas 背景是否支持 alpha 通道,默认为 false,这样可以有更高的性能表现。 + 如果你希望 Canvas 背景是透明的,并显示背后的其他 DOM 元素,你可以在 `cc.game.run` 之前将这个值设为 true。 + 仅支持 Web */ + static ENABLE_TRANSPARENT_CANVAS: boolean; + /** !#en + Boolean that indicates if the WebGL context is created with `antialias` option turned on, default value is false. + Set it to true could make your game graphics slightly smoother, like texture hard edges when rotated. + Whether to use this really depend on your game design and targeted platform, + device with retina display usually have good detail on graphics with or without this option, + you probably don't want antialias if your game style is pixel art based. + Also, it could have great performance impact with some browser / device using software MSAA. + You can set it to true before `cc.game.run`. + Web only. + !#zh + 用于设置在创建 WebGL Context 时是否开启抗锯齿选项,默认值是 false。 + 将这个选项设置为 true 会让你的游戏画面稍稍平滑一些,比如旋转硬边贴图时的锯齿。是否开启这个选项很大程度上取决于你的游戏和面向的平台。 + 在大多数拥有 retina 级别屏幕的设备上用户往往无法区分这个选项带来的变化;如果你的游戏选择像素艺术风格,你也多半不会想开启这个选项。 + 同时,在少部分使用软件级别抗锯齿算法的设备或浏览器上,这个选项会对性能产生比较大的影响。 + 你可以在 `cc.game.run` 之前设置这个值,否则它不会生效。 + 仅支持 Web */ + static ENABLE_WEBGL_ANTIALIAS: boolean; + /** !#en + Whether or not enable auto culling. + This feature have been removed in v2.0 new renderer due to overall performance consumption. + We have no plan currently to re-enable auto culling. + If your game have more dynamic objects, we suggest to disable auto culling. + If your game have more static objects, we suggest to enable auto culling. + !#zh + 是否开启自动裁减功能,开启裁减功能将会把在屏幕外的物体从渲染队列中去除掉。 + 这个功能在 v2.0 的新渲染器中被移除了,因为它在大多数游戏中所带来的损耗要高于性能的提升,目前我们没有计划重新支持自动裁剪。 + 如果游戏中的动态物体比较多的话,建议将此选项关闭。 + 如果游戏中的静态物体比较多的话,建议将此选项打开。 */ + static ENABLE_CULLING: boolean; + /** !#en + Whether to clear the original image cache after uploaded a texture to GPU. If cleared, [Dynamic Atlas](https://docs.cocos.com/creator/manual/en/advanced-topics/dynamic-atlas.html) will not be supported. + Normally you don't need to enable this option on the web platform, because Image object doesn't consume too much memory. + But on WeChat Game platform, the current version cache decoded data in Image object, which has high memory usage. + So we enabled this option by default on WeChat, so that we can release Image cache immediately after uploaded to GPU. + !#zh + 是否在将贴图上传至 GPU 之后删除原始图片缓存,删除之后图片将无法进行 [动态合图](https://docs.cocos.com/creator/manual/zh/advanced-topics/dynamic-atlas.html)。 + 在 Web 平台,你通常不需要开启这个选项,因为在 Web 平台 Image 对象所占用的内存很小。 + 但是在微信小游戏平台的当前版本,Image 对象会缓存解码后的图片数据,它所占用的内存空间很大。 + 所以我们在微信平台默认开启了这个选项,这样我们就可以在上传 GL 贴图之后立即释放 Image 对象的内存,避免过高的内存占用。 */ + static CLEANUP_IMAGE_CACHE: boolean; + /** !#en + Whether or not show mesh wire frame. + !#zh + 是否显示网格的线框。 */ + static SHOW_MESH_WIREFRAME: boolean; + /** !#en + Whether or not show mesh normal. + !#zh + 是否显示网格的法线。 */ + static SHOW_MESH_NORMAL: boolean; + /** !#en + Whether to enable multi-touch. + !#zh + 是否开启多点触摸 */ + static ENABLE_MULTI_TOUCH: boolean; + /** References: + https://developer.mozilla.org/en-US/docs/Web/API/ImageBitmap + https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/createImageBitmap + + !#en + Whether to use image bitmap first. If enabled, memory usage will increase. + + !#zh + 是否优先使用 image bitmap,启用之后,内存占用会变高 */ + static ALLOW_IMAGE_BITMAP: boolean; + /** !#en + Whether to use native TTF renderer which is faster but layout slightly different. + + !#zh + 是否使用原生的文本渲染机制, 布局和编辑器有差异. */ + static ENABLE_NATIVE_TTF_RENDERER: boolean; + /** !#en + The image format supported by the engine defaults, and the supported formats may differ in different build platforms and device types. + Currently all platform and device support ['.webp', '.jpg', '.jpeg', '.bmp', '.png'], The iOS mobile platform also supports the PVR format。 + !#zh + 引擎默认支持的图片格式,支持的格式可能在不同的构建平台和设备类型上有所差别。 + 目前所有平台和设备支持的格式有 ['.webp', '.jpg', '.jpeg', '.bmp', '.png']. 另外 Ios 手机平台还额外支持了 PVR 格式。 */ + static SUPPORT_TEXTURE_FORMATS: string[]; + } + /** !#en Class for BitmapFont handling. + !#zh 位图字体资源类。 */ + export class BitmapFont extends Font { + } + /** !#en Class for audio data handling. + !#zh 音频资源类。 */ + export class AudioClip extends Asset implements EventTarget { + /** !#en Get the audio clip duration + !#zh 获取音频剪辑的长度 */ + duration: number; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** undefined */ + export class BufferAsset extends Asset { + } + /** !#en Class for Font handling. + !#zh 字体资源类。 */ + export class Font extends Asset { + } + /** !#en Class for LabelAtlas handling. + !#zh 艺术数字字体资源类。 */ + export class LabelAtlas extends BitmapFont { + } + /** !#en + Class for JSON file. When the JSON file is loaded, this object is returned. + The parsed JSON object can be accessed through the `json` attribute in it.
+ If you want to get the original JSON text, you should modify the extname to `.txt` + so that it is loaded as a `TextAsset` instead of a `JsonAsset`. + + !#zh + JSON 资源类。JSON 文件加载后,将会返回该对象。可以通过其中的 `json` 属性访问解析后的 JSON 对象。
+ 如果你想要获得 JSON 的原始文本,那么应该修改源文件的后缀为 `.txt`,这样就会加载为一个 `TextAsset` 而不是 `JsonAsset`。 */ + export class JsonAsset extends Asset { + /** The loaded JSON object. */ + json: any; + } + /** !#en Class for prefab handling. + !#zh 预制资源类。 */ + export class Prefab extends Asset { + /** the main cc.Node in the prefab */ + data: Node; + /** !#zh + 设置实例化这个 prefab 时所用的优化策略。根据使用情况设置为合适的值,能优化该 prefab 实例化所用的时间。 + !#en + Indicates the optimization policy for instantiating this prefab. + Set to a suitable value based on usage, can optimize the time it takes to instantiate this prefab. */ + optimizationPolicy: Prefab.OptimizationPolicy; + /** !#en Indicates the raw assets of this prefab can be load after prefab loaded. + !#zh 指示该 Prefab 依赖的资源可否在 Prefab 加载后再延迟加载。 */ + asyncLoadAssets: boolean; + readonly: boolean; + /** + Dynamically translation prefab data into minimized code.
+ This method will be called automatically before the first time the prefab being instantiated, + but you can re-call to refresh the create function once you modified the original prefab data in script. + */ + compileCreateFunction(): void; + } + /** Render textures are textures that can be rendered to. */ + export class RenderTexture extends Texture2D { + /** + !#en + Init the render texture with size. + !#zh + 初始化 render texture + @param width width + @param height height + @param depthStencilFormat depthStencilFormat + */ + initWithSize(width?: number, height?: number, depthStencilFormat?: number): void; + /** + !#en + Get pixels from render texture, the pixels data stores in a RGBA Uint8Array. + It will return a new (width * height * 4) length Uint8Array by default。 + You can specify a data to store the pixels to reuse the data, + you and can specify other params to specify the texture region to read. + !#zh + 从 render texture 读取像素数据,数据类型为 RGBA 格式的 Uint8Array 数组。 + 默认每次调用此函数会生成一个大小为 (长 x 高 x 4) 的 Uint8Array。 + 你可以通过传入 data 来接收像素数据,也可以通过传参来指定需要读取的区域的像素。 + @param data data + @param x x + @param y y + @param w w + @param h h + */ + readPixels(data?: Uint8Array, x?: number, y?: number, w?: number, h?: number): Uint8Array; + } + /** !#en Class for scene handling. + !#zh 场景资源类。 */ + export class SceneAsset extends Asset { + scene: Scene; + /** !#en Indicates the raw assets of this scene can be load after scene launched. + !#zh 指示该场景依赖的资源可否在场景切换后再延迟加载。 */ + asyncLoadAssets: boolean; + } + /** !#en Class for script handling. + !#zh Script 资源类。 */ + export class _Script extends Asset { + } + /** !#en Class for JavaScript handling. + !#zh JavaScript 资源类。 */ + export class _JavaScript extends Asset { + } + /** !#en Class for TypeScript handling. + !#zh TypeScript 资源类。 */ + export class TypeScript extends Asset { + } + /** !#en Class for sprite atlas handling. + !#zh 精灵图集资源类。 */ + export class SpriteAtlas extends Asset { + _spriteFrames: any; + /** + Returns the texture of the sprite atlas + */ + getTexture(): Texture2D; + /** + Returns the sprite frame correspond to the given key in sprite atlas. + @param key key + */ + getSpriteFrame(key: string): SpriteFrame; + /** + Returns the sprite frames in sprite atlas. + */ + getSpriteFrames(): SpriteFrame[]; + } + /** !#en + A cc.SpriteFrame has:
+ - texture: A cc.Texture2D that will be used by render components
+ - rectangle: A rectangle of the texture + + !#zh + 一个 SpriteFrame 包含:
+ - 纹理:会被渲染组件使用的 Texture2D 对象。
+ - 矩形:在纹理中的矩形区域。 */ + export class SpriteFrame extends Asset implements EventTarget { + /** !#en Top border of the sprite + !#zh sprite 的顶部边框 */ + insetTop: number; + /** !#en Bottom border of the sprite + !#zh sprite 的底部边框 */ + insetBottom: number; + /** !#en Left border of the sprite + !#zh sprite 的左边边框 */ + insetLeft: number; + /** !#en Right border of the sprite + !#zh sprite 的左边边框 */ + insetRight: number; + /** + !#en + Constructor of SpriteFrame class. + !#zh + SpriteFrame 类的构造函数。 + @param filename filename + @param rect rect + @param rotated Whether the frame is rotated in the texture + @param offset The offset of the frame in the texture + @param originalSize The size of the frame in the texture + */ + constructor(filename?: string|Texture2D, rect?: Rect, rotated?: boolean, offset?: Vec2, originalSize?: Size); + /** + !#en Returns whether the texture have been loaded + !#zh 返回是否已加载纹理 + */ + textureLoaded(): boolean; + /** + !#en Returns whether the sprite frame is rotated in the texture. + !#zh 获取 SpriteFrame 是否旋转 + */ + isRotated(): boolean; + /** + !#en Set whether the sprite frame is rotated in the texture. + !#zh 设置 SpriteFrame 是否旋转 + @param bRotated bRotated + */ + setRotated(bRotated: boolean): void; + /** + !#en Returns whether the sprite frame is flip x axis in the texture. + !#zh 获取 SpriteFrame 是否反转 x 轴 + */ + isFlipX(): boolean; + /** + !#en Returns whether the sprite frame is flip y axis in the texture. + !#zh 获取 SpriteFrame 是否反转 y 轴 + */ + isFlipY(): boolean; + /** + !#en Set whether the sprite frame is flip x axis in the texture. + !#zh 设置 SpriteFrame 是否翻转 x 轴 + @param flipX flipX + */ + setFlipX(flipX: boolean): void; + /** + !#en Set whether the sprite frame is flip y axis in the texture. + !#zh 设置 SpriteFrame 是否翻转 y 轴 + @param flipY flipY + */ + setFlipY(flipY: boolean): void; + /** + !#en Returns the rect of the sprite frame in the texture. + !#zh 获取 SpriteFrame 的纹理矩形区域 + */ + getRect(): Rect; + /** + !#en Sets the rect of the sprite frame in the texture. + !#zh 设置 SpriteFrame 的纹理矩形区域 + @param rect rect + */ + setRect(rect: Rect): void; + /** + !#en Returns the original size of the trimmed image. + !#zh 获取修剪前的原始大小 + */ + getOriginalSize(): Size; + /** + !#en Sets the original size of the trimmed image. + !#zh 设置修剪前的原始大小 + @param size size + */ + setOriginalSize(size: Size): void; + /** + !#en Returns the texture of the frame. + !#zh 获取使用的纹理实例 + */ + getTexture(): Texture2D; + /** + !#en Returns the offset of the frame in the texture. + !#zh 获取偏移量 + */ + getOffset(): Vec2; + /** + !#en Sets the offset of the frame in the texture. + !#zh 设置偏移量 + @param offsets offsets + */ + setOffset(offsets: Vec2): void; + /** + !#en Clone the sprite frame. + !#zh 克隆 SpriteFrame + */ + clone(): SpriteFrame; + /** + !#en Set SpriteFrame with Texture, rect, rotated, offset and originalSize.
+ !#zh 通过 Texture,rect,rotated,offset 和 originalSize 设置 SpriteFrame。 + @param texture texture + @param rect rect + @param rotated rotated + @param offset offset + @param originalSize originalSize + */ + setTexture(texture: Texture2D, rect?: Rect, rotated?: boolean, offset?: Vec2, originalSize?: Size): boolean; + /** + !#en If a loading scene (or prefab) is marked as `asyncLoadAssets`, all the textures of the SpriteFrame which + associated by user's custom Components in the scene, will not preload automatically. + These textures will be load when Sprite component is going to render the SpriteFrames. + You can call this method if you want to load the texture early. + !#zh 当加载中的场景或 Prefab 被标记为 `asyncLoadAssets` 时,用户在场景中由自定义组件关联到的所有 SpriteFrame 的贴图都不会被提前加载。 + 只有当 Sprite 组件要渲染这些 SpriteFrame 时,才会检查贴图是否加载。如果你希望加载过程提前,你可以手工调用这个方法。 + + @example + ```js + if (spriteFrame.textureLoaded()) { + this._onSpriteFrameLoaded(); + } + else { + spriteFrame.once('load', this._onSpriteFrameLoaded, this); + spriteFrame.ensureLoadTexture(); + } + ``` + */ + ensureLoadTexture(): void; + /** + !#en + If you do not need to use the SpriteFrame temporarily, you can call this method so that its texture could be garbage collected. Then when you need to render the SpriteFrame, you should call `ensureLoadTexture` manually to reload texture. + !#zh + 当你暂时不再使用这个 SpriteFrame 时,可以调用这个方法来保证引用的贴图对象能被 GC。然后当你要渲染 SpriteFrame 时,你需要手动调用 `ensureLoadTexture` 来重新加载贴图。 + */ + clearTexture(): void; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** !#en Class for TTFFont handling. + !#zh TTF 字体资源类。 */ + export class TTFFont extends Font { + } + /** !#en Class for text file. + !#zh 文本资源类。 */ + export class TextAsset extends Asset { + /** The text contents of the resource. */ + text: string; + } + /** This class allows to easily create OpenGL or Canvas 2D textures from images or raw data. */ + export class Texture2D extends Asset implements EventTarget { + /** !#en Sets whether generate mipmaps for the texture + !#zh 是否为纹理设置生成 mipmaps。 */ + genMipmaps: boolean; + /** !#en + Sets whether texture can be packed into texture atlas. + If need use texture uv in custom Effect, please sets packable to false. + !#zh + 设置纹理是否允许参与合图。 + 如果需要在自定义 Effect 中使用纹理 UV,需要禁止该选项。 */ + packable: boolean; + /** !#en + Whether the texture is loaded or not + !#zh + 贴图是否已经成功加载 */ + loaded: boolean; + /** !#en + Texture width in pixel + !#zh + 贴图像素宽度 */ + width: number; + /** !#en + Texture height in pixel + !#zh + 贴图像素高度 */ + height: number; + /** + !#en + Get renderer texture implementation object + extended from render.Texture2D + !#zh 返回渲染器内部贴图对象 + */ + getImpl(): void; + /** + Update texture options, not available in Canvas render mode. + image, format, premultiplyAlpha can not be updated in native. + @param options options + */ + update(options: {image: DOMImageElement; genMipmaps: boolean; format: Texture2D.PixelFormat; minFilter: Texture2D.Filter; magFilter: Texture2D.Filter; wrapS: WrapMode; wrapT: WrapMode; premultiplyAlpha: boolean; }): void; + /** + !#en + Init with HTML element. + !#zh 用 HTML Image 或 Canvas 对象初始化贴图。 + @param element element + + @example + ```js + var img = new Image(); + img.src = dataURL; + texture.initWithElement(img); + ``` + */ + initWithElement(element: HTMLImageElement|HTMLCanvasElement): void; + /** + !#en + Intializes with texture data in ArrayBufferView. + !#zh 使用一个存储在 ArrayBufferView 中的图像数据(raw data)初始化数据。 + @param data data + @param pixelFormat pixelFormat + @param pixelsWidth pixelsWidth + @param pixelsHeight pixelsHeight + */ + initWithData(data: ArrayBufferView, pixelFormat: number, pixelsWidth: number, pixelsHeight: number): boolean; + /** + !#en + HTMLElement Object getter, available only on web.
+ Note: texture is packed into texture atlas by default
+ you should set texture.packable as false before getting Html element object. + !#zh 获取当前贴图对应的 HTML Image 或 Canvas 对象,只在 Web 平台下有效。
+ 注意:
+ texture 默认参与动态合图,如果需要获取到正确的 Html 元素对象,需要先设置 texture.packable 为 false + */ + getHtmlElementObj(): HTMLImageElement; + /** + !#en + Destory this texture and immediately release its video memory. (Inherit from cc.Object.destroy)
+ After destroy, this object is not usable anymore. + You can use cc.isValid(obj) to check whether the object is destroyed before accessing it. + !#zh + 销毁该贴图,并立即释放它对应的显存。(继承自 cc.Object.destroy)
+ 销毁后,该对象不再可用。您可以在访问对象之前使用 cc.isValid(obj) 来检查对象是否已被销毁。 + */ + destroy(): boolean; + /** + !#en + Pixel format of the texture. + !#zh 获取纹理的像素格式。 + */ + getPixelFormat(): number; + /** + !#en + Whether or not the texture has their Alpha premultiplied. + !#zh 检查纹理在上传 GPU 时预乘选项是否开启。 + */ + hasPremultipliedAlpha(): boolean; + /** + !#en + Handler of texture loaded event. + Since v2.0, you don't need to invoke this function, it will be invoked automatically after texture loaded. + !#zh 贴图加载事件处理器。v2.0 之后你将不在需要手动执行这个函数,它会在贴图加载成功之后自动执行。 + @param premultiplied premultiplied + */ + handleLoadedTexture(premultiplied?: boolean): void; + /** + !#en + Description of cc.Texture2D. + !#zh cc.Texture2D 描述。 + */ + description(): string; + /** + !#en + Release texture, please use destroy instead. + !#zh 释放纹理,请使用 destroy 替代。 + */ + releaseTexture(): void; + /** + !#en Sets the wrap s and wrap t options.
+ If the texture size is NPOT (non power of 2), then in can only use gl.CLAMP_TO_EDGE in gl.TEXTURE_WRAP_{S,T}. + !#zh 设置纹理包装模式。 + 若纹理贴图尺寸是 NPOT(non power of 2),则只能使用 Texture2D.WrapMode.CLAMP_TO_EDGE。 + @param wrapS wrapS + @param wrapT wrapT + */ + setWrapMode(wrapS: Texture2D.WrapMode, wrapT: Texture2D.WrapMode): void; + /** + !#en Sets the minFilter and magFilter options + !#zh 设置纹理贴图缩小和放大过滤器算法选项。 + @param minFilter minFilter + @param magFilter magFilter + */ + setFilters(minFilter: Texture2D.Filter, magFilter: Texture2D.Filter): void; + /** + !#en + Sets the flipY options + !#zh 设置贴图的纵向翻转选项。 + @param flipY flipY + */ + setFlipY(flipY: boolean): void; + /** + !#en + Sets the premultiply alpha options + !#zh 设置贴图的预乘选项。 + @param premultiply premultiply + */ + setPremultiplyAlpha(premultiply: boolean): void; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** !#en + EventTarget is an object to which an event is dispatched when something has occurred. + Entity are the most common event targets, but other objects can be event targets too. + + Event targets are an important part of the Fireball event model. + The event target serves as the focal point for how events flow through the scene graph. + When an event such as a mouse click or a keypress occurs, Fireball dispatches an event object + into the event flow from the root of the hierarchy. The event object then makes its way through + the scene graph until it reaches the event target, at which point it begins its return trip through + the scene graph. This round-trip journey to the event target is conceptually divided into three phases: + - The capture phase comprises the journey from the root to the last node before the event target's node + - The target phase comprises only the event target node + - The bubbling phase comprises any subsequent nodes encountered on the return trip to the root of the tree + See also: http://www.w3.org/TR/DOM-Level-3-Events/#event-flow + + Event targets can implement the following methods: + - _getCapturingTargets + - _getBubblingTargets + + !#zh + 事件目标是事件触发时,分派的事件对象,Node 是最常见的事件目标, + 但是其他对象也可以是事件目标。
*/ + export class EventTarget extends CallbacksInvoker { + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** !#en Base class of all kinds of events. + !#zh 包含事件相关信息的对象。 */ + export class Event { + /** + + @param type The name of the event (case-sensitive), e.g. "click", "fire", or "submit" + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + constructor(type: string, bubbles: boolean); + /** !#en The name of the event (case-sensitive), e.g. "click", "fire", or "submit". + !#zh 事件类型。 */ + type: string; + /** !#en Indicate whether the event bubbles up through the tree or not. + !#zh 表示该事件是否进行冒泡。 */ + bubbles: boolean; + /** !#en A reference to the target to which the event was originally dispatched. + !#zh 最初事件触发的目标 */ + target: any; + /** !#en A reference to the currently registered target for the event. + !#zh 当前目标 */ + currentTarget: any; + /** !#en + Indicates which phase of the event flow is currently being evaluated. + Returns an integer value represented by 4 constants: + - Event.NONE = 0 + - Event.CAPTURING_PHASE = 1 + - Event.AT_TARGET = 2 + - Event.BUBBLING_PHASE = 3 + The phases are explained in the [section 3.1, Event dispatch and DOM event flow] + (http://www.w3.org/TR/DOM-Level-3-Events/#event-flow), of the DOM Level 3 Events specification. + !#zh 事件阶段 */ + eventPhase: number; + /** + !#en Reset the event for being stored in the object pool. + !#zh 重置对象池中存储的事件。 + */ + unuse(): string; + /** + !#en Reuse the event for being used again by the object pool. + !#zh 用于对象池再次使用的事件。 + */ + reuse(): string; + /** + !#en Stops propagation for current event. + !#zh 停止传递当前事件。 + */ + stopPropagation(): void; + /** + !#en Stops propagation for current event immediately, + the event won't even be dispatched to the listeners attached in the current target. + !#zh 立即停止当前事件的传递,事件甚至不会被分派到所连接的当前目标。 + */ + stopPropagationImmediate(): void; + /** + !#en Checks whether the event has been stopped. + !#zh 检查该事件是否已经停止传递. + */ + isStopped(): boolean; + /** + !#en +

+ Gets current target of the event
+ note: It only be available when the event listener is associated with node.
+ It returns 0 when the listener is associated with fixed priority. +

+ !#zh 获取当前目标节点 + */ + getCurrentTarget(): Node; + /** + !#en Gets the event type. + !#zh 获取事件类型 + */ + getType(): string; + /** !#en Code for event without type. + !#zh 没有类型的事件 */ + static NO_TYPE: string; + /** !#en The type code of Touch event. + !#zh 触摸事件类型 */ + static TOUCH: string; + /** !#en The type code of Mouse event. + !#zh 鼠标事件类型 */ + static MOUSE: string; + /** !#en The type code of Keyboard event. + !#zh 键盘事件类型 */ + static KEYBOARD: string; + /** !#en The type code of Acceleration event. + !#zh 加速器事件类型 */ + static ACCELERATION: string; + /** !#en Events not currently dispatched are in this phase + !#zh 尚未派发事件阶段 */ + static NONE: number; + /** !#en + The capturing phase comprises the journey from the root to the last node before the event target's node + see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow + !#zh 捕获阶段,包括事件目标节点之前从根节点到最后一个节点的过程。 */ + static CAPTURING_PHASE: number; + /** !#en + The target phase comprises only the event target node + see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow + !#zh 目标阶段仅包括事件目标节点。 */ + static AT_TARGET: number; + /** !#en + The bubbling phase comprises any subsequent nodes encountered on the return trip to the root of the hierarchy + see http://www.w3.org/TR/DOM-Level-3-Events/#event-flow + !#zh 冒泡阶段, 包括回程遇到到层次根节点的任何后续节点。 */ + static BUBBLING_PHASE: number; + } + /** !#en + The System event, it currently supports keyboard events and accelerometer events.
+ You can get the SystemEvent instance with cc.systemEvent.
+ !#zh + 系统事件,它目前支持按键事件和重力感应事件。
+ 你可以通过 cc.systemEvent 获取到 SystemEvent 的实例。
*/ + export class SystemEvent extends EventTarget { + /** + !#en whether enable accelerometer event + !#zh 是否启用加速度计事件 + @param isEnable isEnable + */ + setAccelerometerEnabled(isEnable: boolean): void; + /** + !#en set accelerometer interval value + !#zh 设置加速度计间隔值 + @param interval interval + */ + setAccelerometerInterval(interval: number): void; + } + /** !#en The animation component is used to play back animations. + + Animation provide several events to register: + - play : Emit when begin playing animation + - stop : Emit when stop playing animation + - pause : Emit when pause animation + - resume : Emit when resume animation + - lastframe : If animation repeat count is larger than 1, emit when animation play to the last frame + - finished : Emit when finish playing animation + + !#zh Animation 组件用于播放动画。 + + Animation 提供了一系列可注册的事件: + - play : 开始播放时 + - stop : 停止播放时 + - pause : 暂停播放时 + - resume : 恢复播放时 + - lastframe : 假如动画循环次数大于 1,当动画播放到最后一帧时 + - finished : 动画播放完成时 */ + export class Animation extends Component implements EventTarget { + /** !#en Animation will play the default clip when start game. + !#zh 在勾选自动播放或调用 play() 时默认播放的动画剪辑。 */ + defaultClip: AnimationClip; + /** !#en Current played clip. + !#zh 当前播放的动画剪辑。 */ + currentClip: AnimationClip; + /** !#en Whether the animation should auto play the default clip when start game. + !#zh 是否在运行游戏后自动播放默认动画剪辑。 */ + playOnLoad: boolean; + /** + !#en Get all the clips used in this animation. + !#zh 获取动画组件上的所有动画剪辑。 + */ + getClips(): AnimationClip[]; + /** + !#en Plays an animation and stop other animations. + !#zh 播放指定的动画,并且停止当前正在播放动画。如果没有指定动画,则播放默认动画。 + @param name The name of animation to play. If no name is supplied then the default animation will be played. + @param startTime play an animation from startTime + + @example + ```js + var animCtrl = this.node.getComponent(cc.Animation); + animCtrl.play("linear"); + ``` + */ + play(name?: string, startTime?: number): AnimationState; + /** + !#en + Plays an additive animation, it will not stop other animations. + If there are other animations playing, then will play several animations at the same time. + !#zh 播放指定的动画(将不会停止当前播放的动画)。如果没有指定动画,则播放默认动画。 + @param name The name of animation to play. If no name is supplied then the default animation will be played. + @param startTime play an animation from startTime + + @example + ```js + // linear_1 and linear_2 at the same time playing. + var animCtrl = this.node.getComponent(cc.Animation); + animCtrl.playAdditive("linear_1"); + animCtrl.playAdditive("linear_2"); + ``` + */ + playAdditive(name?: string, startTime?: number): AnimationState; + /** + !#en Stops an animation named name. If no name is supplied then stops all playing animations that were started with this Animation.
+ Stopping an animation also Rewinds it to the Start. + !#zh 停止指定的动画。如果没有指定名字,则停止当前正在播放的动画。 + @param name The animation to stop, if not supplied then stops all playing animations. + */ + stop(name?: string): void; + /** + !#en Pauses an animation named name. If no name is supplied then pauses all playing animations that were started with this Animation. + !#zh 暂停当前或者指定的动画。如果没有指定名字,则暂停当前正在播放的动画。 + @param name The animation to pauses, if not supplied then pauses all playing animations. + */ + pause(name?: string): void; + /** + !#en Resumes an animation named name. If no name is supplied then resumes all paused animations that were started with this Animation. + !#zh 重新播放指定的动画,如果没有指定名字,则重新播放当前正在播放的动画。 + @param name The animation to resumes, if not supplied then resumes all paused animations. + */ + resume(name?: string): void; + /** + !#en Make an animation named name go to the specified time. If no name is supplied then make all animations go to the specified time. + !#zh 设置指定动画的播放时间。如果没有指定名字,则设置当前播放动画的播放时间。 + @param time The time to go to + @param name Specified animation name, if not supplied then make all animations go to the time. + */ + setCurrentTime(time?: number, name?: string): void; + /** + !#en Returns the animation state named name. If no animation with the specified name, the function will return null. + !#zh 获取当前或者指定的动画状态,如果未找到指定动画剪辑则返回 null。 + @param name name + */ + getAnimationState(name: string): AnimationState; + /** + !#en Adds a clip to the animation with name newName. If a clip with that name already exists it will be replaced with the new clip. + !#zh 添加动画剪辑,并且可以重新设置该动画剪辑的名称。 + @param clip the clip to add + @param newName newName + */ + addClip(clip: AnimationClip, newName?: string): AnimationState; + /** + !#en + Remove clip from the animation list. This will remove the clip and any animation states based on it. + If there are animation states depand on the clip are playing or clip is defaultClip, it will not delete the clip. + But if force is true, then will always remove the clip and any animation states based on it. If clip is defaultClip, defaultClip will be reset to null + !#zh + 从动画列表中移除指定的动画剪辑,
+ 如果依赖于 clip 的 AnimationState 正在播放或者 clip 是 defaultClip 的话,默认是不会删除 clip 的。 + 但是如果 force 参数为 true,则会强制停止该动画,然后移除该动画剪辑和相关的动画。这时候如果 clip 是 defaultClip,defaultClip 将会被重置为 null。 + @param clip clip + @param force If force is true, then will always remove the clip and any animation states based on it. + */ + removeClip(clip: AnimationClip, force?: boolean): void; + /** + !#en + Samples animations at the current state.
+ This is useful when you explicitly want to set up some animation state, and sample it once. + !#zh 对指定或当前动画进行采样。你可以手动将动画设置到某一个状态,然后采样一次。 + @param name name + */ + sample(name: string): void; + /** + !#en + Register animation event callback. + The event arguments will provide the AnimationState which emit the event. + When play an animation, will auto register the event callback to the AnimationState, and unregister the event callback from the AnimationState when animation stopped. + !#zh + 注册动画事件回调。 + 回调的事件里将会附上发送事件的 AnimationState。 + 当播放一个动画时,会自动将事件注册到对应的 AnimationState 上,停止播放时会将事件从这个 AnimationState 上取消注册。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param state state + @param target The target (this object) to invoke the callback, can be null + @param useCapture When set to true, the capture argument prevents callback + from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. + When false, callback will NOT be invoked when event's eventPhase attribute value is CAPTURING_PHASE. + Either way, callback will be invoked when event's eventPhase attribute value is AT_TARGET. + + @example + ```js + onPlay: function (type, state) { + // callback + } + + // register event to all animation + animation.on('play', this.onPlay, this); + ``` + */ + on(type: string, callback: (event: Event.EventCustom) => void, target?: any, useCapture?: boolean): (event: Event.EventCustom) => void; + on(type: string, callback: (event: T) => void, target?: any, useCapture?: boolean): (event: T) => void; + on(type: string, callback: (type: string, state: cc.AnimationState) => void, target?: any, useCapture?: boolean): (type: string, state: cc.AnimationState) => void; + /** + !#en + Unregister animation event callback. + !#zh + 取消注册动画事件回调。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + @param useCapture Specifies whether the callback being removed was registered as a capturing callback or not. + If not specified, useCapture defaults to false. If a callback was registered twice, + one with capture and one without, each must be removed separately. Removal of a capturing callback + does not affect a non-capturing version of the same listener, and vice versa. + + @example + ```js + // unregister event to all animation + animation.off('play', this.onPlay, this); + ``` + */ + off(type: string, callback?: Function, target?: any, useCapture?: boolean): void; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** !#en Audio Source. + !#zh 音频源组件,能对音频剪辑。 */ + export class AudioSource extends Component { + /** !#en + Is the audio source playing (Read Only).
+ Note: isPlaying is not supported for Native platforms. + !#zh + 该音频剪辑是否正播放(只读)。
+ 注意:Native 平台暂时不支持 isPlaying。 */ + isPlaying: boolean; + /** !#en The clip of the audio source to play. + !#zh 要播放的音频剪辑。 */ + clip: AudioClip; + /** !#en The volume of the audio source. + !#zh 音频源的音量(0.0 ~ 1.0)。 */ + volume: number; + /** !#en Is the audio source mute? + !#zh 是否静音音频源。Mute 是设置音量为 0,取消静音是恢复原来的音量。 */ + mute: boolean; + /** !#en Is the audio source looping? + !#zh 音频源是否循环播放? */ + loop: boolean; + /** !#en If set to true, the audio source will automatically start playing on onEnable. + !#zh 如果设置为 true,音频源将在 onEnable 时自动播放。 */ + playOnLoad: boolean; + /** !#en If set to true and AudioClip is a deferred load resource, the component will preload AudioClip in the onLoad phase. + !#zh 如果设置为 true 且 AudioClip 为延迟加载资源,组件将在 onLoad 阶段预加载 AudioClip。 */ + preload: boolean; + /** + !#en Plays the clip. + !#zh 播放音频剪辑。 + */ + play(): void; + /** + !#en Stops the clip. + !#zh 停止当前音频剪辑。 + */ + stop(): void; + /** + !#en Pause the clip. + !#zh 暂停当前音频剪辑。 + */ + pause(): void; + /** + !#en Resume the clip. + !#zh 恢复播放。 + */ + resume(): void; + /** + !#en Rewind playing music. + !#zh 从头开始播放。 + */ + rewind(): void; + /** + !#en Get current time + !#zh 获取当前的播放时间 + */ + getCurrentTime(): number; + /** + !#en Set current time + !#zh 设置当前的播放时间 + @param time time + */ + setCurrentTime(time: number): number; + /** + !#en Get audio duration + !#zh 获取当前音频的长度 + */ + getDuration(): number; + } + /** !#en + This component will block all input events (mouse and touch) within the bounding box of the node, preventing the input from penetrating into the underlying node, typically for the background of the top UI.
+ This component does not have any API interface and can be added directly to the scene to take effect. + !#zh + 该组件将拦截所属节点 bounding box 内的所有输入事件(鼠标和触摸),防止输入穿透到下层节点,一般用于上层 UI 的背景。
+ 该组件没有任何 API 接口,直接添加到场景即可生效。 */ + export class BlockInputEvents extends Component { + } + /** !#en + Button component. Can be pressed or clicked. Button has 4 Transition types: + + - Button.Transition.NONE // Button will do nothing + - Button.Transition.COLOR // Button will change target's color + - Button.Transition.SPRITE // Button will change target Sprite's sprite + - Button.Transition.SCALE // Button will change target node's scale + + The button can bind events (but you must be on the button's node to bind events).
+ The following events can be triggered on all platforms. + + - cc.Node.EventType.TOUCH_START // Press + - cc.Node.EventType.TOUCH_MOVE // After pressing and moving + - cc.Node.EventType.TOUCH_END // After pressing and releasing + - cc.Node.EventType.TOUCH_CANCEL // Press to cancel + + The following events are only triggered on the PC platform: + + - cc.Node.EventType.MOUSE_DOWN + - cc.Node.EventType.MOUSE_MOVE + - cc.Node.EventType.MOUSE_ENTER + - cc.Node.EventType.MOUSE_LEAVE + - cc.Node.EventType.MOUSE_UP + - cc.Node.EventType.MOUSE_WHEEL + + User can get the current clicked node with 'event.target' from event object which is passed as parameter in the callback function of click event. + + !#zh + 按钮组件。可以被按下,或者点击。 + + 按钮可以通过修改 Transition 来设置按钮状态过渡的方式: + + - Button.Transition.NONE // 不做任何过渡 + - Button.Transition.COLOR // 进行颜色之间过渡 + - Button.Transition.SPRITE // 进行精灵之间过渡 + - Button.Transition.SCALE // 进行缩放过渡 + + 按钮可以绑定事件(但是必须要在按钮的 Node 上才能绑定事件):
+ 以下事件可以在全平台上都触发: + + - cc.Node.EventType.TOUCH_START // 按下时事件 + - cc.Node.EventType.TOUCH_MOVE // 按住移动后事件 + - cc.Node.EventType.TOUCH_END // 按下后松开后事件 + - cc.Node.EventType.TOUCH_CANCEL // 按下取消事件 + + 以下事件只在 PC 平台上触发: + + - cc.Node.EventType.MOUSE_DOWN // 鼠标按下时事件 + - cc.Node.EventType.MOUSE_MOVE // 鼠标按住移动后事件 + - cc.Node.EventType.MOUSE_ENTER // 鼠标进入目标事件 + - cc.Node.EventType.MOUSE_LEAVE // 鼠标离开目标事件 + - cc.Node.EventType.MOUSE_UP // 鼠标松开事件 + - cc.Node.EventType.MOUSE_WHEEL // 鼠标滚轮事件 + + 用户可以通过获取 __点击事件__ 回调函数的参数 event 的 target 属性获取当前点击对象。 */ + export class Button extends Component implements GraySpriteState { + /** !#en + Whether the Button is disabled. + If true, the Button will trigger event and do transition. + !#zh + 按钮事件是否被响应,如果为 false,则按钮将被禁用。 */ + interactable: boolean; + /** !#en When this flag is true, Button target sprite will turn gray when interactable is false. + !#zh 如果这个标记为 true,当 button 的 interactable 属性为 false 的时候,会使用内置 shader 让 button 的 target 节点的 sprite 组件变灰 */ + enableAutoGrayEffect: boolean; + /** !#en Transition type + !#zh 按钮状态改变时过渡方式。 */ + transition: Button.Transition; + /** !#en Normal state color. + !#zh 普通状态下按钮所显示的颜色。 */ + normalColor: Color; + /** !#en Pressed state color + !#zh 按下状态时按钮所显示的颜色。 */ + pressedColor: Color; + /** !#en Hover state color + !#zh 悬停状态下按钮所显示的颜色。 */ + hoverColor: Color; + /** !#en Disabled state color + !#zh 禁用状态下按钮所显示的颜色。 */ + disabledColor: Color; + /** !#en Color and Scale transition duration + !#zh 颜色过渡和缩放过渡时所需时间 */ + duration: number; + /** !#en When user press the button, the button will zoom to a scale. + The final scale of the button equals (button original scale * zoomScale) + !#zh 当用户点击按钮后,按钮会缩放到一个值,这个值等于 Button 原始 scale * zoomScale */ + zoomScale: number; + /** !#en Normal state sprite + !#zh 普通状态下按钮所显示的 Sprite 。 */ + normalSprite: SpriteFrame; + /** !#en Pressed state sprite + !#zh 按下状态时按钮所显示的 Sprite 。 */ + pressedSprite: SpriteFrame; + /** !#en Hover state sprite + !#zh 悬停状态下按钮所显示的 Sprite 。 */ + hoverSprite: SpriteFrame; + /** !#en Disabled state sprite + !#zh 禁用状态下按钮所显示的 Sprite 。 */ + disabledSprite: SpriteFrame; + /** !#en + Transition target. + When Button state changed: + If Transition type is Button.Transition.NONE, Button will do nothing + If Transition type is Button.Transition.COLOR, Button will change target's color + If Transition type is Button.Transition.SPRITE, Button will change target Sprite's sprite + !#zh + 需要过渡的目标。 + 当前按钮状态改变规则: + -如果 Transition type 选择 Button.Transition.NONE,按钮不做任何过渡。 + -如果 Transition type 选择 Button.Transition.COLOR,按钮会对目标颜色进行颜色之间的过渡。 + -如果 Transition type 选择 Button.Transition.Sprite,按钮会对目标 Sprite 进行 Sprite 之间的过渡。 */ + target: Node; + /** !#en If Button is clicked, it will trigger event's handler + !#zh 按钮的点击事件列表。 */ + clickEvents: Component.EventHandler[]; + /** !#en The normal material. + !#zh 正常状态的材质。 */ + normalMaterial: Material; + /** !#en The gray material. + !#zh 置灰状态的材质。 */ + grayMaterial: Material; + } + /** !#zh 作为 UI 根节点,为所有子节点提供视窗四边的位置信息以供对齐,另外提供屏幕适配策略接口,方便从编辑器设置。
+ 注:由于本节点的尺寸会跟随屏幕拉伸,所以 anchorPoint 只支持 (0.5, 0.5),否则适配不同屏幕时坐标会有偏差。 */ + export class Canvas extends Component { + /** !#en Current active canvas, the scene should only have one active canvas at the same time. + !#zh 当前激活的画布组件,场景同一时间只能有一个激活的画布。 */ + static instance: Canvas; + /** !#en The desigin resolution for current scene. + !#zh 当前场景设计分辨率。 */ + designResolution: Size; + /** !#en TODO + !#zh: 是否优先将设计分辨率高度撑满视图高度。 */ + fitHeight: boolean; + /** !#en TODO + !#zh: 是否优先将设计分辨率宽度撑满视图宽度。 */ + fitWidth: boolean; + } + /** !#en + Base class for everything attached to Node(Entity).
+
+ NOTE: Not allowed to use construction parameters for Component's subclasses, + because Component is created by the engine. + !#zh + 所有附加到节点的基类。
+
+ 注意:不允许使用组件的子类构造参数,因为组件是由引擎创建的。 */ + export class Component extends Object { + /** !#en The node this component is attached to. A component is always attached to a node. + !#zh 该组件被附加到的节点。组件总会附加到一个节点。 */ + node: Node; + /** !#en The uuid for editor. + !#zh 组件的 uuid,用于编辑器。 */ + uuid: string; + /** !#en indicates whether this component is enabled or not. + !#zh 表示该组件自身是否启用。 */ + enabled: boolean; + /** !#en indicates whether this component is enabled and its node is also active in the hierarchy. + !#zh 表示该组件是否被启用并且所在的节点也处于激活状态。 */ + enabledInHierarchy: boolean; + /** !#en Returns a value which used to indicate the onLoad get called or not. + !#zh 返回一个值用来判断 onLoad 是否被调用过,不等于 0 时调用过,等于 0 时未调用。 */ + _isOnLoadCalled: number; + /** + !#en Update is called every frame, if the Component is enabled.
+ This is a lifecycle method. It may not be implemented in the super class. You can only call its super class method inside it. It should not be called manually elsewhere. + !#zh 如果该组件启用,则每帧调用 update。
+ 该方法为生命周期方法,父类未必会有实现。并且你只能在该方法内部调用父类的实现,不可在其它地方直接调用该方法。 + @param dt the delta time in seconds it took to complete the last frame + */ + protected update(dt: number): void; + /** + !#en LateUpdate is called every frame, if the Component is enabled.
+ This is a lifecycle method. It may not be implemented in the super class. You can only call its super class method inside it. It should not be called manually elsewhere. + !#zh 如果该组件启用,则每帧调用 LateUpdate。
+ 该方法为生命周期方法,父类未必会有实现。并且你只能在该方法内部调用父类的实现,不可在其它地方直接调用该方法。 + @param dt the delta time in seconds it took to complete the last frame + */ + protected lateUpdate(dt: number): void; + /** + !#en + When attaching to an active node or its node first activated. + onLoad is always called before any start functions, this allows you to order initialization of scripts.
+ This is a lifecycle method. It may not be implemented in the super class. You can only call its super class method inside it. It should not be called manually elsewhere. + !#zh + 当附加到一个激活的节点上或者其节点第一次激活时候调用。onLoad 总是会在任何 start 方法调用前执行,这能用于安排脚本的初始化顺序。
+ 该方法为生命周期方法,父类未必会有实现。并且你只能在该方法内部调用父类的实现,不可在其它地方直接调用该方法。 + */ + protected onLoad(): void; + /** + !#en + Called before all scripts' update if the Component is enabled the first time. + Usually used to initialize some logic which need to be called after all components' `onload` methods called.
+ This is a lifecycle method. It may not be implemented in the super class. You can only call its super class method inside it. It should not be called manually elsewhere. + !#zh + 如果该组件第一次启用,则在所有组件的 update 之前调用。通常用于需要在所有组件的 onLoad 初始化完毕后执行的逻辑。
+ 该方法为生命周期方法,父类未必会有实现。并且你只能在该方法内部调用父类的实现,不可在其它地方直接调用该方法。 + */ + protected start(): void; + /** + !#en Called when this component becomes enabled and its node is active.
+ This is a lifecycle method. It may not be implemented in the super class. You can only call its super class method inside it. It should not be called manually elsewhere. + !#zh 当该组件被启用,并且它的节点也激活时。
+ 该方法为生命周期方法,父类未必会有实现。并且你只能在该方法内部调用父类的实现,不可在其它地方直接调用该方法。 + */ + protected onEnable(): void; + /** + !#en Called when this component becomes disabled or its node becomes inactive.
+ This is a lifecycle method. It may not be implemented in the super class. You can only call its super class method inside it. It should not be called manually elsewhere. + !#zh 当该组件被禁用或节点变为无效时调用。
+ 该方法为生命周期方法,父类未必会有实现。并且你只能在该方法内部调用父类的实现,不可在其它地方直接调用该方法。 + */ + protected onDisable(): void; + /** + !#en Called when this component will be destroyed.
+ This is a lifecycle method. It may not be implemented in the super class. You can only call its super class method inside it. It should not be called manually elsewhere. + !#zh 当该组件被销毁时调用
+ 该方法为生命周期方法,父类未必会有实现。并且你只能在该方法内部调用父类的实现,不可在其它地方直接调用该方法。 + */ + protected onDestroy(): void; + protected onFocusInEditor(): void; + protected onLostFocusInEditor(): void; + /** + !#en Called to initialize the component or node’s properties when adding the component the first time or when the Reset command is used. This function is only called in editor. + !#zh 用来初始化组件或节点的一些属性,当该组件被第一次添加到节点上或用户点击了它的 Reset 菜单时调用。这个回调只会在编辑器下调用。 + */ + protected resetInEditor(): void; + /** + !#en Adds a component class to the node. You can also add component to node by passing in the name of the script. + !#zh 向节点添加一个组件类,你还可以通过传入脚本的名称来添加组件。 + @param typeOrClassName the constructor or the class name of the component to add + + @example + ```js + var sprite = node.addComponent(cc.Sprite); + var test = node.addComponent("Test"); + ``` + */ + addComponent(type: {new(): T}): T; + addComponent(className: string): any; + /** + !#en + Returns the component of supplied type if the node has one attached, null if it doesn't.
+ You can also get component in the node by passing in the name of the script. + !#zh + 获取节点上指定类型的组件,如果节点有附加指定类型的组件,则返回,如果没有则为空。
+ 传入参数也可以是脚本的名称。 + @param typeOrClassName typeOrClassName + + @example + ```js + // get sprite component. + var sprite = node.getComponent(cc.Sprite); + // get custom test calss. + var test = node.getComponent("Test"); + ``` + */ + getComponent(type: {prototype: T}): T; + getComponent(className: string): any; + /** + !#en Returns all components of supplied Type in the node. + !#zh 返回节点上指定类型的所有组件。 + @param typeOrClassName typeOrClassName + + @example + ```js + var sprites = node.getComponents(cc.Sprite); + var tests = node.getComponents("Test"); + ``` + */ + getComponents(type: {prototype: T}): T[]; + getComponents(className: string): any[]; + /** + !#en Returns the component of supplied type in any of its children using depth first search. + !#zh 递归查找所有子节点中第一个匹配指定类型的组件。 + @param typeOrClassName typeOrClassName + + @example + ```js + var sprite = node.getComponentInChildren(cc.Sprite); + var Test = node.getComponentInChildren("Test"); + ``` + */ + getComponentInChildren(type: {prototype: T}): T; + getComponentInChildren(className: string): any; + /** + !#en Returns the components of supplied type in self or any of its children using depth first search. + !#zh 递归查找自身或所有子节点中指定类型的组件 + @param typeOrClassName typeOrClassName + + @example + ```js + var sprites = node.getComponentsInChildren(cc.Sprite); + var tests = node.getComponentsInChildren("Test"); + ``` + */ + getComponentsInChildren(type: {prototype: T}): T[]; + getComponentsInChildren(className: string): any[]; + /** + !#en + If the component's bounding box is different from the node's, you can implement this method to supply + a custom axis aligned bounding box (AABB), so the editor's scene view can perform hit test properly. + !#zh + 如果组件的包围盒与节点不同,您可以实现该方法以提供自定义的轴向对齐的包围盒(AABB), + 以便编辑器的场景视图可以正确地执行点选测试。 + @param out_rect the Rect to receive the bounding box + */ + _getLocalBounds(out_rect: Rect): void; + /** + !#en + onRestore is called after the user clicks the Reset item in the Inspector's context menu or performs + an undo operation on this component.
+
+ If the component contains the "internal state", short for "temporary member variables which not included
+ in its CCClass properties", then you may need to implement this function.
+
+ The editor will call the getset accessors of your component to record/restore the component's state
+ for undo/redo operation. However, in extreme cases, it may not works well. Then you should implement
+ this function to manually synchronize your component's "internal states" with its public properties.
+ Once you implement this function, all the getset accessors of your component will not be called when
+ the user performs an undo/redo operation. Which means that only the properties with default value
+ will be recorded or restored by editor.
+
+ Similarly, the editor may failed to reset your component correctly in extreme cases. Then if you need
+ to support the reset menu, you should manually synchronize your component's "internal states" with its
+ properties in this function. Once you implement this function, all the getset accessors of your component
+ will not be called during reset operation. Which means that only the properties with default value
+ will be reset by editor. + + This function is only called in editor mode. + !#zh + onRestore 是用户在检查器菜单点击 Reset 时,对此组件执行撤消操作后调用的。
+
+ 如果组件包含了“内部状态”(不在 CCClass 属性中定义的临时成员变量),那么你可能需要实现该方法。
+
+ 编辑器执行撤销/重做操作时,将调用组件的 get set 来录制和还原组件的状态。然而,在极端的情况下,它可能无法良好运作。
+ 那么你就应该实现这个方法,手动根据组件的属性同步“内部状态”。一旦你实现这个方法,当用户撤销或重做时,组件的所有 get set 都不会再被调用。这意味着仅仅指定了默认值的属性将被编辑器记录和还原。
+
+ 同样的,编辑可能无法在极端情况下正确地重置您的组件。如果你需要支持组件重置菜单,则需要在该方法中手工同步组件属性到“内部状态”。一旦你实现这个方法,组件的所有 get set 都不会在重置操作时被调用。这意味着仅仅指定了默认值的属性将被编辑器重置。 +
+ 此方法仅在编辑器下会被调用。 + */ + onRestore(): void; + /** + !#en + Schedules a custom selector.
+ If the selector is already scheduled, then the interval parameter will be updated without scheduling it again. + !#zh + 调度一个自定义的回调函数。
+ 如果回调函数已调度,那么将不会重复调度它,只会更新时间间隔参数。 + @param callback The callback function + @param interval Tick interval in seconds. 0 means tick every frame. + @param repeat The selector will be executed (repeat + 1) times, you can use cc.macro.REPEAT_FOREVER for tick infinitely. + @param delay The amount of time that the first tick will wait before execution. Unit: s + + @example + ```js + var timeCallback = function (dt) { + cc.log("time: " + dt); + } + this.schedule(timeCallback, 1); + ``` + */ + schedule(callback: Function, interval?: number, repeat?: number, delay?: number): void; + /** + !#en Schedules a callback function that runs only once, with a delay of 0 or larger. + !#zh 调度一个只运行一次的回调函数,可以指定 0 让回调函数在下一帧立即执行或者在一定的延时之后执行。 + @param callback A function wrapped as a selector + @param delay The amount of time that the first tick will wait before execution. Unit: s + + @example + ```js + var timeCallback = function (dt) { + cc.log("time: " + dt); + } + this.scheduleOnce(timeCallback, 2); + ``` + */ + scheduleOnce(callback: Function, delay?: number): void; + /** + !#en Unschedules a custom callback function. + !#zh 取消调度一个自定义的回调函数。 + @param callback_fn A function wrapped as a selector + + @example + ```js + this.unschedule(_callback); + ``` + */ + unschedule(callback_fn: Function): void; + /** + !#en + unschedule all scheduled callback functions: custom callback functions, and the 'update' callback function.
+ Actions are not affected by this method. + !#zh 取消调度所有已调度的回调函数:定制的回调函数以及 `update` 回调函数。动作不受此方法影响。 + + @example + ```js + this.unscheduleAllCallbacks(); + ``` + */ + unscheduleAllCallbacks(): void; + } + /** !#en The Label Component. + !#zh 文字标签组件 */ + export class Label extends RenderComponent { + /** !#en Content string of label. + !#zh 标签显示的文本内容。 */ + string: string; + /** !#en Horizontal Alignment of label. + !#zh 文本内容的水平对齐方式。 */ + horizontalAlign: Label.HorizontalAlign; + /** !#en Vertical Alignment of label. + !#zh 文本内容的垂直对齐方式。 */ + verticalAlign: Label.VerticalAlign; + /** !#en The actual rendering font size in shrink mode + !#zh SHRINK 模式下面文本实际渲染的字体大小 */ + actualFontSize: number; + /** !#en Font size of label. + !#zh 文本字体大小。 */ + fontSize: number; + /** !#en Font family of label, only take effect when useSystemFont property is true. + !#zh 文本字体名称, 只在 useSystemFont 属性为 true 的时候生效。 */ + fontFamily: string; + /** !#en Line Height of label. + !#zh 文本行高。 */ + lineHeight: number; + /** !#en Overflow of label. + !#zh 文字显示超出范围时的处理方式。 */ + overflow: Label.Overflow; + /** !#en Whether auto wrap label when string width is large than label width. + !#zh 是否自动换行。 */ + enableWrapText: boolean; + /** !#en The font of label. + !#zh 文本字体。 */ + font: Font; + /** !#en Whether use system font name or not. + !#zh 是否使用系统字体。 */ + useSystemFont: boolean; + /** !#en The spacing of the x axis between characters, only take Effect when using bitmap fonts. + !#zh 文字之间 x 轴的间距,仅在使用位图字体时生效。 */ + spacingX: number; + /** !#en The cache mode of label. This mode only supports system fonts. + !#zh 文本缓存模式, 该模式只支持系统字体。 */ + cacheMode: Label.CacheMode; + /** !#en Whether enable bold. + !#zh 是否启用黑体。 */ + enableBold: boolean; + /** !#en Whether enable italic. + !#zh 是否启用斜体。 */ + enableItalic: boolean; + /** !#en Whether enable underline. + !#zh 是否启用下划线。 */ + enableUnderline: boolean; + /** !#en The height of underline. + !#zh 下划线高度。 */ + underlineHeight: number; + /** + !#zh 需要保证当前场景中没有使用CHAR缓存的Label才可以清除,否则已渲染的文字没有重新绘制会不显示 + !#en It can be cleared that need to ensure there is not use the CHAR cache in the current scene. Otherwise, the rendered text will not be displayed without repainting. + */ + static clearCharCache(): void; + } + /** !#en Outline effect used to change the display, only for system fonts or TTF fonts + !#zh 描边效果组件,用于字体描边,只能用于系统字体 */ + export class LabelOutline extends Component { + /** !#en outline color + !#zh 改变描边的颜色 */ + color: Color; + /** !#en Change the outline width + !#zh 改变描边的宽度 */ + width: number; + } + /** !#en Shadow effect for Label component, only for system fonts or TTF fonts + !#zh 用于给 Label 组件添加阴影效果,只能用于系统字体或 ttf 字体 */ + export class LabelShadow extends Component { + /** !#en The shadow color + !#zh 阴影的颜色 */ + color: Color; + /** !#en Offset between font and shadow + !#zh 字体与阴影的偏移 */ + offset: Vec2; + /** !#en A non-negative float specifying the level of shadow blur + !#zh 阴影的模糊程度 */ + blur: number; + } + /** !#en + The Layout is a container component, use it to arrange child elements easily.
+ Note:
+ 1.Scaling and rotation of child nodes are not considered.
+ 2.After setting the Layout, the results need to be updated until the next frame, + unless you manually call {{#crossLink "Layout/updateLayout:method"}}{{/crossLink}}。 + !#zh + Layout 组件相当于一个容器,能自动对它的所有子节点进行统一排版。
+ 注意:
+ 1.不会考虑子节点的缩放和旋转。
+ 2.对 Layout 设置后结果需要到下一帧才会更新,除非你设置完以后手动调用 {{#crossLink "Layout/updateLayout:method"}}{{/crossLink}}。 */ + export class Layout extends Component { + /** !#en The layout type. + !#zh 布局类型 */ + type: Layout.Type; + /** !#en + The are three resize modes for Layout. + None, resize Container and resize children. + !#zh 缩放模式 */ + resizeMode: Layout.ResizeMode; + /** !#en The cell size for grid layout. + !#zh 每个格子的大小,只有布局类型为 GRID 的时候才有效。 */ + cellSize: Size; + /** !#en + The start axis for grid layout. If you choose horizontal, then children will layout horizontally at first, + and then break line on demand. Choose vertical if you want to layout vertically at first . + !#zh 起始轴方向类型,可进行水平和垂直布局排列,只有布局类型为 GRID 的时候才有效。 */ + startAxis: Layout.AxisDirection; + /** !#en The left padding of layout, it only effect the layout in one direction. + !#zh 容器内左边距,只会在一个布局方向上生效。 */ + paddingLeft: number; + /** !#en The right padding of layout, it only effect the layout in one direction. + !#zh 容器内右边距,只会在一个布局方向上生效。 */ + paddingRight: number; + /** !#en The top padding of layout, it only effect the layout in one direction. + !#zh 容器内上边距,只会在一个布局方向上生效。 */ + paddingTop: number; + /** !#en The bottom padding of layout, it only effect the layout in one direction. + !#zh 容器内下边距,只会在一个布局方向上生效。 */ + paddingBottom: number; + /** !#en The distance in x-axis between each element in layout. + !#zh 子节点之间的水平间距。 */ + spacingX: number; + /** !#en The distance in y-axis between each element in layout. + !#zh 子节点之间的垂直间距。 */ + spacingY: number; + /** !#en + Only take effect in Vertical layout mode. + This option changes the start element's positioning. + !#zh 垂直排列子节点的方向。 */ + verticalDirection: Layout.VerticalDirection; + /** !#en + Only take effect in Horizontal layout mode. + This option changes the start element's positioning. + !#zh 水平排列子节点的方向。 */ + horizontalDirection: Layout.HorizontalDirection; + /** !#en Adjust the layout if the children scaled. + !#zh 子节点缩放比例是否影响布局。 */ + affectedByScale: boolean; + /** + !#en Perform the layout update + !#zh 立即执行更新布局 + + @example + ```js + layout.type = cc.Layout.HORIZONTAL; + layout.node.addChild(childNode); + cc.log(childNode.x); // not yet changed + layout.updateLayout(); + cc.log(childNode.x); // changed + ``` + */ + updateLayout(): void; + } + /** !#en The Mask Component + !#zh 遮罩组件 */ + export class Mask extends RenderComponent { + /** !#en The mask type. + !#zh 遮罩类型 */ + type: Mask.Type; + /** !#en The mask image + !#zh 遮罩所需要的贴图 */ + spriteFrame: SpriteFrame; + /** !#en + The alpha threshold.(Not supported Canvas Mode)
+ The content is drawn only where the stencil have pixel with alpha greater than the alphaThreshold.
+ Should be a float between 0 and 1.
+ This default to 0.1. + When it's set to 1, the stencil will discard all pixels, nothing will be shown. + !#zh + Alpha 阈值(不支持 Canvas 模式)
+ 只有当模板的像素的 alpha 大于等于 alphaThreshold 时,才会绘制内容。
+ 该数值 0 ~ 1 之间的浮点数,默认值为 0.1 + 当被设置为 1 时,会丢弃所有蒙版像素,所以不会显示任何内容 */ + alphaThreshold: number; + /** !#en Reverse mask (Not supported Canvas Mode) + !#zh 反向遮罩(不支持 Canvas 模式) */ + inverted: boolean; + /** TODO: remove segments, not supported by graphics + !#en The segements for ellipse mask. + !#zh 椭圆遮罩的曲线细分数 */ + segements: number; + } + /** !#en + cc.MotionStreak manages a Ribbon based on it's motion in absolute space.
+ You construct it with a fadeTime, minimum segment size, texture path, texture
+ length and color. The fadeTime controls how long it takes each vertex in
+ the streak to fade out, the minimum segment size it how many pixels the
+ streak will move before adding a new ribbon segment, and the texture
+ length is the how many pixels the texture is stretched across. The texture
+ is vertically aligned along the streak segment. + !#zh 运动轨迹,用于游戏对象的运动轨迹上实现拖尾渐隐效果。 */ + export class MotionStreak extends Component implements BlendFunc { + /** !#en + !#zh 在编辑器模式下预览拖尾效果。 */ + preview: boolean; + /** !#en The fade time to fade. + !#zh 拖尾的渐隐时间,以秒为单位。 */ + fadeTime: number; + /** !#en The minimum segment size. + !#zh 拖尾之间最小距离。 */ + minSeg: number; + /** !#en The stroke's width. + !#zh 拖尾的宽度。 */ + stroke: number; + /** !#en The texture of the MotionStreak. + !#zh 拖尾的贴图。 */ + texture: Texture2D; + /** !#en The color of the MotionStreak. + !#zh 拖尾的颜色 */ + color: Color; + /** !#en The fast Mode. + !#zh 是否启用了快速模式。当启用快速模式,新的点会被更快地添加,但精度较低。 */ + fastMode: boolean; + /** + !#en Remove all living segments of the ribbon. + !#zh 删除当前所有的拖尾片段。 + + @example + ```js + // Remove all living segments of the ribbon. + myMotionStreak.reset(); + ``` + */ + reset(): void; + /** !#en specify the source Blend Factor, this will generate a custom material object, please pay attention to the memory cost. + !#zh 指定原图的混合模式,这会克隆一个新的材质对象,注意这带来的开销 */ + srcBlendFactor: macro.BlendFactor; + /** !#en specify the destination Blend Factor. + !#zh 指定目标的混合模式 */ + dstBlendFactor: macro.BlendFactor; + } + /** !#en The PageView control + !#zh 页面视图组件 */ + export class PageView extends ScrollView { + /** !#en Specify the size type of each page in PageView. + !#zh 页面视图中每个页面大小类型 */ + sizeMode: PageView.SizeMode; + /** !#en The page view direction + !#zh 页面视图滚动类型 */ + direction: PageView.Direction; + /** !#en + The scroll threshold value, when drag exceeds this value, + release the next page will automatically scroll, less than the restore + !#zh 滚动临界值,默认单位百分比,当拖拽超出该数值时,松开会自动滚动下一页,小于时则还原。 */ + scrollThreshold: number; + /** !#en + Auto page turning velocity threshold. When users swipe the PageView quickly, + it will calculate a velocity based on the scroll distance and time, + if the calculated velocity is larger than the threshold, then it will trigger page turning. + !#zh + 快速滑动翻页临界值。 + 当用户快速滑动时,会根据滑动开始和结束的距离与时间计算出一个速度值, + 该值与此临界值相比较,如果大于临界值,则进行自动翻页。 */ + autoPageTurningThreshold: number; + /** !#en Change the PageTurning event timing of PageView. + !#zh 设置 PageView PageTurning 事件的发送时机。 */ + pageTurningEventTiming: number; + /** !#en The Page View Indicator + !#zh 页面视图指示器组件 */ + indicator: PageViewIndicator; + /** !#en The time required to turn over a page. unit: second + !#zh 每个页面翻页时所需时间。单位:秒 */ + pageTurningSpeed: number; + /** !#en PageView events callback + !#zh 滚动视图的事件回调函数 */ + pageEvents: Component.EventHandler[]; + /** + !#en Returns current page index + !#zh 返回当前页面索引 + */ + getCurrentPageIndex(): number; + /** + !#en Set current page index + !#zh 设置当前页面索引 + @param index index + */ + setCurrentPageIndex(index: number): void; + /** + !#en Returns all pages of pageview + !#zh 返回视图中的所有页面 + */ + getPages(): Node[]; + /** + !#en At the end of the current page view to insert a new view + !#zh 在当前页面视图的尾部插入一个新视图 + @param page page + */ + addPage(page: Node): void; + /** + !#en Inserts a page in the specified location + !#zh 将页面插入指定位置中 + @param page page + @param index index + */ + insertPage(page: Node, index: number): void; + /** + !#en Removes a page from PageView. + !#zh 移除指定页面 + @param page page + */ + removePage(page: Node): void; + /** + !#en Removes a page at index of PageView. + !#zh 移除指定下标的页面 + @param index index + */ + removePageAtIndex(index: number): void; + /** + !#en Removes all pages from PageView + !#zh 移除所有页面 + */ + removeAllPages(): void; + /** + !#en Scroll PageView to index. + !#zh 滚动到指定页面 + @param idx index of page. + @param timeInSecond scrolling time + */ + scrollToPage(idx: number, timeInSecond: number): void; + } + /** !#en + Visual indicator of progress in some operation. + Displays a bar to the user representing how far the operation has progressed. + !#zh + 进度条组件,可用于显示加载资源时的进度。 */ + export class ProgressBar extends Component { + /** !#en The targeted Sprite which will be changed progressively. + !#zh 用来显示进度条比例的 Sprite 对象。 */ + barSprite: Sprite; + /** !#en The progress mode, there are two modes supported now: horizontal and vertical. + !#zh 进度条的模式 */ + mode: ProgressBar.Mode; + /** !#en The total width or height of the bar sprite. + !#zh 进度条实际的总长度 */ + totalLength: number; + /** !#en The current progress of the bar sprite. The valid value is between 0-1. + !#zh 当前进度值,该数值的区间是 0-1 之间。 */ + progress: number; + /** !#en Whether reverse the progress direction of the bar sprite. + !#zh 进度条是否进行反方向变化。 */ + reverse: boolean; + } + /** !#en The Page View Indicator Component + !#zh 页面视图每页标记组件 */ + export class PageViewIndicator extends Component { + /** !#en The spriteFrame for each element. + !#zh 每个页面标记显示的图片 */ + spriteFrame: SpriteFrame; + /** !#en The location direction of PageViewIndicator. + !#zh 页面标记摆放方向 */ + direction: PageViewIndicator.Direction; + /** !#en The cellSize for each element. + !#zh 每个页面标记的大小 */ + cellSize: Size; + /** !#en The distance between each element. + !#zh 每个页面标记之间的边距 */ + spacing: number; + /** + !#en Set Page View + !#zh 设置页面视图 + @param target target + */ + setPageView(target: PageView): void; + } + /** !#en + Base class for components which supports rendering features. + !#zh + 所有支持渲染的组件的基类 */ + export class RenderComponent extends Component { + /** !#en The materials used by this render component. + !#zh 渲染组件使用的材质。 */ + sharedMaterials: Material[]; + /** + !#en Get the material by index. + !#zh 根据指定索引获取材质 + @param index index + */ + getMaterial(index: number): MaterialVariant; + /** + !#en Gets all the materials. + !#zh 获取所有材质。 + */ + getMaterials(): MaterialVariant[]; + /** + !#en Set the material by index. + !#zh 根据指定索引设置材质 + @param index index + @param material material + */ + setMaterial(index: number, material: Material): Material; + } + /** !#en The RichText Component. + !#zh 富文本组件 */ + export class RichText extends Component { + /** !#en Content string of RichText. + !#zh 富文本显示的文本内容。 */ + string: string; + /** !#en Horizontal Alignment of each line in RichText. + !#zh 文本内容的水平对齐方式。 */ + horizontalAlign: macro.TextAlignment; + /** !#en Font size of RichText. + !#zh 富文本字体大小。 */ + fontSize: number; + /** !#en Custom System font of RichText + !#zh 富文本定制系统字体 */ + fontFamily: string; + /** !#en Custom TTF font of RichText + !#zh 富文本定制字体 */ + font: TTFFont; + /** !#en Whether use system font name or not. + !#zh 是否使用系统字体。 */ + useSystemFont: boolean; + /** !#en The cache mode of label. This mode only supports system fonts. + !#zh 文本缓存模式, 该模式只支持系统字体。 */ + cacheMode: Label.CacheMode; + /** !#en The maximize width of the RichText + !#zh 富文本的最大宽度 */ + maxWidth: number; + /** !#en Line Height of RichText. + !#zh 富文本行高。 */ + lineHeight: number; + /** !#en The image atlas for the img tag. For each src value in the img tag, there should be a valid spriteFrame in the image atlas. + !#zh 对于 img 标签里面的 src 属性名称,都需要在 imageAtlas 里面找到一个有效的 spriteFrame,否则 img tag 会判定为无效。 */ + imageAtlas: SpriteAtlas; + /** !#en + Once checked, the RichText will block all input events (mouse and touch) within + the bounding box of the node, preventing the input from penetrating into the underlying node. + !#zh + 选中此选项后,RichText 将阻止节点边界框中的所有输入事件(鼠标和触摸),从而防止输入事件穿透到底层节点。 */ + handleTouchEvent: boolean; + } + /** !#en + This component is used to adjust the layout of current node to respect the safe area of a notched mobile device such as the iPhone X. + It is typically used for the top node of the UI interaction area. For specific usage, refer to the official [example-cases/02_ui/16_safeArea/SafeArea.fire](https://github.com/cocos-creator/example-cases). + + The concept of safe area is to give you a fixed inner rectangle in which you can safely display content that will be drawn on screen. + You are strongly discouraged from providing controls outside of this area. But your screen background could embellish edges. + + This component internally uses the API `cc.sys.getSafeAreaRect();` to obtain the safe area of the current iOS or Android device, + and implements the adaptation by using the Widget component and set anchor. + + !#zh + 该组件会将所在节点的布局适配到 iPhone X 等异形屏手机的安全区域内,通常用于 UI 交互区域的顶层节点,具体用法可参考官方范例 [example-cases/02_ui/16_safeArea/SafeArea.fire](https://github.com/cocos-creator/example-cases)。 + + 该组件内部通过 API `cc.sys.getSafeAreaRect();` 获取到当前 iOS 或 Android 设备的安全区域,并通过 Widget 组件实现适配。 */ + export class SafeArea extends Component { + /** + !#en Adapt to safe area + !#zh 立即适配安全区域 + + @example + ```js + let safeArea = this.node.addComponent(cc.SafeArea); + safeArea.updateArea(); + ``` + */ + updateArea(): void; + } + /** !#en + The Scrollbar control allows the user to scroll an image or other view that is too large to see completely + !#zh 滚动条组件 */ + export class Scrollbar extends Component { + /** !#en The "handle" part of the scrollbar. + !#zh 作为当前滚动区域位置显示的滑块 Sprite。 */ + handle: Sprite; + /** !#en The direction of scrollbar. + !#zh ScrollBar 的滚动方向。 */ + direction: Scrollbar.Direction; + /** !#en Whether enable auto hide or not. + !#zh 是否在没有滚动动作时自动隐藏 ScrollBar。 */ + enableAutoHide: boolean; + /** !#en + The time to hide scrollbar when scroll finished. + Note: This value is only useful when enableAutoHide is true. + !#zh + 没有滚动动作后经过多久会自动隐藏。 + 注意:只要当 “enableAutoHide” 为 true 时,才有效。 */ + autoHideTime: number; + } + /** !#en + Layout container for a view hierarchy that can be scrolled by the user, + allowing it to be larger than the physical display. + + !#zh + 滚动视图组件 */ + export class ScrollView extends Component { + /** !#en This is a reference to the UI element to be scrolled. + !#zh 可滚动展示内容的节点。 */ + content: Node; + /** !#en Enable horizontal scroll. + !#zh 是否开启水平滚动。 */ + horizontal: boolean; + /** !#en Enable vertical scroll. + !#zh 是否开启垂直滚动。 */ + vertical: boolean; + /** !#en When inertia is set, the content will continue to move when touch ended. + !#zh 是否开启滚动惯性。 */ + inertia: boolean; + /** !#en + It determines how quickly the content stop moving. A value of 1 will stop the movement immediately. + A value of 0 will never stop the movement until it reaches to the boundary of scrollview. + !#zh + 开启惯性后,在用户停止触摸后滚动多快停止,0表示永不停止,1表示立刻停止。 */ + brake: number; + /** !#en When elastic is set, the content will be bounce back when move out of boundary. + !#zh 是否允许滚动内容超过边界,并在停止触摸后回弹。 */ + elastic: boolean; + /** !#en The elapse time of bouncing back. A value of 0 will bounce back immediately. + !#zh 回弹持续的时间,0 表示将立即反弹。 */ + bounceDuration: number; + /** !#en The horizontal scrollbar reference. + !#zh 水平滚动的 ScrollBar。 */ + horizontalScrollBar: Scrollbar; + /** !#en The vertical scrollbar reference. + !#zh 垂直滚动的 ScrollBar。 */ + verticalScrollBar: Scrollbar; + /** !#en Scrollview events callback + !#zh 滚动视图的事件回调函数 */ + scrollEvents: Component.EventHandler[]; + /** !#en If cancelInnerEvents is set to true, the scroll behavior will cancel touch events on inner content nodes + It's set to true by default. + !#zh 如果这个属性被设置为 true,那么滚动行为会取消子节点上注册的触摸事件,默认被设置为 true。 + 注意,子节点上的 touchstart 事件仍然会触发,触点移动距离非常短的情况下 touchmove 和 touchend 也不会受影响。 */ + cancelInnerEvents: boolean; + /** + !#en Scroll the content to the bottom boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图底部。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the bottom boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the bottom of the view. + scrollView.scrollToBottom(0.1); + ``` + */ + scrollToBottom(timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the top boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图顶部。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the top boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the top of the view. + scrollView.scrollToTop(0.1); + ``` + */ + scrollToTop(timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the left boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图左边。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the left boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the left of the view. + scrollView.scrollToLeft(0.1); + ``` + */ + scrollToLeft(timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the right boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图右边。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the right boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the right of the view. + scrollView.scrollToRight(0.1); + ``` + */ + scrollToRight(timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the top left boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图左上角。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the top left boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the upper left corner of the view. + scrollView.scrollToTopLeft(0.1); + ``` + */ + scrollToTopLeft(timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the top right boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图右上角。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the top right boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the top right corner of the view. + scrollView.scrollToTopRight(0.1); + ``` + */ + scrollToTopRight(timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the bottom left boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图左下角。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the bottom left boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the lower left corner of the view. + scrollView.scrollToBottomLeft(0.1); + ``` + */ + scrollToBottomLeft(timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the bottom right boundary of ScrollView. + !#zh 视图内容将在规定时间内滚动到视图右下角。 + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the bottom right boundary immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to the lower right corner of the view. + scrollView.scrollToBottomRight(0.1); + ``` + */ + scrollToBottomRight(timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll with an offset related to the ScrollView's top left origin, if timeInSecond is omitted, then it will jump to the + specific offset immediately. + !#zh 视图内容在规定时间内将滚动到 ScrollView 相对左上角原点的偏移位置, 如果 timeInSecond参数不传,则立即滚动到指定偏移位置。 + @param offset A Vec2, the value of which each axis between 0 and maxScrollOffset + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the specific offset of ScrollView immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to middle position in 0.1 second in x-axis + let maxScrollOffset = this.getMaxScrollOffset(); + scrollView.scrollToOffset(cc.v2(maxScrollOffset.x / 2, 0), 0.1); + ``` + */ + scrollToOffset(offset: Vec2, timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Get the positive offset value corresponds to the content's top left boundary. + !#zh 获取滚动视图相对于左上角原点的当前滚动偏移 + */ + getScrollOffset(): Vec2; + /** + !#en Get the maximize available scroll offset + !#zh 获取滚动视图最大可以滚动的偏移量 + */ + getMaxScrollOffset(): Vec2; + /** + !#en Scroll the content to the horizontal percent position of ScrollView. + !#zh 视图内容在规定时间内将滚动到 ScrollView 水平方向的百分比位置上。 + @param percent A value between 0 and 1. + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the horizontal percent position of ScrollView immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Scroll to middle position. + scrollView.scrollToBottomRight(0.5, 0.1); + ``` + */ + scrollToPercentHorizontal(percent: number, timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the percent position of ScrollView in any direction. + !#zh 视图内容在规定时间内进行垂直方向和水平方向的滚动,并且滚动到指定百分比位置上。 + @param anchor A point which will be clamp between cc.v2(0,0) and cc.v2(1,1). + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the percent position of ScrollView immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + + @example + ```js + // Vertical scroll to the bottom of the view. + scrollView.scrollTo(cc.v2(0, 1), 0.1); + + // Horizontal scroll to view right. + scrollView.scrollTo(cc.v2(1, 0), 0.1); + ``` + */ + scrollTo(anchor: Vec2, timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Scroll the content to the vertical percent position of ScrollView. + !#zh 视图内容在规定时间内滚动到 ScrollView 垂直方向的百分比位置上。 + @param percent A value between 0 and 1. + @param timeInSecond Scroll time in second, if you don't pass timeInSecond, + the content will jump to the vertical percent position of ScrollView immediately. + @param attenuated Whether the scroll acceleration attenuated, default is true. + // Scroll to middle position. + scrollView.scrollToPercentVertical(0.5, 0.1); + */ + scrollToPercentVertical(percent: number, timeInSecond?: number, attenuated?: boolean): void; + /** + !#en Stop auto scroll immediately + !#zh 停止自动滚动, 调用此 API 可以让 Scrollview 立即停止滚动 + */ + stopAutoScroll(): void; + /** + !#en Modify the content position. + !#zh 设置当前视图内容的坐标点。 + @param position The position in content's parent space. + */ + setContentPosition(position: Vec2): void; + /** + !#en Query the content's position in its parent space. + !#zh 获取当前视图内容的坐标点。 + */ + getContentPosition(): Vec2; + /** + !#en Query whether the user is currently dragging the ScrollView to scroll it + !#zh 用户是否在拖拽当前滚动视图 + */ + isScrolling(): boolean; + /** + !#en Query whether the ScrollView is currently scrolling because of a bounceback or inertia slowdown. + !#zh 当前滚动视图是否在惯性滚动 + */ + isAutoScrolling(): boolean; + } + /** !#en The Slider Control + !#zh 滑动器组件 */ + export class Slider extends Component { + /** !#en The "handle" part of the slider + !#zh 滑动器滑块按钮部件 */ + handle: Button; + /** !#en The slider direction + !#zh 滑动器方向 */ + direction: Slider.Direction; + /** !#en The current progress of the slider. The valid value is between 0-1 + !#zh 当前进度值,该数值的区间是 0-1 之间 */ + progress: number; + /** !#en The slider slide events' callback array + !#zh 滑动器组件滑动事件回调函数数组 */ + slideEvents: Component.EventHandler[]; + } + /** !#en Renders a sprite in the scene. + !#zh 该组件用于在场景中渲染精灵。 */ + export class Sprite extends RenderComponent implements BlendFunc { + /** !#en The sprite frame of the sprite. + !#zh 精灵的精灵帧 */ + spriteFrame: SpriteFrame; + /** !#en The sprite render type. + !#zh 精灵渲染类型 */ + type: Sprite.Type; + /** !#en + The fill type, This will only have any effect if the "type" is set to “cc.Sprite.Type.FILLED”. + !#zh + 精灵填充类型,仅渲染类型设置为 cc.Sprite.Type.FILLED 时有效。 */ + fillType: Sprite.FillType; + /** !#en + The fill Center, This will only have any effect if the "type" is set to “cc.Sprite.Type.FILLED”. + !#zh + 填充中心点,仅渲染类型设置为 cc.Sprite.Type.FILLED 时有效。 */ + fillCenter: Vec2; + /** !#en + The fill Start, This will only have any effect if the "type" is set to “cc.Sprite.Type.FILLED”. + !#zh + 填充起始点,仅渲染类型设置为 cc.Sprite.Type.FILLED 时有效。 */ + fillStart: number; + /** !#en + The fill Range, This will only have any effect if the "type" is set to “cc.Sprite.Type.FILLED”. + !#zh + 填充范围,仅渲染类型设置为 cc.Sprite.Type.FILLED 时有效。 */ + fillRange: number; + /** !#en specify the frame is trimmed or not. + !#zh 是否使用裁剪模式 */ + trim: boolean; + /** !#en specify the size tracing mode. + !#zh 精灵尺寸调整模式 */ + sizeMode: Sprite.SizeMode; + /** + Change the state of sprite. + @param state NORMAL or GRAY State. + */ + setState(state: Sprite.State): void; + /** + Gets the current state. + */ + getState(): Sprite.State; + /** !#en specify the source Blend Factor, this will generate a custom material object, please pay attention to the memory cost. + !#zh 指定原图的混合模式,这会克隆一个新的材质对象,注意这带来的开销 */ + srcBlendFactor: macro.BlendFactor; + /** !#en specify the destination Blend Factor. + !#zh 指定目标的混合模式 */ + dstBlendFactor: macro.BlendFactor; + } + /** !#en The toggle component is a CheckBox, when it used together with a ToggleGroup, it + could be treated as a RadioButton. + !#zh Toggle 是一个 CheckBox,当它和 ToggleGroup 一起使用的时候,可以变成 RadioButton。 */ + export class Toggle extends Button implements GraySpriteState { + /** !#en When this value is true, the check mark component will be enabled, otherwise + the check mark component will be disabled. + !#zh 如果这个设置为 true,则 check mark 组件会处于 enabled 状态,否则处于 disabled 状态。 */ + isChecked: boolean; + /** !#en The toggle group which the toggle belongs to, when it is null, the toggle is a CheckBox. + Otherwise, the toggle is a RadioButton. + !#zh Toggle 所属的 ToggleGroup,这个属性是可选的。如果这个属性为 null,则 Toggle 是一个 CheckBox, + 否则,Toggle 是一个 RadioButton。 */ + toggleGroup: ToggleGroup; + /** !#en The image used for the checkmark. + !#zh Toggle 处于选中状态时显示的图片 */ + checkMark: Sprite; + /** !#en If Toggle is clicked, it will trigger event's handler + !#zh Toggle 按钮的点击事件列表。 */ + checkEvents: Component.EventHandler[]; + /** + !#en Make the toggle button checked. + !#zh 使 toggle 按钮处于选中状态 + */ + check(): void; + /** + !#en Make the toggle button unchecked. + !#zh 使 toggle 按钮处于未选中状态 + */ + uncheck(): void; + /** !#en The normal material. + !#zh 正常状态的材质。 */ + normalMaterial: Material; + /** !#en The gray material. + !#zh 置灰状态的材质。 */ + grayMaterial: Material; + } + /** !#en ToggleContainer is not a visiable UI component but a way to modify the behavior of a set of Toggles.
+ Toggles that belong to the same group could only have one of them to be switched on at a time.
+ Note: All the first layer child node containing the toggle component will auto be added to the container + !#zh ToggleContainer 不是一个可见的 UI 组件,它可以用来修改一组 Toggle 组件的行为。
+ 当一组 Toggle 属于同一个 ToggleContainer 的时候,任何时候只能有一个 Toggle 处于选中状态。
+ 注意:所有包含 Toggle 组件的一级子节点都会自动被添加到该容器中 */ + export class ToggleContainer extends Component { + /** !#en If this setting is true, a toggle could be switched off and on when pressed. + If it is false, it will make sure there is always only one toggle could be switched on + and the already switched on toggle can't be switched off. + !#zh 如果这个设置为 true, 那么 toggle 按钮在被点击的时候可以反复地被选中和未选中。 */ + allowSwitchOff: boolean; + /** !#en If Toggle is clicked, it will trigger event's handler + !#zh Toggle 按钮的点击事件列表。 */ + checkEvents: Component.EventHandler[]; + /** !#en Read only property, return the toggle items array reference managed by ToggleContainer. + !#zh 只读属性,返回 ToggleContainer 管理的 toggle 数组引用 */ + toggleItems: Toggle[]; + } + /** !#en ToggleGroup is not a visiable UI component but a way to modify the behavior of a set of Toggles. + Toggles that belong to the same group could only have one of them to be switched on at a time. + !#zh ToggleGroup 不是一个可见的 UI 组件,它可以用来修改一组 Toggle 组件的行为。当一组 Toggle 属于同一个 ToggleGroup 的时候, + 任何时候只能有一个 Toggle 处于选中状态。 */ + export class ToggleGroup extends Component { + /** !#en If this setting is true, a toggle could be switched off and on when pressed. + If it is false, it will make sure there is always only one toggle could be switched on + and the already switched on toggle can't be switched off. + !#zh 如果这个设置为 true, 那么 toggle 按钮在被点击的时候可以反复地被选中和未选中。 */ + allowSwitchOff: boolean; + /** !#en Read only property, return the toggle items array reference managed by toggleGroup. + !#zh 只读属性,返回 toggleGroup 管理的 toggle 数组引用 */ + toggleItems: any[]; + } + /** !#en + Handling touch events in a ViewGroup takes special care, + because it's common for a ViewGroup to have children that are targets for different touch events than the ViewGroup itself. + To make sure that each view correctly receives the touch events intended for it, + ViewGroup should register capture phase event and handle the event propagation properly. + Please refer to Scrollview for more information. + + !#zh + ViewGroup的事件处理比较特殊,因为 ViewGroup 里面的子节点关心的事件跟 ViewGroup 本身可能不一样。 + 为了让子节点能够正确地处理事件,ViewGroup 需要注册 capture 阶段的事件,并且合理地处理 ViewGroup 之间的事件传递。 + 请参考 ScrollView 的实现来获取更多信息。 */ + export class ViewGroup extends Component { + } + /** !#en + Stores and manipulate the anchoring based on its parent. + Widget are used for GUI but can also be used for other things. + Widget will adjust current node's position and size automatically, but the results after adjustment can not be obtained until the next frame unless you call {{#crossLink "Widget/updateAlignment:method"}}{{/crossLink}} manually. + !#zh + Widget 组件,用于设置和适配其相对于父节点的边距,Widget 通常被用于 UI 界面,也可以用于其他地方。 + Widget 会自动调整当前节点的坐标和宽高,不过目前调整后的结果要到下一帧才能在脚本里获取到,除非你先手动调用 {{#crossLink "Widget/updateAlignment:method"}}{{/crossLink}}。 */ + export class Widget extends Component { + /** !#en Specifies an alignment target that can only be one of the parent nodes of the current node. + The default value is null, and when null, indicates the current parent. + !#zh 指定一个对齐目标,只能是当前节点的其中一个父节点,默认为空,为空时表示当前父节点。 */ + target: Node; + /** !#en Whether to align the top. + !#zh 是否对齐上边。 */ + isAlignTop: boolean; + /** !#en + Vertically aligns the midpoint, This will open the other vertical alignment options cancel. + !#zh + 是否垂直方向对齐中点,开启此项会将垂直方向其他对齐选项取消。 */ + isAlignVerticalCenter: boolean; + /** !#en Whether to align the bottom. + !#zh 是否对齐下边。 */ + isAlignBottom: boolean; + /** !#en Whether to align the left. + !#zh 是否对齐左边 */ + isAlignLeft: boolean; + /** !#en + Horizontal aligns the midpoint. This will open the other horizontal alignment options canceled. + !#zh + 是否水平方向对齐中点,开启此选项会将水平方向其他对齐选项取消。 */ + isAlignHorizontalCenter: boolean; + /** !#en Whether to align the right. + !#zh 是否对齐右边。 */ + isAlignRight: boolean; + /** !#en + Whether the stretched horizontally, when enable the left and right alignment will be stretched horizontally, + the width setting is invalid (read only). + !#zh + 当前是否水平拉伸。当同时启用左右对齐时,节点将会被水平拉伸,此时节点的宽度只读。 */ + isStretchWidth: boolean; + /** !#en + Whether the stretched vertically, when enable the left and right alignment will be stretched vertically, + then height setting is invalid (read only) + !#zh + 当前是否垂直拉伸。当同时启用上下对齐时,节点将会被垂直拉伸,此时节点的高度只读。 */ + isStretchHeight: boolean; + /** !#en + The margins between the top of this node and the top of parent node, + the value can be negative, Only available in 'isAlignTop' open. + !#zh + 本节点顶边和父节点顶边的距离,可填写负值,只有在 isAlignTop 开启时才有作用。 */ + top: number; + /** !#en + The margins between the bottom of this node and the bottom of parent node, + the value can be negative, Only available in 'isAlignBottom' open. + !#zh + 本节点底边和父节点底边的距离,可填写负值,只有在 isAlignBottom 开启时才有作用。 */ + bottom: number; + /** !#en + The margins between the left of this node and the left of parent node, + the value can be negative, Only available in 'isAlignLeft' open. + !#zh + 本节点左边和父节点左边的距离,可填写负值,只有在 isAlignLeft 开启时才有作用。 */ + left: number; + /** !#en + The margins between the right of this node and the right of parent node, + the value can be negative, Only available in 'isAlignRight' open. + !#zh + 本节点右边和父节点右边的距离,可填写负值,只有在 isAlignRight 开启时才有作用。 */ + right: number; + /** !#en + Horizontal aligns the midpoint offset value, + the value can be negative, Only available in 'isAlignHorizontalCenter' open. + !#zh 水平居中的偏移值,可填写负值,只有在 isAlignHorizontalCenter 开启时才有作用。 */ + horizontalCenter: number; + /** !#en + Vertical aligns the midpoint offset value, + the value can be negative, Only available in 'isAlignVerticalCenter' open. + !#zh 垂直居中的偏移值,可填写负值,只有在 isAlignVerticalCenter 开启时才有作用。 */ + verticalCenter: number; + /** !#en If true, horizontalCenter is pixel margin, otherwise is percentage (0 - 1) margin. + !#zh 如果为 true,"horizontalCenter" 将会以像素作为偏移值,反之为百分比(0 到 1)。 */ + isAbsoluteHorizontalCenter: boolean; + /** !#en If true, verticalCenter is pixel margin, otherwise is percentage (0 - 1) margin. + !#zh 如果为 true,"verticalCenter" 将会以像素作为偏移值,反之为百分比(0 到 1)。 */ + isAbsoluteVerticalCenter: boolean; + /** !#en + If true, top is pixel margin, otherwise is percentage (0 - 1) margin relative to the parent's height. + !#zh + 如果为 true,"top" 将会以像素作为边距,否则将会以相对父物体高度的百分比(0 到 1)作为边距。 */ + isAbsoluteTop: boolean; + /** !#en + If true, bottom is pixel margin, otherwise is percentage (0 - 1) margin relative to the parent's height. + !#zh + 如果为 true,"bottom" 将会以像素作为边距,否则将会以相对父物体高度的百分比(0 到 1)作为边距。 */ + isAbsoluteBottom: boolean; + /** !#en + If true, left is pixel margin, otherwise is percentage (0 - 1) margin relative to the parent's width. + !#zh + 如果为 true,"left" 将会以像素作为边距,否则将会以相对父物体宽度的百分比(0 到 1)作为边距。 */ + isAbsoluteLeft: boolean; + /** !#en + If true, right is pixel margin, otherwise is percentage (0 - 1) margin relative to the parent's width. + !#zh + 如果为 true,"right" 将会以像素作为边距,否则将会以相对父物体宽度的百分比(0 到 1)作为边距。 */ + isAbsoluteRight: boolean; + /** !#en Specifies the alignment mode of the Widget, which determines when the widget should refresh. + !#zh 指定 Widget 的对齐模式,用于决定 Widget 应该何时刷新。 */ + alignMode: Widget.AlignMode; + /** + !#en + Immediately perform the widget alignment. You need to manually call this method only if + you need to get the latest results after the alignment before the end of current frame. + !#zh + 立刻执行 widget 对齐操作。这个接口一般不需要手工调用。 + 只有当你需要在当前帧结束前获得 widget 对齐后的最新结果时才需要手动调用这个方法。 + + @example + ```js + widget.top = 10; // change top margin + cc.log(widget.node.y); // not yet changed + widget.updateAlignment(); + cc.log(widget.node.y); // changed + ``` + */ + updateAlignment(): void; + /** !#en + When turned on, it will only be aligned once at the end of the onEnable frame, + then immediately disables the current component. + This will allow the script or animation to continue controlling the current node. + Note: It will still be aligned at the frame when onEnable is called. + !#zh + 开启后仅会在 onEnable 的当帧结束时对齐一次,然后立刻禁用当前组件。 + 这样便于脚本或动画继续控制当前节点。 + 注意:onEnable 时所在的那一帧仍然会进行对齐。 */ + isAlignOnce: boolean; + } + /** !#en SubContextView is a view component which controls open data context viewport in minigame platform.
+ The component's node size decide the viewport of the sub context content in main context, + the entire sub context texture will be scaled to the node's bounding box area.
+ This component provides multiple important features:
+ 1. Sub context could use its own resolution size and policy.
+ 2. Sub context could be minized to smallest size it needed.
+ 3. Resolution of sub context content could be increased.
+ 4. User touch input is transformed to the correct viewport.
+ 5. Texture update is handled by this component. User don't need to worry.
+ One important thing to be noted, whenever the node's bounding box change, + !#zh SubContextView 可以用来控制小游戏平台开放数据域在主域中的视窗的位置。
+ 这个组件的节点尺寸决定了开放数据域内容在主域中的尺寸,整个开放数据域会被缩放到节点的包围盒范围内。
+ 在这个组件的控制下,用户可以更自由得控制开放数据域:
+ 1. 子域中可以使用独立的设计分辨率和适配模式
+ 2. 子域区域尺寸可以缩小到只容纳内容即可
+ 3. 子域的分辨率也可以被放大,以便获得更清晰的显示效果
+ 4. 用户输入坐标会被自动转换到正确的子域视窗中
+ 5. 子域内容贴图的更新由组件负责,用户不需要处理
*/ + export class SubContextView extends Component { + /** + !#en Reset open data context size and viewport + !#zh 重置开放数据域的尺寸和视窗 + */ + reset(): void; + /** + !#en Update the sub context viewport manually, it should be called whenever the node's bounding box changes. + !#zh 更新开放数据域相对于主域的 viewport,这个函数应该在节点包围盒改变时手动调用。 + */ + updateSubContextViewport(): void; + } + /** !#en WXSubContextView is deprecated since v2.4.1, please use SubContextView instead. + !#zh 自 v2.4.1 起,WXSubContextView 已经废弃,请使用 SubContextView */ + export class WXSubContextView extends Component { + } + /** !#en SwanSubContextView is deprecated since v2.4.1, please use SubContextView instead. + !#zh 自 v2.4.1 起,SwanSubContextView 已经废弃,请使用 SubContextView */ + export class SwanSubContextView extends Component { + } + /** !#en The touch event class + !#zh 封装了触摸相关的信息。 */ + export class Touch { + /** + !#en Returns the current touch location in OpenGL coordinates.、 + !#zh 获取当前触点位置。 + */ + getLocation(): Vec2; + /** + !#en Returns X axis location value. + !#zh 获取当前触点 X 轴位置。 + */ + getLocationX(): number; + /** + !#en Returns Y axis location value. + !#zh 获取当前触点 Y 轴位置。 + */ + getLocationY(): number; + /** + !#en Returns the previous touch location in OpenGL coordinates. + !#zh 获取触点在上一次事件时的位置对象,对象包含 x 和 y 属性。 + */ + getPreviousLocation(): Vec2; + /** + !#en Returns the start touch location in OpenGL coordinates. + !#zh 获取触点落下时的位置对象,对象包含 x 和 y 属性。 + */ + getStartLocation(): Vec2; + /** + !#en Returns the delta distance from the previous touche to the current one in screen coordinates. + !#zh 获取触点距离上一次事件移动的距离对象,对象包含 x 和 y 属性。 + */ + getDelta(): Vec2; + /** + !#en Returns the current touch location in screen coordinates. + !#zh 获取当前事件在游戏窗口内的坐标位置对象,对象包含 x 和 y 属性。 + */ + getLocationInView(): Vec2; + /** + !#en Returns the previous touch location in screen coordinates. + !#zh 获取触点在上一次事件时在游戏窗口中的位置对象,对象包含 x 和 y 属性。 + */ + getPreviousLocationInView(): Vec2; + /** + !#en Returns the start touch location in screen coordinates. + !#zh 获取触点落下时在游戏窗口中的位置对象,对象包含 x 和 y 属性。 + */ + getStartLocationInView(): Vec2; + /** + !#en Returns the id of cc.Touch. + !#zh 触点的标识 ID,可以用来在多点触摸中跟踪触点。 + */ + getID(): number; + /** + !#en Sets information to touch. + !#zh 设置触摸相关的信息。用于监控触摸事件。 + @param id id + @param x x + @param y y + */ + setTouchInfo(id: number, x: number, y: number): void; + } + /** undefined */ + export class Graphics extends RenderComponent { + /** !#en + Current line width. + !#zh + 当前线条宽度 */ + lineWidth: number; + /** !#en + lineJoin determines how two connecting segments (of lines, arcs or curves) with non-zero lengths in a shape are joined together. + !#zh + lineJoin 用来设置2个长度不为0的相连部分(线段,圆弧,曲线)如何连接在一起的属性。 */ + lineJoin: Graphics.LineJoin; + /** !#en + lineCap determines how the end points of every line are drawn. + !#zh + lineCap 指定如何绘制每一条线段末端。 */ + lineCap: Graphics.LineCap; + /** !#en + stroke color + !#zh + 线段颜色 */ + strokeColor: Color; + /** !#en + fill color + !#zh + 填充颜色 */ + fillColor: Color; + /** !#en + Sets the miter limit ratio + !#zh + 设置斜接面限制比例 */ + miterLimit: number; + /** + !#en Move path start point to (x,y). + !#zh 移动路径起点到坐标(x, y) + @param x The x axis of the coordinate for the end point. + @param y The y axis of the coordinate for the end point. + */ + moveTo(x?: number, y?: number): void; + /** + !#en Adds a straight line to the path + !#zh 绘制直线路径 + @param x The x axis of the coordinate for the end point. + @param y The y axis of the coordinate for the end point. + */ + lineTo(x?: number, y?: number): void; + /** + !#en Adds a cubic Bézier curve to the path + !#zh 绘制三次贝赛尔曲线路径 + @param c1x The x axis of the coordinate for the first control point. + @param c1y The y axis of the coordinate for first control point. + @param c2x The x axis of the coordinate for the second control point. + @param c2y The y axis of the coordinate for the second control point. + @param x The x axis of the coordinate for the end point. + @param y The y axis of the coordinate for the end point. + */ + bezierCurveTo(c1x?: number, c1y?: number, c2x?: number, c2y?: number, x?: number, y?: number): void; + /** + !#en Adds a quadratic Bézier curve to the path + !#zh 绘制二次贝赛尔曲线路径 + @param cx The x axis of the coordinate for the control point. + @param cy The y axis of the coordinate for the control point. + @param x The x axis of the coordinate for the end point. + @param y The y axis of the coordinate for the end point. + */ + quadraticCurveTo(cx?: number, cy?: number, x?: number, y?: number): void; + /** + !#en Adds an arc to the path which is centered at (cx, cy) position with radius r starting at startAngle and ending at endAngle going in the given direction by counterclockwise (defaulting to false). + !#zh 绘制圆弧路径。圆弧路径的圆心在 (cx, cy) 位置,半径为 r ,根据 counterclockwise (默认为false)指定的方向从 startAngle 开始绘制,到 endAngle 结束。 + @param cx The x axis of the coordinate for the center point. + @param cy The y axis of the coordinate for the center point. + @param r The arc's radius. + @param startAngle The angle at which the arc starts, measured clockwise from the positive x axis and expressed in radians. + @param endAngle The angle at which the arc ends, measured clockwise from the positive x axis and expressed in radians. + @param counterclockwise An optional Boolean which, if true, causes the arc to be drawn counter-clockwise between the two angles. By default it is drawn clockwise. + */ + arc(cx?: number, cy?: number, r?: number, startAngle?: number, endAngle?: number, counterclockwise?: boolean): void; + /** + !#en Adds an ellipse to the path. + !#zh 绘制椭圆路径。 + @param cx The x axis of the coordinate for the center point. + @param cy The y axis of the coordinate for the center point. + @param rx The ellipse's x-axis radius. + @param ry The ellipse's y-axis radius. + */ + ellipse(cx?: number, cy?: number, rx?: number, ry?: number): void; + /** + !#en Adds an circle to the path. + !#zh 绘制圆形路径。 + @param cx The x axis of the coordinate for the center point. + @param cy The y axis of the coordinate for the center point. + @param r The circle's radius. + */ + circle(cx?: number, cy?: number, r?: number): void; + /** + !#en Adds an rectangle to the path. + !#zh 绘制矩形路径。 + @param x The x axis of the coordinate for the rectangle starting point. + @param y The y axis of the coordinate for the rectangle starting point. + @param w The rectangle's width. + @param h The rectangle's height. + */ + rect(x?: number, y?: number, w?: number, h?: number): void; + /** + !#en Adds an round corner rectangle to the path. + !#zh 绘制圆角矩形路径。 + @param x The x axis of the coordinate for the rectangle starting point. + @param y The y axis of the coordinate for the rectangle starting point. + @param w The rectangles width. + @param h The rectangle's height. + @param r The radius of the rectangle. + */ + roundRect(x?: number, y?: number, w?: number, h?: number, r?: number): void; + /** + !#en Draws a filled rectangle. + !#zh 绘制填充矩形。 + @param x The x axis of the coordinate for the rectangle starting point. + @param y The y axis of the coordinate for the rectangle starting point. + @param w The rectangle's width. + @param h The rectangle's height. + */ + fillRect(x?: number, y?: number, w?: number, h?: number): void; + /** + !#en Erasing any previously drawn content. + !#zh 擦除之前绘制的所有内容的方法。 + @param clean Whether to clean the graphics inner cache. + */ + clear(clean?: boolean): void; + /** + !#en Causes the point of the pen to move back to the start of the current path. It tries to add a straight line from the current point to the start. + !#zh 将笔点返回到当前路径起始点的。它尝试从当前点到起始点绘制一条直线。 + */ + close(): void; + /** + !#en Strokes the current or given path with the current stroke style. + !#zh 根据当前的画线样式,绘制当前或已经存在的路径。 + */ + stroke(): void; + /** + !#en Fills the current or given path with the current fill style. + !#zh 根据当前的画线样式,填充当前或已经存在的路径。 + */ + fill(): void; + } + /** !#en + Camera is usefull when making reel game or other games which need scroll screen. + Using camera will be more efficient than moving node to scroll screen. + Camera + !#zh + 摄像机在制作卷轴或是其他需要移动屏幕的游戏时比较有用,使用摄像机将会比移动节点来移动屏幕更加高效。 */ + export class Camera extends Component { + /** !#en + The camera zoom ratio, only support 2D camera. + !#zh + 摄像机缩放比率, 只支持 2D camera。 */ + zoomRatio: number; + /** !#en + Field of view. The width of the Camera’s view angle, measured in degrees along the local Y axis. + !#zh + 决定摄像机视角的宽度,当摄像机处于透视投影模式下这个属性才会生效。 */ + fov: number; + /** !#en + The viewport size of the Camera when set to orthographic projection. + !#zh + 摄像机在正交投影模式下的视窗大小。 */ + orthoSize: number; + /** !#en + The near clipping plane. + !#zh + 摄像机的近剪裁面。 */ + nearClip: number; + /** !#en + The far clipping plane. + !#zh + 摄像机的远剪裁面。 */ + farClip: number; + /** !#en + Is the camera orthographic (true) or perspective (false)? + !#zh + 设置摄像机的投影模式是正交还是透视模式。 */ + ortho: boolean; + /** !#en + Four values (0 ~ 1) that indicate where on the screen this camera view will be drawn. + !#zh + 决定摄像机绘制在屏幕上哪个位置,值为(0 ~ 1)。 */ + rect: Rect; + /** !#en + This is used to render parts of the scene selectively. + !#zh + 决定摄像机会渲染场景的哪一部分。 */ + cullingMask: number; + /** !#en + Determining what to clear when camera rendering. + !#zh + 决定摄像机渲染时会清除哪些状态。 */ + clearFlags: Camera.ClearFlags; + /** !#en + The color with which the screen will be cleared. + !#zh + 摄像机用于清除屏幕的背景色。 */ + backgroundColor: Color; + /** !#en + Camera's depth in the camera rendering order. Cameras with higher depth are rendered after cameras with lower depth. + !#zh + 摄像机深度。用于决定摄像机的渲染顺序,值越大渲染在越上层。 */ + depth: number; + /** !#en + Destination render texture. + Usually cameras render directly to screen, but for some effects it is useful to make a camera render into a texture. + !#zh + 摄像机渲染的目标 RenderTexture。 + 一般摄像机会直接渲染到屏幕上,但是有一些效果可以使用摄像机渲染到 RenderTexture 上再对 RenderTexture 进行处理来实现。 */ + targetTexture: RenderTexture; + /** !#en + Sets the camera's render stages. + !#zh + 设置摄像机渲染的阶段 */ + renderStages: number; + /** !#en Whether auto align camera viewport to screen + !#zh 是否自动将摄像机的视口对准屏幕 */ + alignWithScreen: boolean; + /** !#en + The primary camera in the scene. Returns the rear most rendered camera, which is the camera with the lowest depth. + !#zh + 当前场景中激活的主摄像机。将会返回渲染在屏幕最底层,也就是 depth 最小的摄像机。 */ + static main: Camera; + /** !#en + All enabled cameras. + !#zh + 当前激活的所有摄像机。 */ + static cameras: Camera[]; + /** + !#en + Get the first camera which the node belong to. + !#zh + 获取节点所在的第一个摄像机。 + @param node node + */ + static findCamera(node: Node): Camera; + /** + !#en + Get the screen to world matrix, only support 2D camera which alignWithScreen is true. + !#zh + 获取屏幕坐标系到世界坐标系的矩阵,只适用于 alignWithScreen 为 true 的 2D 摄像机。 + @param out the matrix to receive the result + */ + getScreenToWorldMatrix2D(out: Mat4): Mat4; + /** + !#en + Get the world to camera matrix, only support 2D camera which alignWithScreen is true. + !#zh + 获取世界坐标系到摄像机坐标系的矩阵,只适用于 alignWithScreen 为 true 的 2D 摄像机。 + @param out the matrix to receive the result + */ + getWorldToScreenMatrix2D(out: Mat4): Mat4; + /** + !#en + Convert point from screen to world. + !#zh + 将坐标从屏幕坐标系转换到世界坐标系。 + @param screenPosition screenPosition + @param out out + */ + getScreenToWorldPoint(screenPosition: Vec3|Vec2, out?: Vec3|Vec2): Vec3; + /** + !#en + Convert point from world to screen. + !#zh + 将坐标从世界坐标系转化到屏幕坐标系。 + @param worldPosition worldPosition + @param out out + */ + getWorldToScreenPoint(worldPosition: Vec3|Vec2, out?: Vec3|Vec2): Vec3; + /** + !#en + Get a ray from screen position + !#zh + 从屏幕坐标获取一条射线 + @param screenPos screenPos + */ + getRay(screenPos: Vec2): geomUtils.Ray; + /** + !#en + Check whether the node is in the camera. + !#zh + 检测节点是否被此摄像机影响 + @param node the node which need to check + */ + containsNode(node: Node): boolean; + /** + !#en + Render the camera manually. + !#zh + 手动渲染摄像机。 + @param rootNode rootNode + */ + render(rootNode?: Node): void; + /** + !#en + Returns the matrix that transform the node's (local) space coordinates into the camera's space coordinates. + !#zh + 返回一个将节点坐标系转换到摄像机坐标系下的矩阵 + @param node the node which should transform + */ + getNodeToCameraTransform(node: Node): AffineTransform; + /** + !#en + Conver a camera coordinates point to world coordinates. + !#zh + 将一个摄像机坐标系下的点转换到世界坐标系下。 + @param point the point which should transform + @param out the point to receive the result + */ + getCameraToWorldPoint(point: Vec2, out?: Vec2): Vec2; + /** + !#en + Conver a world coordinates point to camera coordinates. + !#zh + 将一个世界坐标系下的点转换到摄像机坐标系下。 + @param point point + @param out the point to receive the result + */ + getWorldToCameraPoint(point: Vec2, out?: Vec2): Vec2; + /** + !#en + Get the camera to world matrix + !#zh + 获取摄像机坐标系到世界坐标系的矩阵 + @param out the matrix to receive the result + */ + getCameraToWorldMatrix(out: Mat4): Mat4; + /** + !#en + Get the world to camera matrix + !#zh + 获取世界坐标系到摄像机坐标系的矩阵 + @param out the matrix to receive the result + */ + getWorldToCameraMatrix(out: Mat4): Mat4; + } + /** !#en Mesh Asset. + !#zh 网格资源。 */ + export class Mesh extends Asset implements EventTarget { + /** !#en Get ir set the sub meshes. + !#zh 设置或者获取子网格。 */ + subMeshes: InputAssembler[]; + /** + !#en + Init vertex buffer according to the vertex format. + !#zh + 根据顶点格式初始化顶点内存。 + @param vertexFormat vertex format + @param vertexCount how much vertex should be create in this buffer. + @param dynamic whether or not to use dynamic buffer. + @param index index + */ + init(vertexFormat: gfx.VertexFormat, vertexCount: number, dynamic?: boolean, index?: boolean): void; + /** + !#en + Set the vertex values. + !#zh + 设置顶点数据 + @param name the attribute name, e.g. gfx.ATTR_POSITION + @param values the vertex values + */ + setVertices(name: string, values: Vec2[]|Vec3[]|Color[]|number[]|Uint8Array|Float32Array): void; + /** + !#en + Set the sub mesh indices. + !#zh + 设置子网格索引。 + @param indices the sub mesh indices. + @param index sub mesh index. + @param dynamic whether or not to use dynamic buffer. + */ + setIndices(indices: number[]|Uint16Array|Uint8Array, index?: number, dynamic?: boolean): void; + /** + !#en + Set the sub mesh primitive type. + !#zh + 设置子网格绘制线条的方式。 + @param type type + @param index index + */ + setPrimitiveType(type: number, index: number): void; + /** + !#en + Clear the buffer data. + !#zh + 清除网格创建的内存数据。 + */ + clear(): void; + /** + !#en Set mesh bounding box + !#zh 设置网格的包围盒 + @param min min + @param max max + */ + setBoundingBox(min: Vec3, max: Vec3): void; + /** + !#en Read the specified attributes of the subgrid into the target buffer. + !#zh 读取子网格的指定属性到目标缓冲区中。 + @param primitiveIndex The subgrid index. + @param attributeName attribute name. + @param buffer The target buffer. + @param stride The byte interval between adjacent attributes in the target buffer. + @param offset The offset of the first attribute in the target buffer. + */ + copyAttribute(primitiveIndex: number, attributeName: string, buffer: ArrayBuffer, stride: number, offset: number): boolean; + /** + !#en Read the index data of the subgrid into the target array. + !#zh 读取子网格的索引数据到目标数组中。 + @param primitiveIndex The subgrid index. + @param outputArray The target array. + */ + copyIndices(primitiveIndex: number, outputArray: DataView): boolean; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + } + /** !#en + Mesh Renderer Component + !#zh + 网格渲染组件 */ + export class MeshRenderer extends RenderComponent { + /** !#en + The mesh which the renderer uses. + !#zh + 设置使用的网格 */ + mesh: Mesh; + /** !#en + Whether the mesh should receive shadows. + !#zh + 网格是否接受光源投射的阴影 */ + receiveShadows: boolean; + /** !#en + Shadow Casting Mode + !#zh + 网格投射阴影的模式 */ + shadowCastingMode: MeshRenderer.ShadowCastingMode; + /** !#en + Enable auto merge mesh, only support when mesh's VertexFormat, PrimitiveType, materials are all the same + !#zh + 开启自动合并 mesh 功能,只有在网格的 顶点格式,PrimitiveType, 使用的材质 都一致的情况下才会有效 */ + enableAutoBatch: boolean; + } + /** The class BufferRange denotes a range of the buffer. */ + export class BufferRange { + /** The offset of the range. */ + offset: number; + /** The length of the range. */ + length: number; + } + /** undefined */ + export class VertexFormat { + /** The data range of this bundle. + This range of data is essentially mapped to a GPU vertex buffer. */ + data: BufferRange; + /** The attribute formats. */ + formats: VertexFormat; + /** The vertex bundle that the primitive use. */ + vertexBundleIndices: number[]; + /** The data range of the primitive. + This range of data is essentially mapped to a GPU indices buffer. */ + data: BufferRange; + /** The type of this primitive's indices. */ + indexUnit: number; + /** The primitive's topology. */ + topology: number; + } + /** undefined */ + export class WorldManifold { + /** !#en + world contact point (point of intersection) + !#zh + 碰撞点集合 */ + points: Vec2[]; + /** !#en + world vector pointing from A to B + !#zh + 世界坐标系下由 A 指向 B 的向量 */ + normal: Vec2; + } + /** !#en + A manifold point is a contact point belonging to a contact manifold. + It holds details related to the geometry and dynamics of the contact points. + Note: the impulses are used for internal caching and may not + provide reliable contact forces, especially for high speed collisions. + !#zh + ManifoldPoint 是接触信息中的接触点信息。它拥有关于几何和接触点的详细信息。 + 注意:信息中的冲量用于系统内部缓存,提供的接触力可能不是很准确,特别是高速移动中的碰撞信息。 */ + export class ManifoldPoint { + /** !#en + The local point usage depends on the manifold type: + -e_circles: the local center of circleB + -e_faceA: the local center of circleB or the clip point of polygonB + -e_faceB: the clip point of polygonA + !#zh + 本地坐标点的用途取决于 manifold 的类型 + - e_circles: circleB 的本地中心点 + - e_faceA: circleB 的本地中心点 或者是 polygonB 的截取点 + - e_faceB: polygonB 的截取点 */ + localPoint: Vec2; + /** !#en + Normal impulse. + !#zh + 法线冲量。 */ + normalImpulse: number; + /** !#en + Tangent impulse. + !#zh + 切线冲量。 */ + tangentImpulse: number; + } + /** undefined */ + export class Manifold { + /** !#en + Manifold type : 0: e_circles, 1: e_faceA, 2: e_faceB + !#zh + Manifold 类型 : 0: e_circles, 1: e_faceA, 2: e_faceB */ + type: number; + /** !#en + The local point usage depends on the manifold type: + -e_circles: the local center of circleA + -e_faceA: the center of faceA + -e_faceB: the center of faceB + !#zh + 用途取决于 manifold 类型 + -e_circles: circleA 的本地中心点 + -e_faceA: faceA 的本地中心点 + -e_faceB: faceB 的本地中心点 */ + localPoint: Vec2; + /** !#en + -e_circles: not used + -e_faceA: the normal on polygonA + -e_faceB: the normal on polygonB + !#zh + -e_circles: 没被使用到 + -e_faceA: polygonA 的法向量 + -e_faceB: polygonB 的法向量 */ + localNormal: Vec2; + /** !#en + the points of contact. + !#zh + 接触点信息。 */ + points: ManifoldPoint[]; + } + /** !#en + Contact impulses for reporting. + !#zh + 用于返回给回调的接触冲量。 */ + export class PhysicsImpulse { + /** !#en + Normal impulses. + !#zh + 法线方向的冲量 */ + normalImpulses: any; + /** !#en + Tangent impulses + !#zh + 切线方向的冲量 */ + tangentImpulses: any; + } + /** !#en + PhysicsContact will be generated during begin and end collision as a parameter of the collision callback. + Note that contacts will be reused for speed up cpu time, so do not cache anything in the contact. + !#zh + 物理接触会在开始和结束碰撞之间生成,并作为参数传入到碰撞回调函数中。 + 注意:传入的物理接触会被系统进行重用,所以不要在使用中缓存里面的任何信息。 */ + export class PhysicsContact { + /** + !#en + Get the world manifold. + !#zh + 获取世界坐标系下的碰撞信息。 + */ + getWorldManifold(): WorldManifold; + /** + !#en + Get the manifold. + !#zh + 获取本地(局部)坐标系下的碰撞信息。 + */ + getManifold(): Manifold; + /** + !#en + Get the impulses. + Note: PhysicsImpulse can only used in onPostSolve callback. + !#zh + 获取冲量信息 + 注意:这个信息只有在 onPostSolve 回调中才能获取到 + */ + getImpulse(): PhysicsImpulse; + /** !#en + One of the collider that collided + !#zh + 发生碰撞的碰撞体之一 */ + colliderA: Collider; + /** !#en + One of the collider that collided + !#zh + 发生碰撞的碰撞体之一 */ + colliderB: Collider; + /** !#en + If set disabled to true, the contact will be ignored until contact end. + If you just want to disabled contact for current time step or sub-step, please use disabledOnce. + !#zh + 如果 disabled 被设置为 true,那么直到接触结束此接触都将被忽略。 + 如果只是希望在当前时间步或子步中忽略此接触,请使用 disabledOnce 。 */ + disabled: boolean; + /** !#en + Disabled contact for current time step or sub-step. + !#zh + 在当前时间步或子步中忽略此接触。 */ + disabledOnce: boolean; + /** + !#en + Is this contact touching? + !#zh + 返回碰撞体是否已经接触到。 + */ + isTouching(): boolean; + /** + !#en + Set the desired tangent speed for a conveyor belt behavior. + !#zh + 为传送带设置期望的切线速度 + @param tangentSpeed tangentSpeed + */ + setTangentSpeed(tangentSpeed: number): void; + /** + !#en + Get the desired tangent speed. + !#zh + 获取切线速度 + */ + getTangentSpeed(): number; + /** + !#en + Override the default friction mixture. You can call this in onPreSolve callback. + !#zh + 覆盖默认的摩擦力系数。你可以在 onPreSolve 回调中调用此函数。 + @param friction friction + */ + setFriction(friction: number): void; + /** + !#en + Get the friction. + !#zh + 获取当前摩擦力系数 + */ + getFriction(): number; + /** + !#en + Reset the friction mixture to the default value. + !#zh + 重置摩擦力系数到默认值 + */ + resetFriction(): void; + /** + !#en + Override the default restitution mixture. You can call this in onPreSolve callback. + !#zh + 覆盖默认的恢复系数。你可以在 onPreSolve 回调中调用此函数。 + @param restitution restitution + */ + setRestitution(restitution: number): void; + /** + !#en + Get the restitution. + !#zh + 获取当前恢复系数 + */ + getRestitution(): number; + /** + !#en + Reset the restitution mixture to the default value. + !#zh + 重置恢复系数到默认值 + */ + resetRestitution(): void; + } + /** !#en + Physics manager uses box2d as the inner physics system, and hide most box2d implement details(creating rigidbody, synchronize rigidbody info to node). + You can visit some common box2d function through physics manager(hit testing, raycast, debug info). + Physics manager distributes the collision information to each collision callback when collision is produced. + Note: You need first enable the collision listener in the rigidbody. + !#zh + 物理系统将 box2d 作为内部物理系统,并且隐藏了大部分 box2d 实现细节(比如创建刚体,同步刚体信息到节点中等)。 + 你可以通过物理系统访问一些 box2d 常用的功能,比如点击测试,射线测试,设置测试信息等。 + 物理系统还管理碰撞信息的分发,她会在产生碰撞时,将碰撞信息分发到各个碰撞回调中。 + 注意:你需要先在刚体中开启碰撞接听才会产生相应的碰撞回调。
+ 支持的物理系统指定绘制信息事件,请参阅 {{#crossLink "PhysicsManager.DrawBits"}}{{/crossLink}} */ + export class PhysicsManager implements EventTarget { + /** !#en + The ratio transform between physics unit and pixel unit, generally is 32. + !#zh + 物理单位与像素单位互相转换的比率,一般是 32。 */ + static PTM_RATIO: number; + /** !#en + The velocity iterations for the velocity constraint solver. + !#zh + 速度更新迭代数 */ + static VELOCITY_ITERATIONS: number; + /** !#en + The position Iterations for the position constraint solver. + !#zh + 位置迭代更新数 */ + static POSITION_ITERATIONS: number; + /** !#en + Specify the fixed time step. + Need enabledAccumulator to make it work. + !#zh + 指定固定的物理更新间隔时间,需要开启 enabledAccumulator 才有效。 */ + static FIXED_TIME_STEP: number; + /** !#en + Specify the max accumulator time. + Need enabledAccumulator to make it work. + !#zh + 每次可用于更新物理系统的最大时间,需要开启 enabledAccumulator 才有效。 */ + static MAX_ACCUMULATOR: number; + /** !#en + If enabled accumulator, then will call step function with the fixed time step FIXED_TIME_STEP. + And if the update dt is bigger than the time step, then will call step function several times. + If disabled accumulator, then will call step function with a time step calculated with the frame rate. + !#zh + 如果开启此选项,那么将会以固定的间隔时间 FIXED_TIME_STEP 来更新物理引擎,如果一个 update 的间隔时间大于 FIXED_TIME_STEP,则会对物理引擎进行多次更新。 + 如果关闭此选项,那么将会根据设定的 frame rate 计算出一个间隔时间来更新物理引擎。 */ + enabledAccumulator: boolean; + /** + !#en + Test which collider contains the given world point + !#zh + 获取包含给定世界坐标系点的碰撞体 + @param point the world point + */ + testPoint(point: Vec2): PhysicsCollider; + /** + !#en + Test which colliders intersect the given world rect + !#zh + 获取与给定世界坐标系矩形相交的碰撞体 + @param rect the world rect + */ + testAABB(rect: Rect): PhysicsCollider[]; + /** + !#en + Raycast the world for all colliders in the path of the ray. + The raycast ignores colliders that contain the starting point. + !#zh + 检测哪些碰撞体在给定射线的路径上,射线检测将忽略包含起始点的碰撞体。 + @param p1 start point of the raycast + @param p2 end point of the raycast + @param type optional, default is RayCastType.Closest + */ + rayCast(p1: Vec2, p2: Vec2, type: RayCastType): PhysicsRayCastResult[]; + /** !#en + Enabled the physics manager? + !#zh + 指定是否启用物理系统? */ + enabled: boolean; + /** !#en + Debug draw flags. + !#zh + 设置调试绘制标志 */ + debugDrawFlags: number; + /** !#en + The physics world gravity. + !#zh + 物理世界重力值 */ + gravity: Vec2; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** undefined */ + export class PhysicsRayCastResult { + /** !#en + The PhysicsCollider which intersects with the raycast + !#zh + 与射线相交的碰撞体 */ + collider: PhysicsCollider; + /** !#en + The intersection point + !#zh + 射线与碰撞体相交的点 */ + point: Vec2; + /** !#en + The normal vector at the point of intersection + !#zh + 射线与碰撞体相交的点的法向量 */ + normal: Vec2; + /** !#en + The fraction of the raycast path at the point of intersection + !#zh + 射线与碰撞体相交的点占射线长度的分数 */ + fraction: number; + } + /** !#en Enum for RigidBodyType. + !#zh 刚体类型 */ + export enum RigidBodyType { + Static = 0, + Kinematic = 0, + Dynamic = 0, + Animated = 0, + } + /** !#en Enum for RayCastType. + !#zh 射线检测类型 */ + export enum RayCastType { + Closest = 0, + Any = 0, + AllClosest = 0, + All = 0, + } + /** undefined */ + export class RigidBody extends Component { + /** !#en + Should enabled contact listener? + When a collision is trigger, the collision callback will only be called when enabled contact listener. + !#zh + 是否启用接触接听器。 + 当 collider 产生碰撞时,只有开启了接触接听器才会调用相应的回调函数 */ + enabledContactListener: boolean; + /** + !#en + Collision callback. + Called when two collider begin to touch. + !#zh + 碰撞回调。 + 如果你的脚本中实现了这个函数,那么它将会在两个碰撞体开始接触时被调用。 + @param contact contact information + @param selfCollider the collider belong to this rigidbody + @param otherCollider the collider belong to another rigidbody + */ + onBeginContact(contact: PhysicsContact, selfCollider: PhysicsCollider, otherCollider: PhysicsCollider): void; + /** + !#en + Collision callback. + Called when two collider cease to touch. + !#zh + 碰撞回调。 + 如果你的脚本中实现了这个函数,那么它将会在两个碰撞体停止接触时被调用。 + @param contact contact information + @param selfCollider the collider belong to this rigidbody + @param otherCollider the collider belong to another rigidbody + */ + onEndContact(contact: PhysicsContact, selfCollider: PhysicsCollider, otherCollider: PhysicsCollider): void; + /** + !#en + Collision callback. + This is called when a contact is updated. + This allows you to inspect a contact before it goes to the solver(e.g. disable contact). + Note: this is called only for awake bodies. + Note: this is called even when the number of contact points is zero. + Note: this is not called for sensors. + !#zh + 碰撞回调。 + 如果你的脚本中实现了这个函数,那么它将会在接触更新时被调用。 + 你可以在接触被处理前根据他包含的信息作出相应的处理,比如将这个接触禁用掉。 + 注意:回调只会为醒着的刚体调用。 + 注意:接触点为零的时候也有可能被调用。 + 注意:感知体(sensor)的回调不会被调用。 + @param contact contact information + @param selfCollider the collider belong to this rigidbody + @param otherCollider the collider belong to another rigidbody + */ + onPreSolve(contact: PhysicsContact, selfCollider: PhysicsCollider, otherCollider: PhysicsCollider): void; + /** + !#en + Collision callback. + This is called after a contact is updated. + You can get the impulses from the contact in this callback. + !#zh + 碰撞回调。 + 如果你的脚本中实现了这个函数,那么它将会在接触更新完后被调用。 + 你可以在这个回调中从接触信息中获取到冲量信息。 + @param contact contact information + @param selfCollider the collider belong to this rigidbody + @param otherCollider the collider belong to another rigidbody + */ + onPostSolve(contact: PhysicsContact, selfCollider: PhysicsCollider, otherCollider: PhysicsCollider): void; + /** !#en + Is this a fast moving body that should be prevented from tunneling through + other moving bodies? + Note : + - All bodies are prevented from tunneling through kinematic and static bodies. This setting is only considered on dynamic bodies. + - You should use this flag sparingly since it increases processing time. + !#zh + 这个刚体是否是一个快速移动的刚体,并且需要禁止穿过其他快速移动的刚体? + 需要注意的是 : + - 所有刚体都被禁止从 运动刚体 和 静态刚体 中穿过。此选项只关注于 动态刚体。 + - 应该尽量少的使用此选项,因为它会增加程序处理时间。 */ + bullet: boolean; + /** !#en + Rigidbody type : Static, Kinematic, Dynamic or Animated. + !#zh + 刚体类型: Static, Kinematic, Dynamic or Animated. */ + type: RigidBodyType; + /** !#en + Set this flag to false if this body should never fall asleep. + Note that this increases CPU usage. + !#zh + 如果此刚体永远都不应该进入睡眠,那么设置这个属性为 false。 + 需要注意这将使 CPU 占用率提高。 */ + allowSleep: boolean; + /** !#en + Scale the gravity applied to this body. + !#zh + 缩放应用在此刚体上的重力值 */ + gravityScale: number; + /** !#en + Linear damping is use to reduce the linear velocity. + The damping parameter can be larger than 1, but the damping effect becomes sensitive to the + time step when the damping parameter is large. + !#zh + Linear damping 用于衰减刚体的线性速度。衰减系数可以大于 1,但是当衰减系数比较大的时候,衰减的效果会变得比较敏感。 */ + linearDamping: number; + /** !#en + Angular damping is use to reduce the angular velocity. The damping parameter + can be larger than 1 but the damping effect becomes sensitive to the + time step when the damping parameter is large. + !#zh + Angular damping 用于衰减刚体的角速度。衰减系数可以大于 1,但是当衰减系数比较大的时候,衰减的效果会变得比较敏感。 */ + angularDamping: number; + /** !#en + The linear velocity of the body's origin in world co-ordinates. + !#zh + 刚体在世界坐标下的线性速度 */ + linearVelocity: Vec2; + /** !#en + The angular velocity of the body. + !#zh + 刚体的角速度 */ + angularVelocity: number; + /** !#en + Should this body be prevented from rotating? + !#zh + 是否禁止此刚体进行旋转 */ + fixedRotation: boolean; + /** !#en + Set the sleep state of the body. A sleeping body has very low CPU cost.(When the rigid body is hit, if the rigid body is in sleep state, it will be immediately awakened.) + !#zh + 设置刚体的睡眠状态。 睡眠的刚体具有非常低的 CPU 成本。(当刚体被碰撞到时,如果刚体处于睡眠状态,它会立即被唤醒) */ + awake: boolean; + /** !#en + Whether to wake up this rigid body during initialization + !#zh + 是否在初始化时唤醒此刚体 */ + awakeOnLoad: boolean; + /** !#en + Set the active state of the body. An inactive body is not + simulated and cannot be collided with or woken up. + If body is active, all fixtures will be added to the + broad-phase. + If body is inactive, all fixtures will be removed from + the broad-phase and all contacts will be destroyed. + Fixtures on an inactive body are implicitly inactive and will + not participate in collisions, ray-casts, or queries. + Joints connected to an inactive body are implicitly inactive. + !#zh + 设置刚体的激活状态。一个非激活状态下的刚体是不会被模拟和碰撞的,不管它是否处于睡眠状态下。 + 如果刚体处于激活状态下,所有夹具会被添加到 粗测阶段(broad-phase)。 + 如果刚体处于非激活状态下,所有夹具会被从 粗测阶段(broad-phase)中移除。 + 在非激活状态下的夹具不会参与到碰撞,射线,或者查找中 + 链接到非激活状态下刚体的关节也是非激活的。 */ + active: boolean; + /** + !#en + Converts a given point in the world coordinate system to this rigid body's local coordinate system + !#zh + 将一个给定的世界坐标系下的点转换为刚体本地坐标系下的点 + @param worldPoint a point in world coordinates. + @param out optional, the receiving point + */ + getLocalPoint(worldPoint: Vec2, out: Vec2): Vec2; + /** + !#en + Converts a given point in this rigid body's local coordinate system to the world coordinate system + !#zh + 将一个给定的刚体本地坐标系下的点转换为世界坐标系下的点 + @param localPoint a point in local coordinates. + @param out optional, the receiving point + */ + getWorldPoint(localPoint: Vec2, out: Vec2): Vec2; + /** + !#en + Converts a given vector in this rigid body's local coordinate system to the world coordinate system + !#zh + 将一个给定的刚体本地坐标系下的向量转换为世界坐标系下的向量 + @param localVector a vector in world coordinates. + @param out optional, the receiving vector + */ + getWorldVector(localVector: Vec2, out: Vec2): Vec2; + /** + !#en + Converts a given vector in the world coordinate system to this rigid body's local coordinate system + !#zh + 将一个给定的世界坐标系下的向量转换为刚体本地坐标系下的向量 + @param worldVector a vector in world coordinates. + @param out optional, the receiving vector + */ + getLocalVector(worldVector: Vec2, out: Vec2): Vec2; + /** + !#en + Get the world body origin position. + !#zh + 获取刚体世界坐标系下的原点值 + @param out optional, the receiving point + */ + getWorldPosition(out: Vec2): Vec2; + /** + !#en + Get the world body rotation angle. + !#zh + 获取刚体世界坐标系下的旋转值。 + */ + getWorldRotation(): number; + /** + !#en + Get the local position of the center of mass. + !#zh + 获取刚体本地坐标系下的质心 + */ + getLocalCenter(): Vec2; + /** + !#en + Get the world position of the center of mass. + !#zh + 获取刚体世界坐标系下的质心 + */ + getWorldCenter(): Vec2; + /** + !#en + Get the world linear velocity of a world point attached to this body. + !#zh + 获取刚体上指定点的线性速度 + @param worldPoint a point in world coordinates. + @param out optional, the receiving point + */ + getLinearVelocityFromWorldPoint(worldPoint: Vec2, out: Vec2): Vec2; + /** + !#en + Get total mass of the body. + !#zh + 获取刚体的质量。 + */ + getMass(): number; + /** + !#en + Get the rotational inertia of the body about the local origin. + !#zh + 获取刚体本地坐标系下原点的旋转惯性 + */ + getInertia(): number; + /** + !#en + Get all the joints connect to the rigidbody. + !#zh + 获取链接到此刚体的所有关节 + */ + getJointList(): Joint[]; + /** + !#en + Apply a force at a world point. If the force is not + applied at the center of mass, it will generate a torque and + affect the angular velocity. + !#zh + 施加一个力到刚体上的一个点。如果力没有施加到刚体的质心上,还会产生一个扭矩并且影响到角速度。 + @param force the world force vector. + @param point the world position. + @param wake also wake up the body. + */ + applyForce(force: Vec2, point: Vec2, wake: boolean): void; + /** + !#en + Apply a force to the center of mass. + !#zh + 施加一个力到刚体上的质心上。 + @param force the world force vector. + @param wake also wake up the body. + */ + applyForceToCenter(force: Vec2, wake: boolean): void; + /** + !#en + Apply a torque. This affects the angular velocity. + !#zh + 施加一个扭矩力,将影响刚体的角速度 + @param torque about the z-axis (out of the screen), usually in N-m. + @param wake also wake up the body + */ + applyTorque(torque: number, wake: boolean): void; + /** + !#en + Apply a impulse at a world point, This immediately modifies the velocity. + If the impulse is not applied at the center of mass, it will generate a torque and + affect the angular velocity. + !#zh + 施加冲量到刚体上的一个点,将立即改变刚体的线性速度。 + 如果冲量施加到的点不是刚体的质心,那么将产生一个扭矩并影响刚体的角速度。 + @param impulse the world impulse vector, usually in N-seconds or kg-m/s. + @param point the world position + @param wake alse wake up the body + */ + applyLinearImpulse(impulse: Vec2, point: Vec2, wake: boolean): void; + /** + !#en + Apply an angular impulse. + !#zh + 施加一个角速度冲量。 + @param impulse the angular impulse in units of kg*m*m/s + @param wake also wake up the body + */ + applyAngularImpulse(impulse: number, wake: boolean): void; + /** + !#en + Synchronize node's world position to box2d rigidbody's position. + If enableAnimated is true and rigidbody's type is Animated type, + will set linear velocity instead of directly set rigidbody's position. + !#zh + 同步节点的世界坐标到 box2d 刚体的坐标上。 + 如果 enableAnimated 是 true,并且刚体的类型是 Animated ,那么将设置刚体的线性速度来代替直接设置刚体的位置。 + @param enableAnimated enableAnimated + */ + syncPosition(enableAnimated: boolean): void; + /** + !#en + Synchronize node's world angle to box2d rigidbody's angle. + If enableAnimated is true and rigidbody's type is Animated type, + will set angular velocity instead of directly set rigidbody's angle. + !#zh + 同步节点的世界旋转角度值到 box2d 刚体的旋转值上。 + 如果 enableAnimated 是 true,并且刚体的类型是 Animated ,那么将设置刚体的角速度来代替直接设置刚体的角度。 + @param enableAnimated enableAnimated + */ + syncRotation(enableAnimated: boolean): void; + } + /** !#en the device accelerometer reports values for each axis in units of g-force. + !#zh 设备重力传感器传递的各个轴的数据。 */ + export class constructor { + /** + whether enable accelerometer event + @param isEnable isEnable + */ + setAccelerometerEnabled(isEnable: boolean): void; + /** + set accelerometer interval value + @param interval interval + */ + setAccelerometerInterval(interval: number): void; + } + /** undefined */ + export enum VerticalTextAlignment { + TOP = 0, + CENTER = 0, + BOTTOM = 0, + } + /** The base class of most of all the objects in Fireball. */ + export class Object { + /** !#en The name of the object. + !#zh 该对象的名称。 */ + name: string; + /** !#en + Indicates whether the object is not yet destroyed. (It will not be available after being destroyed)
+ When an object's `destroy` is called, it is actually destroyed after the end of this frame. + So `isValid` will return false from the next frame, while `isValid` in the current frame will still be true. + If you want to determine whether the current frame has called `destroy`, use `cc.isValid(obj, true)`, + but this is often caused by a particular logical requirements, which is not normally required. + + !#zh + 表示该对象是否可用(被 destroy 后将不可用)。
+ 当一个对象的 `destroy` 调用以后,会在这一帧结束后才真正销毁。因此从下一帧开始 `isValid` 就会返回 false,而当前帧内 `isValid` 仍然会是 true。如果希望判断当前帧是否调用过 `destroy`,请使用 `cc.isValid(obj, true)`,不过这往往是特殊的业务需求引起的,通常情况下不需要这样。 */ + isValid: boolean; + /** + !#en + Destroy this Object, and release all its own references to other objects.
+ Actual object destruction will delayed until before rendering. + From the next frame, this object is not usable anymore. + You can use `cc.isValid(obj)` to check whether the object is destroyed before accessing it. + !#zh + 销毁该对象,并释放所有它对其它对象的引用。
+ 实际销毁操作会延迟到当前帧渲染前执行。从下一帧开始,该对象将不再可用。 + 您可以在访问对象之前使用 `cc.isValid(obj)` 来检查对象是否已被销毁。 + + @example + ```js + obj.destroy(); + ``` + */ + destroy(): boolean; + } + /** Bit mask that controls object states. */ + export enum Flags { + DontSave = 0, + EditorOnly = 0, + HideInHierarchy = 0, + } + /** The fullscreen API provides an easy way for web content to be presented using the user's entire screen. + It's invalid on safari, QQbrowser and android browser */ + export class screen { + /** + initialize + */ + init(): void; + /** + return true if it's full now. + */ + fullScreen(): boolean; + /** + change the screen to full mode. + @param element element + @param onFullScreenChange onFullScreenChange + @param onFullScreenError onFullScreenError + */ + requestFullScreen(element: Element, onFullScreenChange: Function, onFullScreenError: Function): void; + /** + exit the full mode. + */ + exitFullScreen(): boolean; + /** + Automatically request full screen with a touch/click event + @param element element + @param onFullScreenChange onFullScreenChange + */ + autoFullScreen(element: Element, onFullScreenChange: Function): void; + } + /** System variables */ + export class sys { + /** English language code */ + static LANGUAGE_ENGLISH: string; + /** Chinese language code */ + static LANGUAGE_CHINESE: string; + /** French language code */ + static LANGUAGE_FRENCH: string; + /** Italian language code */ + static LANGUAGE_ITALIAN: string; + /** German language code */ + static LANGUAGE_GERMAN: string; + /** Spanish language code */ + static LANGUAGE_SPANISH: string; + /** Spanish language code */ + static LANGUAGE_DUTCH: string; + /** Russian language code */ + static LANGUAGE_RUSSIAN: string; + /** Korean language code */ + static LANGUAGE_KOREAN: string; + /** Japanese language code */ + static LANGUAGE_JAPANESE: string; + /** Hungarian language code */ + static LANGUAGE_HUNGARIAN: string; + /** Portuguese language code */ + static LANGUAGE_PORTUGUESE: string; + /** Arabic language code */ + static LANGUAGE_ARABIC: string; + /** Norwegian language code */ + static LANGUAGE_NORWEGIAN: string; + /** Polish language code */ + static LANGUAGE_POLISH: string; + /** Turkish language code */ + static LANGUAGE_TURKISH: string; + /** Ukrainian language code */ + static LANGUAGE_UKRAINIAN: string; + /** Romanian language code */ + static LANGUAGE_ROMANIAN: string; + /** Bulgarian language code */ + static LANGUAGE_BULGARIAN: string; + /** Unknown language code */ + static LANGUAGE_UNKNOWN: string; + static OS_IOS: string; + static OS_ANDROID: string; + static OS_WINDOWS: string; + static OS_MARMALADE: string; + static OS_LINUX: string; + static OS_BADA: string; + static OS_BLACKBERRY: string; + static OS_OSX: string; + static OS_WP8: string; + static OS_WINRT: string; + static OS_UNKNOWN: string; + static UNKNOWN: number; + static WIN32: number; + static LINUX: number; + static MACOS: number; + static ANDROID: number; + static IPHONE: number; + static IPAD: number; + static BLACKBERRY: number; + static NACL: number; + static EMSCRIPTEN: number; + static TIZEN: number; + static WINRT: number; + static WP8: number; + static MOBILE_BROWSER: number; + static DESKTOP_BROWSER: number; + /** Indicates whether executes in editor's window process (Electron's renderer context) */ + static EDITOR_PAGE: number; + /** Indicates whether executes in editor's main process (Electron's browser context) */ + static EDITOR_CORE: number; + static WECHAT_GAME: number; + static QQ_PLAY: number; + static FB_PLAYABLE_ADS: number; + static BAIDU_GAME: number; + static VIVO_GAME: number; + static OPPO_GAME: number; + static HUAWEI_GAME: number; + static XIAOMI_GAME: number; + static JKW_GAME: number; + static ALIPAY_GAME: number; + static WECHAT_GAME_SUB: number; + static BAIDU_GAME_SUB: number; + static QTT_GAME: number; + static BYTEDANCE_GAME: number; + static BYTEDANCE_GAME_SUB: number; + static LINKSURE: number; + /** BROWSER_TYPE_WECHAT */ + static BROWSER_TYPE_WECHAT: string; + static BROWSER_TYPE_ANDROID: string; + static BROWSER_TYPE_IE: string; + static BROWSER_TYPE_EDGE: string; + static BROWSER_TYPE_QQ: string; + static BROWSER_TYPE_MOBILE_QQ: string; + static BROWSER_TYPE_UC: string; + /** uc third party integration. */ + static BROWSER_TYPE_UCBS: string; + static BROWSER_TYPE_360: string; + static BROWSER_TYPE_BAIDU_APP: string; + static BROWSER_TYPE_BAIDU: string; + static BROWSER_TYPE_MAXTHON: string; + static BROWSER_TYPE_OPERA: string; + static BROWSER_TYPE_OUPENG: string; + static BROWSER_TYPE_MIUI: string; + static BROWSER_TYPE_FIREFOX: string; + static BROWSER_TYPE_SAFARI: string; + static BROWSER_TYPE_CHROME: string; + static BROWSER_TYPE_LIEBAO: string; + static BROWSER_TYPE_QZONE: string; + static BROWSER_TYPE_SOUGOU: string; + static BROWSER_TYPE_HUAWEI: string; + static BROWSER_TYPE_UNKNOWN: string; + /** Is native ? This is set to be true in jsb auto. */ + static isNative: boolean; + /** Is web browser ? */ + static isBrowser: boolean; + /** + Is webgl extension support? + @param name name + */ + static glExtension(name: any): boolean; + /** + Get max joint matrix size for skinned mesh renderer. + */ + static getMaxJointMatrixSize(): void; + /** + !#en + Returns the safe area of the screen (in design resolution). If the screen is not notched, the visibleRect will be returned by default. + Currently supports Android, iOS and WeChat Mini Game platform. + !#zh + 返回手机屏幕安全区域(设计分辨率为单位),如果不是异形屏将默认返回 visibleRect。目前支持安卓、iOS 原生平台和微信小游戏平台。 + */ + static getSafeAreaRect(): Rect; + /** Indicate whether system is mobile system */ + static isMobile: boolean; + /** Indicate the running platform */ + static platform: number; + /** Get current language iso 639-1 code. + Examples of valid language codes include "zh-tw", "en", "en-us", "fr", "fr-fr", "es-es", etc. + The actual value totally depends on results provided by destination platform. */ + static languageCode: string; + /** Indicate the current language of the running system */ + static language: string; + /** Indicate the running os name */ + static os: string; + /** Indicate the running os version */ + static osVersion: string; + /** Indicate the running os main version */ + static osMainVersion: number; + /** Indicate the running browser type */ + static browserType: string|void; + /** Indicate the running browser version */ + static browserVersion: string|void; + /** Indicate the real pixel resolution of the whole game window */ + static windowPixelResolution: Size; + /** cc.sys.localStorage is a local storage component. */ + static localStorage: any; + /** The capabilities of the current platform */ + static capabilities: any; + /** + !#en + Get the network type of current device, return cc.sys.NetworkType.LAN if failure. + !#zh + 获取当前设备的网络类型, 如果网络类型无法获取,默认将返回 cc.sys.NetworkType.LAN + */ + static getNetworkType(): sys.NetworkType; + /** + !#en + Get the battery level of current device, return 1.0 if failure. + !#zh + 获取当前设备的电池电量,如果电量无法获取,默认将返回 1 + */ + static getBatteryLevel(): number; + /** + Forces the garbage collection, only available in JSB + */ + static garbageCollect(): void; + /** + Restart the JS VM, only available in JSB + */ + static restartVM(): void; + /** + Check whether an object is valid, + In web engine, it will return true if the object exist + In native engine, it will return true if the JS object and the correspond native object are both valid + @param obj obj + */ + static isObjectValid(obj: any): boolean; + /** + Dump system informations + */ + static dump(): void; + /** + Open a url in browser + @param url url + */ + static openURL(url: string): void; + /** + Get the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC. + */ + static now(): number; + } + /** cc.view is the singleton object which represents the game window.
+ It's main task include:
+ - Apply the design resolution policy
+ - Provide interaction with the window, like resize event on web, retina display support, etc...
+ - Manage the game view port which can be different with the window
+ - Manage the content scale and translation
+
+ Since the cc.view is a singleton, you don't need to call any constructor or create functions,
+ the standard way to use it is by calling:
+ - cc.view.methodName();
*/ + export class View extends EventTarget { + /** + !#en + Sets view's target-densitydpi for android mobile browser. it can be set to:
+ 1. cc.macro.DENSITYDPI_DEVICE, value is "device-dpi"
+ 2. cc.macro.DENSITYDPI_HIGH, value is "high-dpi" (default value)
+ 3. cc.macro.DENSITYDPI_MEDIUM, value is "medium-dpi" (browser's default value)
+ 4. cc.macro.DENSITYDPI_LOW, value is "low-dpi"
+ 5. Custom value, e.g: "480"
+ !#zh 设置目标内容的每英寸像素点密度。 + @param densityDPI densityDPI + */ + setTargetDensityDPI(densityDPI: string): void; + /** + !#en + Returns the current target-densitydpi value of cc.view. + !#zh 获取目标内容的每英寸像素点密度。 + */ + getTargetDensityDPI(): string; + /** + !#en + Sets whether resize canvas automatically when browser's size changed.
+ Useful only on web. + !#zh 设置当发现浏览器的尺寸改变时,是否自动调整 canvas 尺寸大小。 + 仅在 Web 模式下有效。 + @param enabled Whether enable automatic resize with browser's resize event + */ + resizeWithBrowserSize(enabled: boolean): void; + /** + !#en + Sets the callback function for cc.view's resize action,
+ this callback will be invoked before applying resolution policy,
+ so you can do any additional modifications within the callback.
+ Useful only on web. + !#zh 设置 cc.view 调整视窗尺寸行为的回调函数, + 这个回调函数会在应用适配模式之前被调用, + 因此你可以在这个回调函数内添加任意附加改变, + 仅在 Web 平台下有效。 + @param callback The callback function + */ + setResizeCallback(callback: Function|void): void; + /** + !#en + Sets the orientation of the game, it can be landscape, portrait or auto. + When set it to landscape or portrait, and screen w/h ratio doesn't fit, + cc.view will automatically rotate the game canvas using CSS. + Note that this function doesn't have any effect in native, + in native, you need to set the application orientation in native project settings + !#zh 设置游戏屏幕朝向,它能够是横版,竖版或自动。 + 当设置为横版或竖版,并且屏幕的宽高比例不匹配时, + cc.view 会自动用 CSS 旋转游戏场景的 canvas, + 这个方法不会对 native 部分产生任何影响,对于 native 而言,你需要在应用设置中的设置排版。 + @param orientation Possible values: cc.macro.ORIENTATION_LANDSCAPE | cc.macro.ORIENTATION_PORTRAIT | cc.macro.ORIENTATION_AUTO + */ + setOrientation(orientation: number): void; + /** + !#en + Sets whether the engine modify the "viewport" meta in your web page.
+ It's enabled by default, we strongly suggest you not to disable it.
+ And even when it's enabled, you can still set your own "viewport" meta, it won't be overridden
+ Only useful on web + !#zh 设置引擎是否调整 viewport meta 来配合屏幕适配。 + 默认设置为启动,我们强烈建议你不要将它设置为关闭。 + 即使当它启动时,你仍然能够设置你的 viewport meta,它不会被覆盖。 + 仅在 Web 模式下有效 + @param enabled Enable automatic modification to "viewport" meta + */ + adjustViewportMeta(enabled: boolean): void; + /** + !#en + Retina support is enabled by default for Apple device but disabled for other devices,
+ it takes effect only when you called setDesignResolutionPolicy
+ Only useful on web + !#zh 对于 Apple 这种支持 Retina 显示的设备上默认进行优化而其他类型设备默认不进行优化, + 它仅会在你调用 setDesignResolutionPolicy 方法时有影响。 + 仅在 Web 模式下有效。 + @param enabled Enable or disable retina display + */ + enableRetina(enabled: boolean): void; + /** + !#en + Check whether retina display is enabled.
+ Only useful on web + !#zh 检查是否对 Retina 显示设备进行优化。 + 仅在 Web 模式下有效。 + */ + isRetinaEnabled(): boolean; + /** + !#en Whether to Enable on anti-alias + !#zh 控制抗锯齿是否开启 + @param enabled Enable or not anti-alias + */ + enableAntiAlias(enabled: boolean): void; + /** + !#en Returns whether the current enable on anti-alias + !#zh 返回当前是否抗锯齿 + */ + isAntiAliasEnabled(): boolean; + /** + !#en + If enabled, the application will try automatically to enter full screen mode on mobile devices
+ You can pass true as parameter to enable it and disable it by passing false.
+ Only useful on web + !#zh 启动时,移动端游戏会在移动端自动尝试进入全屏模式。 + 你能够传入 true 为参数去启动它,用 false 参数来关闭它。 + @param enabled Enable or disable auto full screen on mobile devices + */ + enableAutoFullScreen(enabled: boolean): void; + /** + !#en + Check whether auto full screen is enabled.
+ Only useful on web + !#zh 检查自动进入全屏模式是否启动。 + 仅在 Web 模式下有效。 + */ + isAutoFullScreenEnabled(): boolean; + /** + !#en + Returns the canvas size of the view.
+ On native platforms, it returns the screen size since the view is a fullscreen view.
+ On web, it returns the size of the canvas element. + !#zh 返回视图中 canvas 的尺寸。 + 在 native 平台下,它返回全屏视图下屏幕的尺寸。 + 在 Web 平台下,它返回 canvas 元素尺寸。 + */ + getCanvasSize(): Size; + /** + !#en + Returns the frame size of the view.
+ On native platforms, it returns the screen size since the view is a fullscreen view.
+ On web, it returns the size of the canvas's outer DOM element. + !#zh 返回视图中边框尺寸。 + 在 native 平台下,它返回全屏视图下屏幕的尺寸。 + 在 web 平台下,它返回 canvas 元素的外层 DOM 元素尺寸。 + */ + getFrameSize(): Size; + /** + !#en + On native, it sets the frame size of view.
+ On web, it sets the size of the canvas's outer DOM element. + !#zh 在 native 平台下,设置视图框架尺寸。 + 在 web 平台下,设置 canvas 外层 DOM 元素尺寸。 + @param width width + @param height height + */ + setFrameSize(width: number, height: number): void; + /** + !#en + Returns the visible area size of the view port. + !#zh 返回视图窗口可见区域尺寸。 + */ + getVisibleSize(): Size; + /** + !#en + Returns the visible area size of the view port. + !#zh 返回视图窗口可见区域像素尺寸。 + */ + getVisibleSizeInPixel(): Size; + /** + !#en + Returns the visible origin of the view port. + !#zh 返回视图窗口可见区域原点。 + */ + getVisibleOrigin(): Vec2; + /** + !#en + Returns the visible origin of the view port. + !#zh 返回视图窗口可见区域像素原点。 + */ + getVisibleOriginInPixel(): Vec2; + /** + !#en + Returns the current resolution policy + !#zh 返回当前分辨率方案 + */ + getResolutionPolicy(): ResolutionPolicy; + /** + !#en + Sets the current resolution policy + !#zh 设置当前分辨率模式 + @param resolutionPolicy resolutionPolicy + */ + setResolutionPolicy(resolutionPolicy: ResolutionPolicy|number): void; + /** + !#en + Sets the resolution policy with designed view size in points.
+ The resolution policy include:
+ [1] ResolutionExactFit Fill screen by stretch-to-fit: if the design resolution ratio of width to height is different from the screen resolution ratio, your game view will be stretched.
+ [2] ResolutionNoBorder Full screen without black border: if the design resolution ratio of width to height is different from the screen resolution ratio, two areas of your game view will be cut.
+ [3] ResolutionShowAll Full screen with black border: if the design resolution ratio of width to height is different from the screen resolution ratio, two black borders will be shown.
+ [4] ResolutionFixedHeight Scale the content's height to screen's height and proportionally scale its width
+ [5] ResolutionFixedWidth Scale the content's width to screen's width and proportionally scale its height
+ [cc.ResolutionPolicy] [Web only feature] Custom resolution policy, constructed by cc.ResolutionPolicy
+ !#zh 通过设置设计分辨率和匹配模式来进行游戏画面的屏幕适配。 + @param width Design resolution width. + @param height Design resolution height. + @param resolutionPolicy The resolution policy desired + */ + setDesignResolutionSize(width: number, height: number, resolutionPolicy: ResolutionPolicy|number): void; + /** + !#en + Returns the designed size for the view. + Default resolution size is the same as 'getFrameSize'. + !#zh 返回视图的设计分辨率。 + 默认下分辨率尺寸同 `getFrameSize` 方法相同 + */ + getDesignResolutionSize(): Size; + /** + !#en + Sets the container to desired pixel resolution and fit the game content to it. + This function is very useful for adaptation in mobile browsers. + In some HD android devices, the resolution is very high, but its browser performance may not be very good. + In this case, enabling retina display is very costy and not suggested, and if retina is disabled, the image may be blurry. + But this API can be helpful to set a desired pixel resolution which is in between. + This API will do the following: + 1. Set viewport's width to the desired width in pixel + 2. Set body width to the exact pixel resolution + 3. The resolution policy will be reset with designed view size in points. + !#zh 设置容器(container)需要的像素分辨率并且适配相应分辨率的游戏内容。 + @param width Design resolution width. + @param height Design resolution height. + @param resolutionPolicy The resolution policy desired + */ + setRealPixelResolution(width: number, height: number, resolutionPolicy: ResolutionPolicy|number): void; + /** + !#en + Sets view port rectangle with points. + !#zh 用设计分辨率下的点尺寸来设置视窗。 + @param x x + @param y y + @param w width + @param h height + */ + setViewportInPoints(x: number, y: number, w: number, h: number): void; + /** + !#en + Sets Scissor rectangle with points. + !#zh 用设计分辨率下的点的尺寸来设置 scissor 剪裁区域。 + @param x x + @param y y + @param w w + @param h h + */ + setScissorInPoints(x: number, y: number, w: number, h: number): void; + /** + !#en + Returns whether GL_SCISSOR_TEST is enable + !#zh 检查 scissor 是否生效。 + */ + isScissorEnabled(): boolean; + /** + !#en + Returns the current scissor rectangle + !#zh 返回当前的 scissor 剪裁区域。 + */ + getScissorRect(): Rect; + /** + !#en + Returns the view port rectangle. + !#zh 返回视窗剪裁区域。 + */ + getViewportRect(): Rect; + /** + !#en + Returns scale factor of the horizontal direction (X axis). + !#zh 返回横轴的缩放比,这个缩放比是将画布像素分辨率放到设计分辨率的比例。 + */ + getScaleX(): number; + /** + !#en + Returns scale factor of the vertical direction (Y axis). + !#zh 返回纵轴的缩放比,这个缩放比是将画布像素分辨率缩放到设计分辨率的比例。 + */ + getScaleY(): number; + /** + !#en + Returns device pixel ratio for retina display. + !#zh 返回设备或浏览器像素比例。 + */ + getDevicePixelRatio(): number; + /** + !#en + Returns the real location in view for a translation based on a related position + !#zh 将屏幕坐标转换为游戏视图下的坐标。 + @param tx The X axis translation + @param ty The Y axis translation + @param relatedPos The related position object including "left", "top", "width", "height" informations + */ + convertToLocationInView(tx: number, ty: number, relatedPos: any): Vec2; + } + /**

cc.game.containerStrategy class is the root strategy class of container's scale strategy, + it controls the behavior of how to scale the cc.game.container and cc.game.canvas object

*/ + export class ContainerStrategy { + /** + !#en + Manipulation before appling the strategy + !#zh 在应用策略之前的操作 + @param view The target view + */ + preApply(view: View): void; + /** + !#en + Function to apply this strategy + !#zh 策略应用方法 + @param view view + @param designedResolution designedResolution + */ + apply(view: View, designedResolution: Size): void; + /** + !#en + Manipulation after applying the strategy + !#zh 策略调用之后的操作 + @param view The target view + */ + postApply(view: View): void; + } + /**

cc.ContentStrategy class is the root strategy class of content's scale strategy, + it controls the behavior of how to scale the scene and setup the viewport for the game

*/ + export class ContentStrategy { + /** + !#en + Manipulation before applying the strategy + !#zh 策略应用前的操作 + @param view The target view + */ + preApply(view: View): void; + /** + !#en Function to apply this strategy + The return value is {scale: [scaleX, scaleY], viewport: {cc.Rect}}, + The target view can then apply these value to itself, it's preferred not to modify directly its private variables + !#zh 调用策略方法 + @param view view + @param designedResolution designedResolution + */ + apply(view: View, designedResolution: Size): any; + /** + !#en + Manipulation after applying the strategy + !#zh 策略调用之后的操作 + @param view The target view + */ + postApply(view: View): void; + } + /** undefined */ + export class EqualToFrame extends ContainerStrategy { + } + /** undefined */ + export class ProportionalToFrame extends ContainerStrategy { + } + /** undefined */ + export class EqualToWindow extends EqualToFrame { + } + /** undefined */ + export class ProportionalToWindow extends ProportionalToFrame { + } + /** undefined */ + export class OriginalContainer extends ContainerStrategy { + } + /**

cc.ResolutionPolicy class is the root strategy class of scale strategy, + its main task is to maintain the compatibility with Cocos2d-x

*/ + export class ResolutionPolicy { + /** + + @param containerStg The container strategy + @param contentStg The content strategy + */ + constructor(containerStg: ContainerStrategy, contentStg: ContentStrategy); + /** + !#en Manipulation before applying the resolution policy + !#zh 策略应用前的操作 + @param view The target view + */ + preApply(view: View): void; + /** + !#en Function to apply this resolution policy + The return value is {scale: [scaleX, scaleY], viewport: {cc.Rect}}, + The target view can then apply these value to itself, it's preferred not to modify directly its private variables + !#zh 调用策略方法 + @param view The target view + @param designedResolution The user defined design resolution + */ + apply(view: View, designedResolution: Size): any; + /** + !#en Manipulation after appyling the strategy + !#zh 策略应用之后的操作 + @param view The target view + */ + postApply(view: View): void; + /** + !#en + Setup the container's scale strategy + !#zh 设置容器的适配策略 + @param containerStg containerStg + */ + setContainerStrategy(containerStg: ContainerStrategy): void; + /** + !#en + Setup the content's scale strategy + !#zh 设置内容的适配策略 + @param contentStg contentStg + */ + setContentStrategy(contentStg: ContentStrategy): void; + /** The entire application is visible in the specified area without trying to preserve the original aspect ratio.
+ Distortion can occur, and the application may appear stretched or compressed. */ + static EXACT_FIT: number; + /** The entire application fills the specified area, without distortion but possibly with some cropping,
+ while maintaining the original aspect ratio of the application. */ + static NO_BORDER: number; + /** The entire application is visible in the specified area without distortion while maintaining the original
+ aspect ratio of the application. Borders can appear on two sides of the application. */ + static SHOW_ALL: number; + /** The application takes the height of the design resolution size and modifies the width of the internal
+ canvas so that it fits the aspect ratio of the device
+ no distortion will occur however you must make sure your application works on different
+ aspect ratios */ + static FIXED_HEIGHT: number; + /** The application takes the width of the design resolution size and modifies the height of the internal
+ canvas so that it fits the aspect ratio of the device
+ no distortion will occur however you must make sure your application works on different
+ aspect ratios */ + static FIXED_WIDTH: number; + /** Unknow policy */ + static UNKNOWN: number; + } + /** cc.visibleRect is a singleton object which defines the actual visible rect of the current view, + it should represent the same rect as cc.view.getViewportRect() */ + export class visibleRect { + /** + initialize + @param visibleRect visibleRect + */ + static init(visibleRect: Rect): void; + /** Top left coordinate of the screen related to the game scene. */ + static topLeft: Vec2; + /** Top right coordinate of the screen related to the game scene. */ + static topRight: Vec2; + /** Top center coordinate of the screen related to the game scene. */ + static top: Vec2; + /** Bottom left coordinate of the screen related to the game scene. */ + static bottomLeft: Vec2; + /** Bottom right coordinate of the screen related to the game scene. */ + static bottomRight: Vec2; + /** Bottom center coordinate of the screen related to the game scene. */ + static bottom: Vec2; + /** Center coordinate of the screen related to the game scene. */ + static center: Vec2; + /** Left center coordinate of the screen related to the game scene. */ + static left: Vec2; + /** Right center coordinate of the screen related to the game scene. */ + static right: Vec2; + /** Width of the screen. */ + static width: number; + /** Height of the screen. */ + static height: number; + } + /** !#en The callbacks invoker to handle and invoke callbacks by key. + !#zh CallbacksInvoker 用来根据 Key 管理并调用回调方法。 */ + export class CallbacksInvoker { + /** + !#zh + 检查指定事件是否已注册回调。 + !#en + Check if the specified key has any registered callback. If a callback is also specified, + it will only return true if the callback is registered. + @param key key + @param callback callback + @param target target + */ + hasEventListener(key: string, callback?: Function, target?: any): boolean; + /** + !#zh + 移除在特定事件类型中注册的所有回调或在某个目标中注册的所有回调。 + + !#en + Removes all callbacks registered in a certain event type or all callbacks registered with a certain target + @param keyOrTarget The event key to be removed or the target to be removed + */ + removeAll(keyOrTarget: string|any): void; + /** + !#zh + 删除之前与同类型,回调,目标注册的回调。 + @param key key + @param callback callback + @param target target + */ + off(key: string, callback: Function, target?: any): void; + /** + !#en + Trigger an event directly with the event name and necessary arguments. + !#zh + 通过事件名发送自定义事件 + @param key event type + @param arg1 First argument + @param arg2 Second argument + @param arg3 Third argument + @param arg4 Fourth argument + @param arg5 Fifth argument + + @example + ```js + eventTarget.emit('fire', event); + eventTarget.emit('fire', message, emitter); + ``` + */ + emit(key: string, arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any): void; + } + /** !#en Contains information collected during deserialization + !#zh 包含反序列化时的一些信息 */ + export class Details { + /** the obj list whose field needs to load asset by uuid */ + uuidObjList: any[]; + /** the corresponding field name which referenced to the asset */ + uuidPropList: (String|Number)[]; + /** list of the depends assets' uuid */ + uuidList: string[]; + /** + + @param data data + */ + init(data: any): void; + reset(): void; + /** + + @param obj obj + @param propName propName + @param uuid uuid + */ + push(obj: any, propName: string, uuid: string): void; + /** list of the depends assets' uuid */ + uuidList: string[]; + /** the obj list whose field needs to load asset by uuid */ + uuidObjList: any[]; + /** the corresponding field name which referenced to the asset */ + uuidPropList: string[]; + reset(): void; + /** + + @param obj obj + @param propName propName + @param uuid uuid + */ + push(obj: any, propName: string, uuid: string): void; + } + /** !#en + Representation of RGBA colors. + + Each color component is a floating point value with a range from 0 to 255. + + You can also use the convenience method {{#crossLink "cc/color:method"}}cc.color{{/crossLink}} to create a new Color. + + !#zh + cc.Color 用于表示颜色。 + + 它包含 RGBA 四个以浮点数保存的颜色分量,每个的值都在 0 到 255 之间。 + + 您也可以通过使用 {{#crossLink "cc/color:method"}}cc.color{{/crossLink}} 的便捷方法来创建一个新的 Color。 */ + export class Color extends ValueType { + /** !#en Solid white, RGBA is [255, 255, 255, 255]. + !#zh 纯白色,RGBA 是 [255, 255, 255, 255]。 */ + static WHITE: Color; + /** !#en Solid black, RGBA is [0, 0, 0, 255]. + !#zh 纯黑色,RGBA 是 [0, 0, 0, 255]。 */ + static BLACK: Color; + /** !#en Transparent, RGBA is [0, 0, 0, 0]. + !#zh 透明,RGBA 是 [0, 0, 0, 0]。 */ + static TRANSPARENT: Color; + /** !#en Grey, RGBA is [127.5, 127.5, 127.5]. + !#zh 灰色,RGBA 是 [127.5, 127.5, 127.5]。 */ + static GRAY: Color; + /** !#en Solid red, RGBA is [255, 0, 0]. + !#zh 纯红色,RGBA 是 [255, 0, 0]。 */ + static RED: Color; + /** !#en Solid green, RGBA is [0, 255, 0]. + !#zh 纯绿色,RGBA 是 [0, 255, 0]。 */ + static GREEN: Color; + /** !#en Solid blue, RGBA is [0, 0, 255]. + !#zh 纯蓝色,RGBA 是 [0, 0, 255]。 */ + static BLUE: Color; + /** !#en Yellow, RGBA is [255, 235, 4]. + !#zh 黄色,RGBA 是 [255, 235, 4]。 */ + static YELLOW: Color; + /** !#en Orange, RGBA is [255, 127, 0]. + !#zh 橙色,RGBA 是 [255, 127, 0]。 */ + static ORANGE: Color; + /** !#en Cyan, RGBA is [0, 255, 255]. + !#zh 青色,RGBA 是 [0, 255, 255]。 */ + static CYAN: Color; + /** !#en Magenta, RGBA is [255, 0, 255]. + !#zh 洋红色(品红色),RGBA 是 [255, 0, 255]。 */ + static MAGENTA: Color; + /** + Copy content of a color into another. + */ + static copy (out: Color, a: Color): Color; + /** + Clone a new color. + */ + static clone (a: Color): Color; + /** + Set the components of a color to the given values. + */ + static set (out: Color, r?: number, g?: number, b?: number, a?: number): Color; + /** + Converts the hexadecimal formal color into rgb formal. + */ + static fromHex (out: Color, hex: number): Color; + /** + Converts the hexadecimal formal color into rgb formal. + */ + static fromHEX (out: Color, hex: string): Color; + /** + Add components of two colors, respectively. + */ + static add (out: Color, a: Color, b: Color): Color; + /** + Subtract components of color b from components of color a, respectively. + */ + static subtract (out: Color, a: Color, b: Color): Color; + /** + Multiply components of two colors, respectively. + */ + static multiply (out: Color, a: Color, b: Color): Color; + /** + Divide components of color a by components of color b, respectively. + */ + static divide (out: Color, a: Color, b: Color): Color; + /** + Scales a color by a number. + */ + static scale (out: Color, a: Color, b: number): Color; + /** + Performs a linear interpolation between two colors. + */ + static lerp (out: Color, a: Color, b: Color, t: number): Color; + /** + !#zh 颜色转数组 + !#en Turn an array of colors + @param ofs 数组起始偏移量 + */ + static toArray > (out: Out, a: IColorLike, ofs?: number): Out; + /** + !#zh 数组转颜色 + !#en An array of colors turn + @param ofs 数组起始偏移量 + */ + static fromArray (arr: IWritableArrayLike, out: Out, ofs?: number): Out; + /** + !#zh 颜色 RGB 预乘 Alpha 通道 + !#en RGB premultiply alpha channel + @param out 返回颜色 + @param color 预乘处理的目标颜色 + */ + static premultiplyAlpha (out: Out, a: IColorLike); + /** + + @param r red component of the color, default value is 0. + @param g green component of the color, defualt value is 0. + @param b blue component of the color, default value is 0. + @param a alpha component of the color, default value is 255. + */ + constructor(r?: number, g?: number, b?: number, a?: number); + /** + !#en Clone a new color from the current color. + !#zh 克隆当前颜色。 + + @example + ```js + var color = new cc.Color(); + var newColor = color.clone();// Color {r: 0, g: 0, b: 0, a: 255} + ``` + */ + clone(): Color; + /** + !#en TODO + !#zh 判断两个颜色是否相等。 + @param other other + + @example + ```js + var color1 = cc.Color.WHITE; + var color2 = new cc.Color(255, 255, 255); + cc.log(color1.equals(color2)); // true; + color2 = cc.Color.RED; + cc.log(color2.equals(color1)); // false; + ``` + */ + equals(other: Color): boolean; + /** + !#en TODO + !#zh 线性插值 + @param to to + @param ratio the interpolation coefficient. + @param out optional, the receiving vector. + + @example + ```js + // Converts a white color to a black one trough time. + update: function (dt) { + var color = this.node.color; + if (color.equals(cc.Color.BLACK)) { + return; + } + this.ratio += dt * 0.1; + this.node.color = cc.Color.WHITE.lerp(cc.Color.BLACK, ratio); + } + + ``` + */ + lerp(to: Color, ratio: number, out?: Color): Color; + /** + !#en TODO + !#zh 转换为方便阅读的字符串。 + + @example + ```js + var color = cc.Color.WHITE; + color.toString(); // "rgba(255, 255, 255, 255)" + ``` + */ + toString(): string; + /** !#en Get or set red channel value + !#zh 获取或者设置红色通道 */ + r: number; + /** !#en Get or set green channel value + !#zh 获取或者设置绿色通道 */ + g: number; + /** !#en Get or set blue channel value + !#zh 获取或者设置蓝色通道 */ + b: number; + /** !#en Get or set alpha channel value + !#zh 获取或者设置透明通道 */ + a: number; + /** + !#en Gets red channel value + !#zh 获取当前颜色的红色值。 + */ + getR(): number; + /** + !#en Sets red value and return the current color object + !#zh 设置当前的红色值,并返回当前对象。 + @param red the new Red component. + + @example + ```js + var color = new cc.Color(); + color.setR(255); // Color {r: 255, g: 0, b: 0, a: 255} + ``` + */ + setR(red: number): Color; + /** + !#en Gets green channel value + !#zh 获取当前颜色的绿色值。 + */ + getG(): number; + /** + !#en Sets green value and return the current color object + !#zh 设置当前的绿色值,并返回当前对象。 + @param green the new Green component. + + @example + ```js + var color = new cc.Color(); + color.setG(255); // Color {r: 0, g: 255, b: 0, a: 255} + ``` + */ + setG(green: number): Color; + /** + !#en Gets blue channel value + !#zh 获取当前颜色的蓝色值。 + */ + getB(): number; + /** + !#en Sets blue value and return the current color object + !#zh 设置当前的蓝色值,并返回当前对象。 + @param blue the new Blue component. + + @example + ```js + var color = new cc.Color(); + color.setB(255); // Color {r: 0, g: 0, b: 255, a: 255} + ``` + */ + setB(blue: number): Color; + /** + !#en Gets alpha channel value + !#zh 获取当前颜色的透明度值。 + */ + getA(): number; + /** + !#en Sets alpha value and return the current color object + !#zh 设置当前的透明度,并返回当前对象。 + @param alpha the new Alpha component. + + @example + ```js + var color = new cc.Color(); + color.setA(0); // Color {r: 0, g: 0, b: 0, a: 0} + ``` + */ + setA(alpha: number): Color; + /** + !#en Convert color to css format. + !#zh 转换为 CSS 格式。 + @param opt "rgba", "rgb", "#rgb" or "#rrggbb". + + @example + ```js + var color = cc.Color.BLACK; + color.toCSS(); // "rgba(0,0,0,1.00)"; + color.toCSS("rgba"); // "rgba(0,0,0,1.00)"; + color.toCSS("rgb"); // "rgba(0,0,0)"; + color.toCSS("#rgb"); // "#000"; + color.toCSS("#rrggbb"); // "#000000"; + ``` + */ + toCSS(opt?: string): string; + /** + !#en Read hex string and store color data into the current color object, the hex string must be formated as rgba or rgb. + !#zh 读取 16 进制颜色。 + @param hexString hexString + + @example + ```js + var color = cc.Color.BLACK; + color.fromHEX("#FFFF33"); // Color {r: 255, g: 255, b: 51, a: 255}; + ``` + */ + fromHEX(hexString: string): Color; + /** + !#en convert Color to HEX color string. + !#zh 转换为 16 进制。 + @param fmt "#rgb", "#rrggbb" or "#rrggbbaa". + + @example + ```js + var color = cc.Color.BLACK; + color.toHEX("#rgb"); // "000"; + color.toHEX("#rrggbb"); // "000000"; + ``` + */ + toHEX(fmt?: string): string; + /** + !#en Convert to 24bit rgb value. + !#zh 转换为 24bit 的 RGB 值。 + + @example + ```js + var color = cc.Color.YELLOW; + color.toRGBValue(); // 16771844; + ``` + */ + toRGBValue(): number; + /** + !#en Read HSV model color and convert to RGB color + !#zh 读取 HSV(色彩模型)格式。 + @param h h + @param s s + @param v v + + @example + ```js + var color = cc.Color.YELLOW; + color.fromHSV(0, 0, 1); // Color {r: 255, g: 255, b: 255, a: 255}; + ``` + */ + fromHSV(h: number, s: number, v: number): Color; + /** + !#en Transform to HSV model color + !#zh 转换为 HSV(色彩模型)格式。 + + @example + ```js + var color = cc.Color.YELLOW; + color.toHSV(); // Object {h: 0.1533864541832669, s: 0.9843137254901961, v: 1}; + ``` + */ + toHSV(): any; + /** + !#en Set the color + !#zh 设置颜色 + @param color color + */ + set (color: Color): Color; + /** + !#en Multiplies the current color by the specified color + !#zh 将当前颜色乘以与指定颜色 + @param other other + */ + multiply(other: Color): Color; + } + /** !#en Representation of 4*4 matrix. + !#zh 表示 4*4 矩阵 */ + export class Mat4 extends ValueType { + /** + !#en Multiply the current matrix with another one + !#zh 将当前矩阵与指定矩阵相乘 + @param other the second operand + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created + */ + mul(other: Mat4, out?: Mat4): Mat4; + /** + !#en Multiply each element of the matrix by a scalar. + !#zh 将矩阵的每一个元素都乘以指定的缩放值。 + @param number amount to scale the matrix's elements by + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created + */ + mulScalar(number: number, out?: Mat4): Mat4; + /** + !#en Subtracts the current matrix with another one + !#zh 将当前矩阵与指定的矩阵相减 + @param other the second operand + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created + */ + sub(other: Mat4, out?: Mat4): Mat4; + /** Identity of Mat4 */ + static IDENTITY: Mat4; + /** + !#zh 获得指定矩阵的拷贝 + !#en Copy of the specified matrix to obtain + */ + static clone (a: Out): Mat4; + /** + !#zh 复制目标矩阵 + !#en Copy the target matrix + */ + static copy (out: Out, a: Out): Out; + /** + !#zh 将目标赋值为单位矩阵 + !#en The target of an assignment is the identity matrix + */ + static identity (out: Out): Out; + /** + !#zh 转置矩阵 + !#en Transposed matrix + */ + static transpose (out: Out, a: Out): Out; + /** + !#zh 矩阵求逆 + !#en Matrix inversion + */ + static invert (out: Out, a: Out): Out; + /** + !#zh 矩阵行列式 + !#en Matrix determinant + */ + static determinant (a: Out): number; + /** + !#zh 矩阵乘法 + !#en Matrix Multiplication + */ + static multiply (out: Out, a: Out, b: Out): Out; + /** + !#zh 在给定矩阵变换基础上加入变换 + !#en Was added in a given transformation matrix transformation on the basis of + */ + static transform (out: Out, a: Out, v: VecLike): Out; + /** + !#zh 在给定矩阵变换基础上加入新位移变换 + !#en Add new displacement transducer in a matrix transformation on the basis of a given + */ + static translate (out: Out, a: Out, v: VecLike): Out; + /** + !#zh 在给定矩阵变换基础上加入新缩放变换 + !#en Add new scaling transformation in a given matrix transformation on the basis of + */ + static scale (out: Out, a: Out, v: VecLike): Out; + /** + !#zh 在给定矩阵变换基础上加入新旋转变换 + !#en Add a new rotational transform matrix transformation on the basis of a given + @param rad 旋转角度 + @param axis 旋转轴 + */ + static rotate (out: Out, a: Out, rad: number, axis: VecLike): Out; + /** + !#zh 在给定矩阵变换基础上加入绕 X 轴的旋转变换 + !#en Add rotational transformation around the X axis at a given matrix transformation on the basis of + @param rad 旋转角度 + */ + static rotateX (out: Out, a: Out, rad: number): Out; + /** + !#zh 在给定矩阵变换基础上加入绕 Y 轴的旋转变换 + !#en Add about the Y axis rotation transformation in a given matrix transformation on the basis of + @param rad 旋转角度 + */ + static rotateY (out: Out, a: Out, rad: number): Out; + /** + !#zh 在给定矩阵变换基础上加入绕 Z 轴的旋转变换 + !#en Added about the Z axis at a given rotational transformation matrix transformation on the basis of + @param rad 旋转角度 + */ + static rotateZ (out: Out, a: Out, rad: number): Out; + /** + !#zh 计算位移矩阵 + !#en Displacement matrix calculation + */ + static fromTranslation (out: Out, v: VecLike): Out; + /** + !#zh 计算缩放矩阵 + !#en Scaling matrix calculation + */ + static fromScaling (out: Out, v: VecLike): Out; + /** + !#zh 计算旋转矩阵 + !#en Calculates the rotation matrix + */ + static fromRotation (out: Out, rad: number, axis: VecLike): Out; + /** + !#zh 计算绕 X 轴的旋转矩阵 + !#en Calculating rotation matrix about the X axis + */ + static fromXRotation (out: Out, rad: number): Out; + /** + !#zh 计算绕 Y 轴的旋转矩阵 + !#en Calculating rotation matrix about the Y axis + */ + static fromYRotation (out: Out, rad: number): Out; + /** + !#zh 计算绕 Z 轴的旋转矩阵 + !#en Calculating rotation matrix about the Z axis + */ + static fromZRotation (out: Out, rad: number): Out; + /** + !#zh 根据旋转和位移信息计算矩阵 + !#en The rotation and displacement information calculating matrix + */ + static fromRT (out: Out, q: Quat, v: VecLike): Out; + /** + !#zh 提取矩阵的位移信息, 默认矩阵中的变换以 S->R->T 的顺序应用 + !#en Extracting displacement information of the matrix, the matrix transform to the default sequential application S-> R-> T is + */ + static getTranslation (out: VecLike, mat: Out): VecLike; + /** + !#zh 提取矩阵的缩放信息, 默认矩阵中的变换以 S->R->T 的顺序应用 + !#en Scaling information extraction matrix, the matrix transform to the default sequential application S-> R-> T is + */ + static getScaling (out: VecLike, mat: Out): VecLike; + /** + !#zh 提取矩阵的旋转信息, 默认输入矩阵不含有缩放信息,如考虑缩放应使用 `toRTS` 函数。 + !#en Rotation information extraction matrix, the matrix containing no default input scaling information, such as the use of `toRTS` should consider the scaling function. + */ + static getRotation (out: Quat, mat: Out): Quat; + /** + !#zh 提取旋转、位移、缩放信息, 默认矩阵中的变换以 S->R->T 的顺序应用 + !#en Extracting rotational displacement, zoom information, the default matrix transformation in order S-> R-> T applications + */ + static toRTS (mat: Out, q: Quat, v: VecLike, s: VecLike): void; + /** + !#zh 根据旋转、位移、缩放信息计算矩阵,以 S->R->T 的顺序应用 + !#en The rotary displacement, the scaling matrix calculation information, the order S-> R-> T applications + */ + static fromRTS (out: Out, q: Quat, v: VecLike, s: VecLike): Out; + /** + !#zh 根据指定的旋转、位移、缩放及变换中心信息计算矩阵,以 S->R->T 的顺序应用 + !#en According to the specified rotation, displacement, and scale conversion matrix calculation information center, order S-> R-> T applications + @param q 旋转值 + @param v 位移值 + @param s 缩放值 + @param o 指定变换中心 + */ + static fromRTSOrigin (out: Out, q: Quat, v: VecLike, s: VecLike, o: VecLike): Out; + /** + !#zh 根据指定的旋转信息计算矩阵 + !#en The rotation matrix calculation information specified + */ + static fromQuat (out: Out, q: Quat): Out; + /** + !#zh 根据指定的视锥体信息计算矩阵 + !#en The matrix calculation information specified frustum + @param left 左平面距离 + @param right 右平面距离 + @param bottom 下平面距离 + @param top 上平面距离 + @param near 近平面距离 + @param far 远平面距离 + */ + static frustum (out: Out, left: number, right: number, bottom: number, top: number, near: number, far: number): Out; + /** + !#zh 计算透视投影矩阵 + !#en Perspective projection matrix calculation + @param fovy 纵向视角高度 + @param aspect 长宽比 + @param near 近平面距离 + @param far 远平面距离 + */ + static perspective (out: Out, fovy: number, aspect: number, near: number, far: number): Out; + /** + !#zh 计算正交投影矩阵 + !#en Computing orthogonal projection matrix + @param left 左平面距离 + @param right 右平面距离 + @param bottom 下平面距离 + @param top 上平面距离 + @param near 近平面距离 + @param far 远平面距离 + */ + static ortho (out: Out, left: number, right: number, bottom: number, top: number, near: number, far: number): Out; + /** + !#zh 根据视点计算矩阵,注意 `eye - center` 不能为零向量或与 `up` 向量平行 + !#en `Up` parallel vector or vector center` not be zero - the matrix calculation according to the viewpoint, note` eye + @param eye 当前位置 + @param center 目标视点 + @param up 视口上方向 + */ + static lookAt (out: Out, eye: VecLike, center: VecLike, up: VecLike): Out; + /** + !#zh 计算逆转置矩阵 + !#en Reversal matrix calculation + */ + static inverseTranspose (out: Out, a: Out): Out; + /** + !#zh 逐元素矩阵加法 + !#en Element by element matrix addition + */ + static add (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素矩阵减法 + !#en Matrix element by element subtraction + */ + static subtract (out: Out, a: Out, b: Out): Out; + /** + !#zh 矩阵标量乘法 + !#en Matrix scalar multiplication + */ + static multiplyScalar (out: Out, a: Out, b: number): Out; + /** + !#zh 逐元素矩阵标量乘加: A + B * scale + !#en Elements of the matrix by the scalar multiplication and addition: A + B * scale + */ + static multiplyScalarAndAdd (out: Out, a: Out, b: Out, scale: number): Out; + /** + !#zh 矩阵等价判断 + !#en Analyzing the equivalent matrix + */ + static strictEquals (a: Out, b: Out): boolean; + /** + !#zh 排除浮点数误差的矩阵近似等价判断 + !#en Negative floating point error is approximately equivalent to determining a matrix + */ + static equals (a: Out, b: Out, epsilon?: number): boolean; + /** + !#zh 矩阵转数组 + !#en Matrix transpose array + @param ofs 数组内的起始偏移量 + */ + static toArray > (out: Out, mat: IMat4Like, ofs?: number): Out; + /** + !#zh 数组转矩阵 + !#en Transfer matrix array + @param ofs 数组起始偏移量 + */ + static fromArray (out: Out, arr: IWritableArrayLike, ofs?: number): Out; + /** !#en Matrix Data + !#zh 矩阵数据 */ + m: Float64Array|Float32Array; + /** + !#en + Constructor + see {{#crossLink "cc/mat4:method"}}cc.mat4{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/mat4:method"}}cc.mat4{{/crossLink}} + */ + constructor ( m00?: number, m01?: number, m02?: number, m03?: number, m10?: number, m11?: number, m12?: number, m13?: number, m20?: number, m21?: number, m22?: number, m23?: number, m30?: number, m31?: number, m32?: number, m33?: number); + /** + !#en clone a Mat4 object + !#zh 克隆一个 Mat4 对象 + */ + clone(): Mat4; + /** + !#en Sets the matrix with another one's value + !#zh 用另一个矩阵设置这个矩阵的值。 + @param srcObj srcObj + */ + set(srcObj: Mat4): Mat4; + /** + !#en Check whether two matrix equal + !#zh 当前的矩阵是否与指定的矩阵相等。 + @param other other + */ + equals(other: Mat4): boolean; + /** + !#en Check whether two matrix equal with default degree of variance. + !#zh + 近似判断两个矩阵是否相等。
+ 判断 2 个矩阵是否在默认误差范围之内,如果在则返回 true,反之则返回 false。 + @param other other + */ + fuzzyEquals(other: Mat4): boolean; + /** + !#en Transform to string with matrix informations + !#zh 转换为方便阅读的字符串。 + */ + toString(): string; + /** + Set the matrix to the identity matrix + */ + identity(): Mat4; + /** + Transpose the values of a mat4 + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created. + */ + transpose(out?: Mat4): Mat4; + /** + Inverts a mat4 + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created. + */ + invert(out?: Mat4): Mat4; + /** + Calculates the adjugate of a mat4 + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created. + */ + adjoint(out?: Mat4): Mat4; + /** + Calculates the determinant of a mat4 + */ + determinant(): number; + /** + Adds two Mat4 + @param other the second operand + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created. + */ + add(other: Mat4, out?: Mat4): Mat4; + /** + Subtracts the current matrix with another one + @param other the second operand + */ + subtract(other: Mat4): Mat4; + /** + Subtracts the current matrix with another one + @param other the second operand + */ + multiply(other: Mat4): Mat4; + /** + Multiply each element of the matrix by a scalar. + @param number amount to scale the matrix's elements by + */ + multiplyScalar(number: number): Mat4; + /** + Translate a mat4 by the given vector + @param v vector to translate by + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created + */ + translate(v: Vec3, out?: Mat4): Mat4; + /** + Scales the mat4 by the dimensions in the given vec3 + @param v vector to scale by + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created + */ + scale(v: Vec3, out?: Mat4): Mat4; + /** + Rotates a mat4 by the given angle around the given axis + @param rad the angle to rotate the matrix by + @param axis the axis to rotate around + @param out the receiving matrix, you can pass the same matrix to save result to itself, if not provided, a new matrix will be created + */ + rotate(rad: number, axis: Vec3, out?: Mat4): Mat4; + /** + Returns the translation vector component of a transformation matrix. + @param out Vector to receive translation component, if not provided, a new vec3 will be created + */ + getTranslation(out: Vec3): Vec3; + /** + Returns the scale factor component of a transformation matrix + @param out Vector to receive scale component, if not provided, a new vec3 will be created + */ + getScale(out: Vec3): Vec3; + /** + Returns the rotation factor component of a transformation matrix + @param out Vector to receive rotation component, if not provided, a new quaternion object will be created + */ + getRotation(out: Quat): Quat; + /** + Restore the matrix values from a quaternion rotation, vector translation and vector scale + @param q Rotation quaternion + @param v Translation vector + @param s Scaling vector + */ + fromRTS(q: Quat, v: Vec3, s: Vec3): Mat4; + /** + Restore the matrix values from a quaternion rotation + @param q Rotation quaternion + */ + fromQuat(q: Quat): Mat4; + } + /** !#en Representation of 2D vectors and points. + !#zh 表示 2D 向量和坐标 */ + export class Quat extends ValueType { + /** + !#en + Constructor + see {{#crossLink "cc/quat:method"}}cc.quat{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/quat:method"}}cc.quat{{/crossLink}} + @param x x + @param y y + @param z z + @param w w + */ + constructor(x?: number, y?: number, z?: number, w?: number); + /** + !#en Calculate the multiply result between this quaternion and another one + !#zh 计算四元数乘积的结果 + @param other other + @param out out + */ + mul(other: Quat, out?: Quat): Quat; + /** + !#zh 获得指定四元数的拷贝 + !#en Obtaining copy specified quaternion + */ + static clone (a: Out): Quat; + /** + !#zh 复制目标四元数 + !#en Copy quaternion target + */ + static copy (out: Out, a: QuatLike): Out; + /** + !#zh 设置四元数值 + !#en Provided Quaternion Value + */ + static set (out: Out, x: number, y: number, z: number, w: number): Out; + /** + !#zh 将目标赋值为单位四元数 + !#en The target of an assignment as a unit quaternion + */ + static identity (out: Out): Out; + /** + !#zh 设置四元数为两向量间的最短路径旋转,默认两向量都已归一化 + !#en Set quaternion rotation is the shortest path between two vectors, the default two vectors are normalized + */ + static rotationTo (out: Out, a: VecLike, b: VecLike): Out; + /** + !#zh 获取四元数的旋转轴和旋转弧度 + !#en Get the rotary shaft and the arc of rotation quaternion + @param outAxis 旋转轴输出 + @param q 源四元数 + */ + static getAxisAngle (outAxis: VecLike, q: Out): number; + /** + !#zh 四元数乘法 + !#en Quaternion multiplication + */ + static multiply (out: Out, a: QuatLike_1, b: QuatLike_2): Out; + /** + !#zh 四元数标量乘法 + !#en Quaternion scalar multiplication + */ + static multiplyScalar (out: Out, a: Out, b: number): Out; + /** + !#zh 四元数乘加:A + B * scale + !#en Quaternion multiplication and addition: A + B * scale + */ + static scaleAndAdd (out: Out, a: Out, b: Out, scale: number): Out; + /** + !#zh 绕 X 轴旋转指定四元数 + !#en About the X axis specified quaternion + @param rad 旋转弧度 + */ + static rotateX (out: Out, a: Out, rad: number): Out; + /** + !#zh 绕 Y 轴旋转指定四元数 + !#en Rotation about the Y axis designated quaternion + @param rad 旋转弧度 + */ + static rotateY (out: Out, a: Out, rad: number): Out; + /** + !#zh 绕 Z 轴旋转指定四元数 + !#en Around the Z axis specified quaternion + @param rad 旋转弧度 + */ + static rotateZ (out: Out, a: Out, rad: number): Out; + /** + !#zh 绕世界空间下指定轴旋转四元数 + !#en Space around the world at a given axis of rotation quaternion + @param axis 旋转轴,默认已归一化 + @param rad 旋转弧度 + */ + static rotateAround (out: Out, rot: Out, axis: VecLike, rad: number): Out; + /** + !#zh 绕本地空间下指定轴旋转四元数 + !#en Local space around the specified axis rotation quaternion + @param axis 旋转轴 + @param rad 旋转弧度 + */ + static rotateAroundLocal (out: Out, rot: Out, axis: VecLike, rad: number): Out; + /** + !#zh 根据 xyz 分量计算 w 分量,默认已归一化 + !#en The component w xyz components calculated, normalized by default + */ + static calculateW (out: Out, a: Out): Out; + /** + !#zh 四元数点积(数量积) + !#en Quaternion dot product (scalar product) + */ + static dot (a: Out, b: Out): number; + /** + !#zh 逐元素线性插值: A + t * (B - A) + !#en Element by element linear interpolation: A + t * (B - A) + */ + static lerp (out: Out, a: Out, b: Out, t: number): Out; + /** + !#zh 四元数球面插值 + !#en Spherical quaternion interpolation + */ + static slerp(out: Out, a: QuatLike_1, b: QuatLike_2, t: number): Out; + /** + !#zh 带两个控制点的四元数球面插值 + !#en Quaternion with two spherical interpolation control points + */ + static sqlerp (out: Out, a: Out, b: Out, c: Out, d: Out, t: number): Out; + /** + !#zh 四元数求逆 + !#en Quaternion inverse + */ + static invert (out: Out, a: QuatLike): Out; + /** + !#zh 求共轭四元数,对单位四元数与求逆等价,但更高效 + !#en Conjugating a quaternion, and the unit quaternion equivalent to inversion, but more efficient + */ + static conjugate (out: Out, a: Out): Out; + /** + !#zh 求四元数长度 + !#en Seek length quaternion + */ + static len (a: Out): number; + /** + !#zh 求四元数长度平方 + !#en Seeking quaternion square of the length + */ + static lengthSqr (a: Out): number; + /** + !#zh 归一化四元数 + !#en Normalized quaternions + */ + static normalize (out: Out, a: Out): Out; + /** + !#zh 根据本地坐标轴朝向计算四元数,默认三向量都已归一化且相互垂直 + !#en Calculated according to the local orientation quaternion coordinate axis, the default three vectors are normalized and mutually perpendicular + */ + static fromAxes (out: Out, xAxis: VecLike, yAxis: VecLike, zAxis: VecLike): Out; + /** + !#zh 根据视口的前方向和上方向计算四元数 + !#en The forward direction and the direction of the viewport computing quaternion + @param view 视口面向的前方向,必须归一化 + @param up 视口的上方向,必须归一化,默认为 (0, 1, 0) + */ + static fromViewUp (out: Out, view: Vec3, up?: Vec3): Out; + /** + !#zh 根据旋转轴和旋转弧度计算四元数 + !#en The quaternion calculated and the arc of rotation of the rotary shaft + */ + static fromAxisAngle (out: Out, axis: VecLike, rad: number): Out; + /** + !#zh 根据三维矩阵信息计算四元数,默认输入矩阵不含有缩放信息 + !#en Calculating the three-dimensional quaternion matrix information, default zoom information input matrix does not contain + */ + static fromMat3 (out: Out, mat: Mat3): Out; + /** + !#zh 根据欧拉角信息计算四元数,旋转顺序为 YZX + !#en The quaternion calculated Euler angle information, rotation order YZX + */ + static fromEuler (out: Out, x: number, y: number, z: number): Out; + /** + !#zh 返回定义此四元数的坐标系 X 轴向量 + !#en This returns the result of the quaternion coordinate system X-axis vector + */ + static toAxisX (out: VecLike, q: Out): VecLike; + /** + !#zh 返回定义此四元数的坐标系 Y 轴向量 + !#en This returns the result of the quaternion coordinate system Y axis vector + */ + static toAxisY (out: VecLike, q: Out): VecLike; + /** + !#zh 返回定义此四元数的坐标系 Z 轴向量 + !#en This returns the result of the quaternion coordinate system the Z-axis vector + */ + static toAxisZ (out: VecLike, q: Out): VecLike; + /** + !#zh 根据四元数计算欧拉角,返回角度 x, y 在 [-180, 180] 区间内, z 默认在 [-90, 90] 区间内,旋转顺序为 YZX + !#en The quaternion calculated Euler angles, return angle x, y in the [-180, 180] interval, z default the range [-90, 90] interval, the rotation order YZX + @param outerZ z 取值范围区间改为 [-180, -90] U [90, 180] + */ + static toEuler (out: Out, q: IQuatLike, outerZ?: boolean): Out; + /** + !#zh 四元数等价判断 + !#en Analyzing quaternion equivalent + */ + static strictEquals (a: Out, b: Out): boolean; + /** + !#zh 排除浮点数误差的四元数近似等价判断 + !#en Negative floating point error quaternion approximately equivalent Analyzing + */ + static equals (a: Out, b: Out, epsilon?: number): boolean; + /** + !#zh 四元数转数组 + !#en Quaternion rotation array + @param ofs 数组内的起始偏移量 + */ + static toArray > (out: Out, q: IQuatLike, ofs?: number): Out; + /** + !#zh 数组转四元数 + !#en Array to a quaternion + @param ofs 数组起始偏移量 + */ + static fromArray (out: Out, arr: IWritableArrayLike, ofs?: number): Out; + x: number; + y: number; + z: number; + w: number; + /** + !#en clone a Quat object and return the new object + !#zh 克隆一个四元数并返回 + */ + clone(): Quat; + /** + !#en Set values with another quaternion + !#zh 用另一个四元数的值设置到当前对象上。 + @param newValue !#en new value to set. !#zh 要设置的新值 + */ + set(newValue: Quat): Quat; + /** + !#en Check whether current quaternion equals another + !#zh 当前的四元数是否与指定的四元数相等。 + @param other other + */ + equals(other: Quat): boolean; + /** + !#en Convert quaternion to euler + !#zh 转换四元数到欧拉角 + @param out out + */ + toEuler(out: Vec3): Vec3; + /** + !#en Convert euler to quaternion + !#zh 转换欧拉角到四元数 + @param euler euler + */ + fromEuler(euler: Vec3): Quat; + /** + !#en Calculate the interpolation result between this quaternion and another one with given ratio + !#zh 计算四元数的插值结果 + @param to to + @param ratio ratio + @param out out + */ + lerp(to: Quat, ratio: number, out?: Quat): Quat; + /** + !#en Calculate the multiply result between this quaternion and another one + !#zh 计算四元数乘积的结果 + @param other other + */ + multiply(other: Quat): Quat; + /** + !#en Rotates a quaternion by the given angle (in radians) about a world space axis. + !#zh 围绕世界空间轴按给定弧度旋转四元数 + @param rot Quaternion to rotate + @param axis The axis around which to rotate in world space + @param rad Angle (in radians) to rotate + @param out Quaternion to store result + */ + rotateAround(rot: Quat, axis: Vec3, rad: number, out?: Quat): Quat; + } + /** Mathematical 3x3 matrix. + + NOTE: we use column-major matrix for all matrix calculation. + + This may lead to some confusion when referencing OpenGL documentation, + however, which represents out all matricies in column-major format. + This means that while in code a matrix may be typed out as: + + [1, 0, 0, 0, + 0, 1, 0, 0, + 0, 0, 1, 0, + x, y, z, 0] + + The same matrix in the [OpenGL documentation](https://www.khronos.org/registry/OpenGL-Refpages/gl2.1/xhtml/glTranslate.xml) + is written as: + + 1 0 0 x + 0 1 0 y + 0 0 1 z + 0 0 0 0 + + Please rest assured, however, that they are the same thing! + This is not unique to glMatrix, either, as OpenGL developers have long been confused by the + apparent lack of consistency between the memory layout and the documentation. */ + export class Mat3 extends ValueType { + /** Identity of Mat3 */ + static IDENTITY: Mat3; + /** + !#zh 矩阵转数组 + !#en Matrix transpose array + @param ofs 数组内的起始偏移量 + */ + static toArray > (out: Out, mat: IMat3Like, ofs?: number): Out; + /** + !#zh 数组转矩阵 + !#en Transfer matrix array + @param ofs 数组起始偏移量 + */ + static fromArray (out: Out, arr: IWritableArrayLike, ofs?: number): Out; + /** !#en Matrix Data + !#zh 矩阵数据 */ + m: Float64Array|Float32Array; + constructor (m00?: number | Float32Array, m01?: number, m02?: number, m03?: number, m04?: number, m05?: number, m06?: number, m07?: number, m08?: number); + } + /** !#en + cc.Size is the class for size object,
+ please do not use its constructor to create sizes,
+ use {{#crossLink "cc/size:method"}}{{/crossLink}} alias function instead.
+ It will be deprecated soon, please use cc.Vec2 instead. + + !#zh + cc.Size 是 size 对象的类。
+ 请不要使用它的构造函数创建的 size,
+ 使用 {{#crossLink "cc/size:method"}}{{/crossLink}} 别名函数。
+ 它不久将被取消,请使用cc.Vec2代替。 */ + export class Size { + /** + + @param width width + @param height height + */ + constructor(width: number|Size, height?: number); + /** !#en return a Size object with width = 0 and height = 0. + !#zh 返回一个宽度为 0 和高度为 0 的 Size 对象。 */ + static ZERO: Size; + width: number; + height: number; + /** + !#en TODO + !#zh 克隆 size 对象。 + + @example + ```js + var a = new cc.size(10, 10); + a.clone();// return Size {width: 0, height: 0}; + ``` + */ + clone(): Size; + /** + !#en TODO + !#zh 当前 Size 对象是否等于指定 Size 对象。 + @param other other + + @example + ```js + var a = new cc.size(10, 10); + a.equals(new cc.size(10, 10));// return true; + ``` + */ + equals(other: Size): boolean; + /** + !#en TODO + !#zh 线性插值。 + @param to to + @param ratio the interpolation coefficient. + @param out optional, the receiving vector. + + @example + ```js + var a = new cc.size(10, 10); + var b = new cc.rect(50, 50, 100, 100); + update (dt) { + // method 1; + var c = a.lerp(b, dt * 0.1); + // method 2; + a.lerp(b, dt * 0.1, c); + } + ``` + */ + lerp(to: Rect, ratio: number, out?: Size): Size; + /** + !#en TODO + !#zh 转换为方便阅读的字符串。 + + @example + ```js + var a = new cc.size(10, 10); + a.toString();// return "(10.00, 10.00)"; + ``` + */ + toString(): string; + } + /** !#en The base class of all value types. + !#zh 所有值类型的基类。 */ + export class ValueType { + /** + !#en This method returns an exact copy of current value. + !#zh 克隆当前值,该方法返回一个新对象,新对象的值和原对象相等。 + */ + clone(): ValueType; + /** + !#en Compares this object with the other one. + !#zh 当前对象是否等于指定对象。 + @param other other + */ + equals(other: ValueType): boolean; + /** + !#en + Linearly interpolates between this value to to value by ratio which is in the range [0, 1]. + When ratio = 0 returns this. When ratio = 1 return to. When ratio = 0.5 returns the average of this and to. + !#zh + 线性插值。
+ 当 ratio = 0 时返回自身,ratio = 1 时返回目标,ratio = 0.5 返回自身和目标的平均值。。 + @param to the to value + @param ratio the interpolation coefficient + */ + lerp(to: ValueType, ratio: number): ValueType; + /** + !#en + Copys all the properties from another given object to this value. + !#zh + 从其它对象把所有属性复制到当前对象。 + @param source the source to copy + */ + set(source: ValueType): void; + /** + !#en Convert to a readable string. + !#zh 转换为方便阅读的字符串。 + */ + toString(): string; + } + /** !#en Representation of 2D vectors and points. + !#zh 表示 2D 向量和坐标 */ + export class Vec2 extends ValueType { + /** + !#en Returns the length of this vector. + !#zh 返回该向量的长度。 + + @example + ```js + var v = cc.v2(10, 10); + v.mag(); // return 14.142135623730951; + ``` + */ + mag(): number; + /** + !#en Returns the squared length of this vector. + !#zh 返回该向量的长度平方。 + + @example + ```js + var v = cc.v2(10, 10); + v.magSqr(); // return 200; + ``` + */ + magSqr(): number; + /** + !#en Subtracts one vector from this. If you want to save result to another vector, use sub() instead. + !#zh 向量减法。如果你想保存结果到另一个向量,可使用 sub() 代替。 + @param vector vector + + @example + ```js + var v = cc.v2(10, 10); + v.subSelf(cc.v2(5, 5));// return Vec2 {x: 5, y: 5}; + ``` + */ + subSelf(vector: Vec2): Vec2; + /** + !#en Subtracts one vector from this, and returns the new result. + !#zh 向量减法,并返回新结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + + @example + ```js + var v = cc.v2(10, 10); + v.sub(cc.v2(5, 5)); // return Vec2 {x: 5, y: 5}; + var v1 = new Vec2; + v.sub(cc.v2(5, 5), v1); // return Vec2 {x: 5, y: 5}; + ``` + */ + sub(vector: Vec2, out?: Vec2): Vec2; + /** + !#en Multiplies this by a number. If you want to save result to another vector, use mul() instead. + !#zh 缩放当前向量。如果你想结果保存到另一个向量,可使用 mul() 代替。 + @param num num + + @example + ```js + var v = cc.v2(10, 10); + v.mulSelf(5);// return Vec2 {x: 50, y: 50}; + ``` + */ + mulSelf(num: number): Vec2; + /** + !#en Multiplies by a number, and returns the new result. + !#zh 缩放向量,并返回新结果。 + @param num num + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + + @example + ```js + var v = cc.v2(10, 10); + v.mul(5); // return Vec2 {x: 50, y: 50}; + var v1 = new Vec2; + v.mul(5, v1); // return Vec2 {x: 50, y: 50}; + ``` + */ + mul(num: number, out?: Vec2): Vec2; + /** + !#en Divides by a number. If you want to save result to another vector, use div() instead. + !#zh 向量除法。如果你想结果保存到另一个向量,可使用 div() 代替。 + @param num num + + @example + ```js + var v = cc.v2(10, 10); + v.divSelf(5); // return Vec2 {x: 2, y: 2}; + ``` + */ + divSelf(num: number): Vec2; + /** + !#en Divides by a number, and returns the new result. + !#zh 向量除法,并返回新的结果。 + @param num num + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + + @example + ```js + var v = cc.v2(10, 10); + v.div(5); // return Vec2 {x: 2, y: 2}; + var v1 = new Vec2; + v.div(5, v1); // return Vec2 {x: 2, y: 2}; + ``` + */ + div(num: number, out?: Vec2): Vec2; + /** + !#en Multiplies two vectors. + !#zh 分量相乘。 + @param vector vector + + @example + ```js + var v = cc.v2(10, 10); + v.scaleSelf(cc.v2(5, 5));// return Vec2 {x: 50, y: 50}; + ``` + */ + scaleSelf(vector: Vec2): Vec2; + /** + !#en Multiplies two vectors, and returns the new result. + !#zh 分量相乘,并返回新的结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + + @example + ```js + var v = cc.v2(10, 10); + v.scale(cc.v2(5, 5)); // return Vec2 {x: 50, y: 50}; + var v1 = new Vec2; + v.scale(cc.v2(5, 5), v1); // return Vec2 {x: 50, y: 50}; + ``` + */ + scale(vector: Vec2, out?: Vec2): Vec2; + /** + !#en Negates the components. If you want to save result to another vector, use neg() instead. + !#zh 向量取反。如果你想结果保存到另一个向量,可使用 neg() 代替。 + + @example + ```js + var v = cc.v2(10, 10); + v.negSelf(); // return Vec2 {x: -10, y: -10}; + ``` + */ + negSelf(): Vec2; + /** + !#en Negates the components, and returns the new result. + !#zh 返回取反后的新向量。 + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + + @example + ```js + var v = cc.v2(10, 10); + var v1 = new Vec2; + v.neg(v1); // return Vec2 {x: -10, y: -10}; + ``` + */ + neg(out?: Vec2): Vec2; + /** !#en return a Vec2 object with x = 1 and y = 1. + !#zh 新 Vec2 对象。 */ + static ONE: Vec2; + /** !#en return a Vec2 object with x = 0 and y = 0. + !#zh 返回 x = 0 和 y = 0 的 Vec2 对象。 */ + static ZERO: Vec2; + /** !#en return a readonly Vec2 object with x = 0 and y = 0. + !#zh 返回一个 x = 0 和 y = 0 的 Vec2 只读对象。 */ + static ZERO_R: Vec2; + /** !#en return a Vec2 object with x = 0 and y = 1. + !#zh 返回 x = 0 和 y = 1 的 Vec2 对象。 */ + static UP: Vec2; + /** !#en return a readonly Vec2 object with x = 0 and y = 1. + !#zh 返回 x = 0 和 y = 1 的 Vec2 只读对象。 */ + static UP_R: Vec2; + /** !#en return a readonly Vec2 object with x = 1 and y = 0. + !#zh 返回 x = 1 和 y = 0 的 Vec2 只读对象。 */ + static RIGHT: Vec2; + /** !#en return a Vec2 object with x = 1 and y = 0. + !#zh 返回 x = 1 和 y = 0 的 Vec2 对象。 */ + static RIGHT_R: Vec2; + /** + !#zh 获得指定向量的拷贝 + */ + static clone (a: Out): Vec2; + /** + !#zh 复制指定向量的值 + */ + static copy (out: Out, a: Out): Out; + /** + !#zh 设置向量值 + */ + static set (out: Out, x: number, y: number): Out; + /** + !#zh 逐元素向量加法 + */ + static add (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量减法 + */ + static subtract (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量乘法 + */ + static multiply (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量除法 + */ + static divide (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量向上取整 + */ + static ceil (out: Out, a: Out): Out; + /** + !#zh 逐元素向量向下取整 + */ + static floor (out: Out, a: Out): Out; + /** + !#zh 逐元素向量最小值 + */ + static min (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量最大值 + */ + static max (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量四舍五入取整 + */ + static round (out: Out, a: Out): Out; + /** + !#zh 向量标量乘法 + */ + static multiplyScalar (out: Out, a: Out, b: number): Out; + /** + !#zh 逐元素向量乘加: A + B * scale + */ + static scaleAndAdd (out: Out, a: Out, b: Out, scale: number): Out; + /** + !#zh 求两向量的欧氏距离 + */ + static distance (a: Out, b: Out): number; + /** + !#zh 求两向量的欧氏距离平方 + */ + static squaredDistance (a: Out, b: Out): number; + /** + !#zh 求向量长度 + */ + static len (a: Out): number; + /** + !#zh 求向量长度平方 + */ + static lengthSqr (a: Out): number; + /** + !#zh 逐元素向量取负 + */ + static negate (out: Out, a: Out): Out; + /** + !#zh 逐元素向量取倒数,接近 0 时返回 Infinity + */ + static inverse (out: Out, a: Out): Out; + /** + !#zh 逐元素向量取倒数,接近 0 时返回 0 + */ + static inverseSafe (out: Out, a: Out): Out; + /** + !#zh 归一化向量 + */ + static normalize (out: Out, a: Vec2Like): Out; + /** + !#zh 向量点积(数量积) + */ + static dot (a: Out, b: Out): number; + /** + !#zh 向量叉积(向量积),注意二维向量的叉积为与 Z 轴平行的三维向量 + */ + static cross (out: Vec2, a: Out, b: Out): Vec2; + /** + !#zh 逐元素向量线性插值: A + t * (B - A) + */ + static lerp (out: Out, a: Out, b: Out, t: number): Out; + /** + !#zh 生成一个在单位圆上均匀分布的随机向量 + */ + static random (out: Out, scale?: number): Out; + /** + !#zh 向量与三维矩阵乘法,默认向量第三位为 1。 + */ + static transformMat3 (out: Out, a: Out, mat: IMat3Like): Out; + /** + !#zh 向量与四维矩阵乘法,默认向量第三位为 0,第四位为 1。 + */ + static transformMat4 (out: Out, a: Out, mat: MatLike): Out; + /** + !#zh 向量等价判断 + */ + static strictEquals (a: Out, b: Out): boolean; + /** + !#zh 排除浮点数误差的向量近似等价判断 + */ + static equals (a: Out, b: Out, epsilon?: number): boolean; + /** + !#zh 排除浮点数误差的向量近似等价判断 + */ + static angle (a: Out, b: Out): number; + /** + !#zh 向量转数组 + */ + static toArray > (out: Out, v: IVec2Like, ofs?: number): Out; + /** + !#zh 数组转向量 + */ + static fromArray (out: Out, arr: IWritableArrayLike, ofs?: number): Out; + x: number; + y: number; + /** + !#en + Constructor + see {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} or {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec2:method"}}cc.v2{{/crossLink}} 或者 {{#crossLink "cc/p:method"}}cc.p{{/crossLink}} + @param x x + @param y y + */ + constructor(x?: number, y?: number); + /** + !#en clone a Vec2 object + !#zh 克隆一个 Vec2 对象 + */ + clone(): Vec2; + /** + !#en Sets vector with another's value + !#zh 设置向量值。 + @param newValue !#en new value to set. !#zh 要设置的新值 + */ + set(newValue: Vec2): Vec2; + /** + !#en Check whether two vector equal + !#zh 当前的向量是否与指定的向量相等。 + @param other other + */ + equals(other: Vec2): boolean; + /** + !#en Check whether two vector equal with some degree of variance. + !#zh + 近似判断两个点是否相等。
+ 判断 2 个向量是否在指定数值的范围之内,如果在则返回 true,反之则返回 false。 + @param other other + @param variance variance + */ + fuzzyEquals(other: Vec2, variance: number): boolean; + /** + !#en Transform to string with vector informations + !#zh 转换为方便阅读的字符串。 + */ + toString(): string; + /** + !#en Calculate linear interpolation result between this vector and another one with given ratio + !#zh 线性插值。 + @param to to + @param ratio the interpolation coefficient + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + */ + lerp(to: Vec2, ratio: number, out?: Vec2): Vec2; + /** + !#en Clamp the vector between from float and to float. + !#zh + 返回指定限制区域后的向量。
+ 向量大于 max_inclusive 则返回 max_inclusive。
+ 向量小于 min_inclusive 则返回 min_inclusive。
+ 否则返回自身。 + @param min_inclusive min_inclusive + @param max_inclusive max_inclusive + + @example + ```js + var min_inclusive = cc.v2(0, 0); + var max_inclusive = cc.v2(20, 20); + var v1 = cc.v2(20, 20).clampf(min_inclusive, max_inclusive); // Vec2 {x: 20, y: 20}; + var v2 = cc.v2(0, 0).clampf(min_inclusive, max_inclusive); // Vec2 {x: 0, y: 0}; + var v3 = cc.v2(10, 10).clampf(min_inclusive, max_inclusive); // Vec2 {x: 10, y: 10}; + ``` + */ + clampf(min_inclusive: Vec2, max_inclusive: Vec2): Vec2; + /** + !#en Adds this vector. + !#zh 向量加法。 + @param vector vector + @param out out + + @example + ```js + var v = cc.v2(10, 10); + v.add(cc.v2(5, 5));// return Vec2 {x: 15, y: 15}; + ``` + */ + add(vector: Vec2, out?: Vec2): Vec2; + /** + !#en Adds this vector. If you want to save result to another vector, use add() instead. + !#zh 向量加法。如果你想保存结果到另一个向量,使用 add() 代替。 + @param vector vector + */ + addSelf(vector: Vec2): Vec2; + /** + !#en Subtracts one vector from this. + !#zh 向量减法。 + @param vector vector + + @example + ```js + var v = cc.v2(10, 10); + v.subSelf(cc.v2(5, 5));// return Vec2 {x: 5, y: 5}; + ``` + */ + subtract(vector: Vec2): Vec2; + /** + !#en Multiplies this by a number. + !#zh 缩放当前向量。 + @param num num + + @example + ```js + var v = cc.v2(10, 10); + v.multiply(5);// return Vec2 {x: 50, y: 50}; + ``` + */ + multiplyScalar(num: number): Vec2; + /** + !#en Multiplies two vectors. + !#zh 分量相乘。 + @param vector vector + + @example + ```js + var v = cc.v2(10, 10); + v.multiply(cc.v2(5, 5));// return Vec2 {x: 50, y: 50}; + ``` + */ + multiply(vector: Vec2): Vec2; + /** + !#en Divides by a number. + !#zh 向量除法。 + @param num num + + @example + ```js + var v = cc.v2(10, 10); + v.divide(5); // return Vec2 {x: 2, y: 2}; + ``` + */ + divide(num: number): Vec2; + /** + !#en Negates the components. + !#zh 向量取反。 + + @example + ```js + var v = cc.v2(10, 10); + v.negate(); // return Vec2 {x: -10, y: -10}; + ``` + */ + negate(): Vec2; + /** + !#en Dot product + !#zh 当前向量与指定向量进行点乘。 + @param vector vector + + @example + ```js + var v = cc.v2(10, 10); + v.dot(cc.v2(5, 5)); // return 100; + ``` + */ + dot(vector?: Vec2): number; + /** + !#en Cross product + !#zh 当前向量与指定向量进行叉乘。 + @param vector vector + + @example + ```js + var v = cc.v2(10, 10); + v.cross(cc.v2(5, 5)); // return 0; + ``` + */ + cross(vector?: Vec2): number; + /** + !#en Returns the length of this vector. + !#zh 返回该向量的长度。 + + @example + ```js + var v = cc.v2(10, 10); + v.len(); // return 14.142135623730951; + ``` + */ + len(): number; + /** + !#en Returns the squared length of this vector. + !#zh 返回该向量的长度平方。 + + @example + ```js + var v = cc.v2(10, 10); + v.lengthSqr(); // return 200; + ``` + */ + lengthSqr(): number; + /** + !#en Make the length of this vector to 1. + !#zh 向量归一化,让这个向量的长度为 1。 + + @example + ```js + var v = cc.v2(10, 10); + v.normalizeSelf(); // return Vec2 {x: 0.7071067811865475, y: 0.7071067811865475}; + ``` + */ + normalizeSelf(): Vec2; + /** + !#en + Returns this vector with a magnitude of 1.
+
+ Note that the current vector is unchanged and a new normalized vector is returned. If you want to normalize the current vector, use normalizeSelf function. + !#zh + 返回归一化后的向量。
+
+ 注意,当前向量不变,并返回一个新的归一化向量。如果你想来归一化当前向量,可使用 normalizeSelf 函数。 + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + */ + normalize(out?: Vec2): Vec2; + /** + !#en Get angle in radian between this and vector. + !#zh 夹角的弧度。 + @param vector vector + */ + angle(vector: Vec2): number; + /** + !#en Get angle in radian between this and vector with direction. + !#zh 带方向的夹角的弧度。 + @param vector vector + */ + signAngle(vector: Vec2): number; + /** + !#en rotate + !#zh 返回旋转给定弧度后的新向量。 + @param radians radians + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + */ + rotate(radians: number, out?: Vec2): Vec2; + /** + !#en rotate self + !#zh 按指定弧度旋转向量。 + @param radians radians + */ + rotateSelf(radians: number): Vec2; + /** + !#en Calculates the projection of the current vector over the given vector. + !#zh 返回当前向量在指定 vector 向量上的投影向量。 + @param vector vector + + @example + ```js + var v1 = cc.v2(20, 20); + var v2 = cc.v2(5, 5); + v1.project(v2); // Vec2 {x: 20, y: 20}; + ``` + */ + project(vector: Vec2): Vec2; + /** + Transforms the vec2 with a mat4. 3rd vector component is implicitly '0', 4th vector component is implicitly '1' + @param m matrix to transform with + @param out the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + */ + transformMat4(m: Mat4, out?: Vec2): Vec2; + /** + Returns the maximum value in x, y. + */ + maxAxis(): number; + } + /** !#en A 2D rectangle defined by x, y position and width, height. + !#zh 通过位置和宽高定义的 2D 矩形。 */ + export class Rect extends ValueType { + /** + !#en + Constructor of Rect class. + see {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} for convenience method. + !#zh + Rect类的构造函数。可以通过 {{#crossLink "cc/rect:method"}} cc.rect {{/crossLink}} 简便方法进行创建。 + @param x x + @param y y + @param w w + @param h h + */ + constructor(x?: number, y?: number, w?: number, h?: number); + /** + !#en Creates a rectangle from two coordinate values. + !#zh 根据指定 2 个坐标创建出一个矩形区域。 + @param v1 v1 + @param v2 v2 + + @example + ```js + cc.Rect.fromMinMax(cc.v2(10, 10), cc.v2(20, 20)); // Rect {x: 10, y: 10, width: 10, height: 10}; + ``` + */ + static fromMinMax(v1: Vec2, v2: Vec2): Rect; + x: number; + y: number; + width: number; + height: number; + /** + !#en TODO + !#zh 克隆一个新的 Rect。 + + @example + ```js + var a = new cc.Rect(0, 0, 10, 10); + a.clone();// Rect {x: 0, y: 0, width: 10, height: 10} + ``` + */ + clone(): Rect; + /** + !#en TODO + !#zh 是否等于指定的矩形。 + @param other other + + @example + ```js + var a = new cc.Rect(0, 0, 10, 10); + var b = new cc.Rect(0, 0, 10, 10); + a.equals(b);// true; + ``` + */ + equals(other: Rect): boolean; + /** + !#en TODO + !#zh 线性插值 + @param to to + @param ratio the interpolation coefficient. + @param out optional, the receiving vector. + + @example + ```js + var a = new cc.Rect(0, 0, 10, 10); + var b = new cc.Rect(50, 50, 100, 100); + update (dt) { + // method 1; + var c = a.lerp(b, dt * 0.1); + // method 2; + a.lerp(b, dt * 0.1, c); + } + ``` + */ + lerp(to: Rect, ratio: number, out?: Rect): Rect; + /** + !#en Check whether the current rectangle intersects with the given one + !#zh 当前矩形与指定矩形是否相交。 + @param rect rect + + @example + ```js + var a = new cc.Rect(0, 0, 10, 10); + var b = new cc.Rect(0, 0, 20, 20); + a.intersects(b);// true + ``` + */ + intersects(rect: Rect): boolean; + /** + !#en Returns the overlapping portion of 2 rectangles. + !#zh 返回 2 个矩形重叠的部分。 + @param out Stores the result + @param rectB rectB + + @example + ```js + var a = new cc.Rect(0, 10, 20, 20); + var b = new cc.Rect(0, 10, 10, 10); + var intersection = new cc.Rect(); + a.intersection(intersection, b); // intersection {x: 0, y: 10, width: 10, height: 10}; + ``` + */ + intersection(out: Rect, rectB: Rect): Rect; + /** + !#en Check whether the current rect contains the given point + !#zh 当前矩形是否包含指定坐标点。 + Returns true if the point inside this rectangle. + @param point point + + @example + ```js + var a = new cc.Rect(0, 0, 10, 10); + var b = new cc.Vec2(0, 5); + a.contains(b);// true + ``` + */ + contains(point: Vec2): boolean; + /** + !#en Returns true if the other rect totally inside this rectangle. + !#zh 当前矩形是否包含指定矩形。 + @param rect rect + + @example + ```js + var a = new cc.Rect(0, 0, 20, 20); + var b = new cc.Rect(0, 0, 10, 10); + a.containsRect(b);// true + ``` + */ + containsRect(rect: Rect): boolean; + /** + !#en Returns the smallest rectangle that contains the current rect and the given rect. + !#zh 返回一个包含当前矩形和指定矩形的最小矩形。 + @param out Stores the result + @param rectB rectB + + @example + ```js + var a = new cc.Rect(0, 10, 20, 20); + var b = new cc.Rect(0, 10, 10, 10); + var union = new cc.Rect(); + a.union(union, b); // union {x: 0, y: 10, width: 20, height: 20}; + ``` + */ + union(out: Rect, rectB: Rect): Rect; + /** + !#en Apply matrix4 to the rect. + !#zh 使用 mat4 对矩形进行矩阵转换。 + @param out The output rect + @param mat The matrix4 + */ + transformMat4(out: Rect, mat: Mat4): void; + /** + !#en Output rect informations to string + !#zh 转换为方便阅读的字符串 + + @example + ```js + var a = new cc.Rect(0, 0, 10, 10); + a.toString();// "(0.00, 0.00, 10.00, 10.00)"; + ``` + */ + toString(): string; + /** !#en The minimum x value, equals to rect.x + !#zh 矩形 x 轴上的最小值,等价于 rect.x。 */ + xMin: number; + /** !#en The minimum y value, equals to rect.y + !#zh 矩形 y 轴上的最小值。 */ + yMin: number; + /** !#en The maximum x value. + !#zh 矩形 x 轴上的最大值。 */ + xMax: number; + /** !#en The maximum y value. + !#zh 矩形 y 轴上的最大值。 */ + yMax: number; + /** !#en The position of the center of the rectangle. + !#zh 矩形的中心点。 */ + center: Vec2; + /** !#en The X and Y position of the rectangle. + !#zh 矩形的 x 和 y 坐标。 */ + origin: Vec2; + /** !#en Width and height of the rectangle. + !#zh 矩形的大小。 */ + size: Size; + } + /** !#en Representation of 3D vectors and points. + !#zh 表示 3D 向量和坐标 */ + export class Vec3 extends ValueType { + /** + !#en Returns the length of this vector. + !#zh 返回该向量的长度。 + + @example + ```js + var v = cc.v3(10, 10, 10); + v.mag(); // return 17.320508075688775; + ``` + */ + mag(): number; + /** + !#en Returns the squared length of this vector. + !#zh 返回该向量的长度平方。 + */ + magSqr(): number; + /** + !#en Subtracts one vector from this. If you want to save result to another vector, use sub() instead. + !#zh 向量减法。如果你想保存结果到另一个向量,可使用 sub() 代替。 + @param vector vector + */ + subSelf(vector: Vec3): Vec3; + /** + !#en Subtracts one vector from this, and returns the new result. + !#zh 向量减法,并返回新结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + sub(vector: Vec3, out?: Vec3): Vec3; + /** + !#en Multiplies this by a number. If you want to save result to another vector, use mul() instead. + !#zh 缩放当前向量。如果你想结果保存到另一个向量,可使用 mul() 代替。 + @param num num + */ + mulSelf(num: number): Vec3; + /** + !#en Multiplies by a number, and returns the new result. + !#zh 缩放向量,并返回新结果。 + @param num num + @param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + mul(num: number, out?: Vec3): Vec3; + /** + !#en Divides by a number. If you want to save result to another vector, use div() instead. + !#zh 向量除法。如果你想结果保存到另一个向量,可使用 div() 代替。 + @param num num + */ + divSelf(num: number): Vec3; + /** + !#en Divides by a number, and returns the new result. + !#zh 向量除法,并返回新的结果。 + @param num num + @param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + div(num: number, out?: Vec3): Vec3; + /** + !#en Multiplies two vectors. + !#zh 分量相乘。 + @param vector vector + */ + scaleSelf(vector: Vec3): Vec3; + /** + !#en Multiplies two vectors, and returns the new result. + !#zh 分量相乘,并返回新的结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + scale(vector: Vec3, out?: Vec3): Vec3; + /** + !#en Negates the components. If you want to save result to another vector, use neg() instead. + !#zh 向量取反。如果你想结果保存到另一个向量,可使用 neg() 代替。 + */ + negSelf(): Vec3; + /** + !#en Negates the components, and returns the new result. + !#zh 返回取反后的新向量。 + @param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + neg(out?: Vec3): Vec3; + /** !#en return a Vec3 object with x = 1, y = 1, z = 1. + !#zh 新 Vec3 对象。 */ + static ONE: Vec3; + /** !#en return a Vec3 object with x = 0, y = 0, z = 0. + !#zh 返回 x = 0,y = 0,z = 0 的 Vec3 对象。 */ + static ZERO: Vec3; + /** !#en return a Vec3 object with x = 0, y = 1, z = 0. + !#zh 返回 x = 0, y = 1, z = 0 的 Vec3 对象。 */ + static UP: Vec3; + /** !#en return a Vec3 object with x = 1, y = 0, z = 0. + !#zh 返回 x = 1,y = 0,z = 0 的 Vec3 对象。 */ + static RIGHT: Vec3; + /** !#en return a Vec3 object with x = 0, y = 0, z = 1. + !#zh 返回 x = 0,y = 0,z = 1 的 Vec3 对象。 */ + static FORWARD: Vec3; + /** + !#zh 将目标赋值为零向量 + !#en The target of an assignment zero vector + */ + static zero (out: Out): Out; + /** + !#zh 获得指定向量的拷贝 + !#en Obtaining copy vectors designated + */ + static clone (a: Out): Vec3; + /** + !#zh 复制目标向量 + !#en Copy the target vector + */ + static copy (out: Out, a: Vec3Like): Out; + /** + !#zh 设置向量值 + !#en Set to value + */ + static set (out: Out, x: number, y: number, z: number): Out; + /** + !#zh 逐元素向量加法 + !#en Element-wise vector addition + */ + static add (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量减法 + !#en Element-wise vector subtraction + */ + static subtract (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量乘法 (分量积) + !#en Element-wise vector multiplication (product component) + */ + static multiply (out: Out, a: Vec3Like_1, b: Vec3Like_2): Out; + /** + !#zh 逐元素向量除法 + !#en Element-wise vector division + */ + static divide (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量向上取整 + !#en Rounding up by elements of the vector + */ + static ceil (out: Out, a: Out): Out; + /** + !#zh 逐元素向量向下取整 + !#en Element vector by rounding down + */ + static floor (out: Out, a: Out): Out; + /** + !#zh 逐元素向量最小值 + !#en The minimum by-element vector + */ + static min (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量最大值 + !#en The maximum value of the element-wise vector + */ + static max (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量四舍五入取整 + !#en Element-wise vector of rounding to whole + */ + static round (out: Out, a: Out): Out; + /** + !#zh 向量标量乘法 + !#en Vector scalar multiplication + */ + static multiplyScalar (out: Out, a: Vec3Like, b: number): Out; + /** + !#zh 逐元素向量乘加: A + B * scale + !#en Element-wise vector multiply add: A + B * scale + */ + static scaleAndAdd (out: Out, a: Out, b: Out, scale: number): Out; + /** + !#zh 求两向量的欧氏距离 + !#en Seeking two vectors Euclidean distance + */ + static distance (a: Out, b: Out): number; + /** + !#zh 求两向量的欧氏距离平方 + !#en Euclidean distance squared seeking two vectors + */ + static squaredDistance (a: Out, b: Out): number; + /** + !#zh 求向量长度 + !#en Seeking vector length + */ + static len (a: Out): number; + /** + !#zh 求向量长度平方 + !#en Seeking squared vector length + */ + static lengthSqr (a: Out): number; + /** + !#zh 逐元素向量取负 + !#en By taking the negative elements of the vector + */ + static negate (out: Out, a: Out): Out; + /** + !#zh 逐元素向量取倒数,接近 0 时返回 Infinity + !#en Element vector by taking the inverse, return near 0 Infinity + */ + static inverse (out: Out, a: Out): Out; + /** + !#zh 逐元素向量取倒数,接近 0 时返回 0 + !#en Element vector by taking the inverse, return near 0 0 + */ + static inverseSafe (out: Out, a: Out): Out; + /** + !#zh 归一化向量 + !#en Normalized vector + */ + static normalize (out: Out, a: Vec3Like): Out; + /** + !#zh 向量点积(数量积) + !#en Vector dot product (scalar product) + */ + static dot (a: Out, b: Out): number; + /** + !#zh 向量叉积(向量积) + !#en Vector cross product (vector product) + */ + static cross (out: Out, a: Vec3Like_1, b: Vec3Like_2): Out; + /** + !#zh 逐元素向量线性插值: A + t * (B - A) + !#en Vector element by element linear interpolation: A + t * (B - A) + */ + static lerp (out: Out, a: Out, b: Out, t: number): Out; + /** + !#zh 生成一个在单位球体上均匀分布的随机向量 + !#en Generates a uniformly distributed random vectors on the unit sphere + @param scale 生成的向量长度 + */ + static random (out: Out, scale?: number): Out; + /** + !#zh 向量与四维矩阵乘法,默认向量第四位为 1。 + !#en Four-dimensional vector and matrix multiplication, the default vectors fourth one. + */ + static transformMat4 (out: Out, a: Vec3Like, mat: MatLike): Out; + /** + !#zh 向量与四维矩阵乘法,默认向量第四位为 0。 + !#en Four-dimensional vector and matrix multiplication, vector fourth default is 0. + */ + static transformMat4Normal (out: Out, a: Out, mat: MatLike): Out; + /** + !#zh 向量与三维矩阵乘法 + !#en Dimensional vector matrix multiplication + */ + static transformMat3 (out: Out, a: Out, mat: MatLike): Out; + /** + !#zh 向量仿射变换 + !#en Affine transformation vector + */ + static transformAffine(out: Out, v: VecLike, mat: MatLike): Out; + /** + !#zh 向量四元数乘法 + !#en Vector quaternion multiplication + */ + static transformQuat (out: Out, a: VecLike, q: QuatLike): Out; + /** + !#zh 以缩放 -> 旋转 -> 平移顺序变换向量 + !#en To scale -> rotation -> transformation vector sequence translation + */ + static transformRTS(out: Out, a: VecLike, r: QuatLike, t: VecLike, s: VecLike): Out; + /** + !#zh 以平移 -> 旋转 -> 缩放顺序逆变换向量 + !#en Translational -> rotation -> Zoom inverse transformation vector sequence + */ + static transformInverseRTS(out: Out, a: VecLike, r: QuatLike, t: VecLike, s: VecLike): Out; + /** + !#zh 绕 X 轴旋转向量指定弧度 + !#en Rotation vector specified angle about the X axis + @param v 待旋转向量 + @param o 旋转中心 + @param a 旋转弧度 + */ + static rotateX (out: Out, v: Out, o: Out, a: number): Out; + /** + !#zh 绕 Y 轴旋转向量指定弧度 + !#en Rotation vector specified angle around the Y axis + @param v 待旋转向量 + @param o 旋转中心 + @param a 旋转弧度 + */ + static rotateY (out: Out, v: Out, o: Out, a: number): Out; + /** + !#zh 绕 Z 轴旋转向量指定弧度 + !#en Around the Z axis specified angle vector + @param v 待旋转向量 + @param o 旋转中心 + @param a 旋转弧度 + */ + static rotateZ (out: Out, v: Out, o: Out, a: number): Out; + /** + !#zh 向量等价判断 + !#en Equivalent vectors Analyzing + */ + static strictEquals (a: Out, b: Out): boolean; + /** + !#zh 排除浮点数误差的向量近似等价判断 + !#en Negative error vector floating point approximately equivalent Analyzing + */ + static equals (a: Out, b: Out, epsilon?: number): boolean; + /** + !#zh 求两向量夹角弧度 + !#en Radian angle between two vectors seek + */ + static angle (a: Out, b: Out): number; + /** + !#zh 计算向量在指定平面上的投影 + !#en Calculating a projection vector in the specified plane + @param a 待投影向量 + @param n 指定平面的法线 + */ + static projectOnPlane (out: Out, a: Out, n: Out): Out; + /** + !#zh 计算向量在指定向量上的投影 + !#en Projection vector calculated in the vector designated + @param a 待投影向量 + @param n 目标向量 + */ + static project (out: Out, a: Out, b: Out): Out; + /** + !#zh 向量转数组 + !#en Vector transfer array + @param ofs 数组起始偏移量 + */ + static toArray > (out: Out, v: IVec3Like, ofs?: number): Out; + /** + !#zh 数组转向量 + !#en Array steering amount + @param ofs 数组起始偏移量 + */ + static fromArray (out: Out, arr: IWritableArrayLike, ofs?: number): Out; + x: number; + y: number; + z: number; + /** + !#en + Constructor + see {{#crossLink "cc/vec3:method"}}cc.v3{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec3:method"}}cc.v3{{/crossLink}} + @param x x + @param y y + @param z z + */ + constructor(x?: Vec3|number, y?: number, z?: number); + /** + !#en clone a Vec3 value + !#zh 克隆一个 Vec3 值 + */ + clone(): Vec3; + /** + !#en Set the current vector value with the given vector. + !#zh 用另一个向量设置当前的向量对象值。 + @param newValue !#en new value to set. !#zh 要设置的新值 + */ + set(newValue: Vec3): Vec3; + /** + !#en Check whether the vector equals another one + !#zh 当前的向量是否与指定的向量相等。 + @param other other + */ + equals(other: Vec3): boolean; + /** + !#en Check whether two vector equal with some degree of variance. + !#zh + 近似判断两个点是否相等。
+ 判断 2 个向量是否在指定数值的范围之内,如果在则返回 true,反之则返回 false。 + @param other other + @param variance variance + */ + fuzzyEquals(other: Vec3, variance: number): boolean; + /** + !#en Transform to string with vector informations + !#zh 转换为方便阅读的字符串。 + */ + toString(): string; + /** + !#en Calculate linear interpolation result between this vector and another one with given ratio + !#zh 线性插值。 + @param to to + @param ratio the interpolation coefficient + @param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + lerp(to: Vec3, ratio: number, out?: Vec3): Vec3; + /** + !#en Clamp the vector between from float and to float. + !#zh + 返回指定限制区域后的向量。
+ 向量大于 max_inclusive 则返回 max_inclusive。
+ 向量小于 min_inclusive 则返回 min_inclusive。
+ 否则返回自身。 + @param min_inclusive min_inclusive + @param max_inclusive max_inclusive + */ + clampf(min_inclusive: Vec3, max_inclusive: Vec3): Vec3; + /** + !#en Adds this vector. If you want to save result to another vector, use add() instead. + !#zh 向量加法。如果你想保存结果到另一个向量,使用 add() 代替。 + @param vector vector + */ + addSelf(vector: Vec3): Vec3; + /** + !#en Adds two vectors, and returns the new result. + !#zh 向量加法,并返回新结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + add(vector: Vec3, out?: Vec3): Vec3; + /** + !#en Subtracts one vector from this. + !#zh 向量减法。 + @param vector vector + */ + subtract(vector: Vec3): Vec3; + /** + !#en Multiplies this by a number. + !#zh 缩放当前向量。 + @param num num + */ + multiplyScalar(num: number): Vec3; + /** + !#en Multiplies two vectors. + !#zh 分量相乘。 + @param vector vector + */ + multiply(vector: Vec3): Vec3; + /** + !#en Divides by a number. + !#zh 向量除法。 + @param num num + */ + divide(num: number): Vec3; + /** + !#en Negates the components. + !#zh 向量取反。 + */ + negate(): Vec3; + /** + !#en Dot product + !#zh 当前向量与指定向量进行点乘。 + @param vector vector + */ + dot(vector?: Vec3): number; + /** + !#en Cross product + !#zh 当前向量与指定向量进行叉乘。 + @param vector vector + @param out out + */ + cross(vector: Vec3, out?: Vec3): Vec3; + /** + !#en Returns the length of this vector. + !#zh 返回该向量的长度。 + + @example + ```js + var v = cc.v3(10, 10, 10); + v.len(); // return 17.320508075688775; + ``` + */ + len(): number; + /** + !#en Returns the squared length of this vector. + !#zh 返回该向量的长度平方。 + */ + lengthSqr(): number; + /** + !#en Make the length of this vector to 1. + !#zh 向量归一化,让这个向量的长度为 1。 + */ + normalizeSelf(): Vec3; + /** + !#en + Returns this vector with a magnitude of 1.
+
+ Note that the current vector is unchanged and a new normalized vector is returned. If you want to normalize the current vector, use normalizeSelf function. + !#zh + 返回归一化后的向量。
+
+ 注意,当前向量不变,并返回一个新的归一化向量。如果你想来归一化当前向量,可使用 normalizeSelf 函数。 + @param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + normalize(out?: Vec3): Vec3; + /** + Transforms the vec3 with a mat4. 4th vector component is implicitly '1' + @param m matrix to transform with + @param out the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created + */ + transformMat4(m: Mat4, out?: Vec3): Vec3; + /** + Returns the maximum value in x, y, and z + */ + maxAxis(): number; + /** + !#en Get angle in radian between this and vector. + !#zh 夹角的弧度。 + @param vector vector + */ + angle(vector: Vec3): number; + /** + !#en Calculates the projection of the current vector over the given vector. + !#zh 返回当前向量在指定 vector 向量上的投影向量。 + @param vector vector + + @example + ```js + var v1 = cc.v3(20, 20, 20); + var v2 = cc.v3(5, 5, 5); + v1.project(v2); // Vec3 {x: 20, y: 20, z: 20}; + ``` + */ + project(vector: Vec3): Vec3; + /** + !#en Get angle in radian between this and vector with direction.
+ In order to compatible with the vec2 API. + !#zh 带方向的夹角的弧度。该方法仅用做兼容 2D 计算。 + @param vector vector + */ + signAngle(vector: Vec3|Vec2): number; + /** + !#en rotate. In order to compatible with the vec2 API. + !#zh 返回旋转给定弧度后的新向量。该方法仅用做兼容 2D 计算。 + @param radians radians + @param out optional, the receiving vector, you can pass the same vec2 to save result to itself, if not provided, a new vec2 will be created + */ + rotate(radians: number, out?: Vec3): Vec2; + /** + !#en rotate self. In order to compatible with the vec2 API. + !#zh 按指定弧度旋转向量。该方法仅用做兼容 2D 计算。 + @param radians radians + */ + rotateSelf(radians: number): Vec3; + } + /** !#en Representation of 3D vectors and points. + !#zh 表示 3D 向量和坐标 */ + export class Vec4 extends ValueType { + /** + !#en Subtracts one vector from this. If you want to save result to another vector, use sub() instead. + !#zh 向量减法。如果你想保存结果到另一个向量,可使用 sub() 代替。 + @param vector vector + */ + subSelf(vector: Vec4): Vec4; + /** + !#en Subtracts one vector from this, and returns the new result. + !#zh 向量减法,并返回新结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + sub(vector: Vec4, out?: Vec4): Vec4; + /** + !#en Multiplies this by a number. If you want to save result to another vector, use mul() instead. + !#zh 缩放当前向量。如果你想结果保存到另一个向量,可使用 mul() 代替。 + @param num num + */ + mulSelf(num: number): Vec4; + /** + !#en Multiplies by a number, and returns the new result. + !#zh 缩放向量,并返回新结果。 + @param num num + @param out optional, the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + mul(num: number, out?: Vec4): Vec4; + /** + !#en Divides by a number. If you want to save result to another vector, use div() instead. + !#zh 向量除法。如果你想结果保存到另一个向量,可使用 div() 代替。 + @param num num + */ + divSelf(num: number): Vec4; + /** + !#en Divides by a number, and returns the new result. + !#zh 向量除法,并返回新的结果。 + @param num num + @param out optional, the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + div(num: number, out?: Vec4): Vec4; + /** + !#en Multiplies two vectors. + !#zh 分量相乘。 + @param vector vector + */ + scaleSelf(vector: Vec4): Vec4; + /** + !#en Multiplies two vectors, and returns the new result. + !#zh 分量相乘,并返回新的结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + scale(vector: Vec4, out?: Vec4): Vec4; + /** + !#en Negates the components. If you want to save result to another vector, use neg() instead. + !#zh 向量取反。如果你想结果保存到另一个向量,可使用 neg() 代替。 + */ + negSelf(): Vec4; + /** + !#en Negates the components, and returns the new result. + !#zh 返回取反后的新向量。 + @param out optional, the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + neg(out?: Vec4): Vec4; + /** + !#zh 获得指定向量的拷贝 + !#en Obtaining copy vectors designated + */ + static clone (a: Out): Vec4; + /** + !#zh 复制目标向量 + !#en Copy the target vector + */ + static copy (out: Out, a: Out): Out; + /** + !#zh 设置向量值 + !#en Set to value + */ + static set (out: Out, x: number, y: number, z: number, w: number): Out; + /** + !#zh 逐元素向量加法 + !#en Element-wise vector addition + */ + static add (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量减法 + !#en Element-wise vector subtraction + */ + static subtract (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量乘法 + !#en Element-wise vector multiplication + */ + static multiply (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量除法 + !#en Element-wise vector division + */ + static divide (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量向上取整 + !#en Rounding up by elements of the vector + */ + static ceil (out: Out, a: Out): Out; + /** + !#zh 逐元素向量向下取整 + !#en Element vector by rounding down + */ + static floor (out: Out, a: Out): Out; + /** + !#zh 逐元素向量最小值 + !#en The minimum by-element vector + */ + static min (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量最大值 + !#en The maximum value of the element-wise vector + */ + static max (out: Out, a: Out, b: Out): Out; + /** + !#zh 逐元素向量四舍五入取整 + !#en Element-wise vector of rounding to whole + */ + static round (out: Out, a: Out): Out; + /** + !#zh 向量标量乘法 + !#en Vector scalar multiplication + */ + static multiplyScalar (out: Out, a: Out, b: number): Out; + /** + !#zh 逐元素向量乘加: A + B * scale + !#en Element-wise vector multiply add: A + B * scale + */ + static scaleAndAdd (out: Out, a: Out, b: Out, scale: number): Out; + /** + !#zh 求两向量的欧氏距离 + !#en Seeking two vectors Euclidean distance + */ + static distance (a: Out, b: Out): number; + /** + !#zh 求两向量的欧氏距离平方 + !#en Euclidean distance squared seeking two vectors + */ + static squaredDistance (a: Out, b: Out): number; + /** + !#zh 求向量长度 + !#en Seeking vector length + */ + static len (a: Out): number; + /** + !#zh 求向量长度平方 + !#en Seeking squared vector length + */ + static lengthSqr (a: Out): number; + /** + !#zh 逐元素向量取负 + !#en By taking the negative elements of the vector + */ + static negate (out: Out, a: Out): Out; + /** + !#zh 逐元素向量取倒数,接近 0 时返回 Infinity + !#en Element vector by taking the inverse, return near 0 Infinity + */ + static inverse (out: Out, a: Out): Out; + /** + !#zh 逐元素向量取倒数,接近 0 时返回 0 + !#en Element vector by taking the inverse, return near 0 0 + */ + static inverseSafe (out: Out, a: Out): Out; + /** + !#zh 归一化向量 + !#en Normalized vector + */ + static normalize (out: Out, a: Out): Out; + /** + !#zh 向量点积(数量积) + !#en Vector dot product (scalar product) + */ + static dot (a: Out, b: Out): number; + /** + !#zh 逐元素向量线性插值: A + t * (B - A) + !#en Vector element by element linear interpolation: A + t * (B - A) + */ + static lerp (out: Out, a: Out, b: Out, t: number): Out; + /** + !#zh 生成一个在单位球体上均匀分布的随机向量 + !#en Generates a uniformly distributed random vectors on the unit sphere + @param scale 生成的向量长度 + */ + static random (out: Out, scale?: number): Out; + /** + !#zh 向量矩阵乘法 + !#en Vector matrix multiplication + */ + static transformMat4 (out: Out, a: Out, mat: MatLike): Out; + /** + !#zh 向量仿射变换 + !#en Affine transformation vector + */ + static transformAffine(out: Out, v: VecLike, mat: MatLike): Out; + /** + !#zh 向量四元数乘法 + !#en Vector quaternion multiplication + */ + static transformQuat (out: Out, a: Out, q: QuatLike): Out; + /** + !#zh 向量等价判断 + !#en Equivalent vectors Analyzing + */ + static strictEquals (a: Out, b: Out): boolean; + /** + !#zh 排除浮点数误差的向量近似等价判断 + !#en Negative error vector floating point approximately equivalent Analyzing + */ + static equals (a: Out, b: Out, epsilon?: number): boolean; + /** + !#zh 向量转数组 + !#en Vector transfer array + @param ofs 数组起始偏移量 + */ + static toArray > (out: Out, v: IVec4Like, ofs?: number): Out; + /** + !#zh 数组转向量 + !#en Array steering amount + @param ofs 数组起始偏移量 + */ + static fromArray (out: Out, arr: IWritableArrayLike, ofs?: number): Out; + x: number; + y: number; + z: number; + w: number; + /** + !#en + Constructor + see {{#crossLink "cc/vec4:method"}}cc.v4{{/crossLink}} + !#zh + 构造函数,可查看 {{#crossLink "cc/vec4:method"}}cc.v4{{/crossLink}} + @param x x + @param y y + @param z z + @param w w + */ + constructor(x?: number, y?: number, z?: number, w?: number); + /** + !#en clone a Vec4 value + !#zh 克隆一个 Vec4 值 + */ + clone(): Vec4; + /** + !#en Set the current vector value with the given vector. + !#zh 用另一个向量设置当前的向量对象值。 + @param newValue !#en new value to set. !#zh 要设置的新值 + */ + set(newValue: Vec4): Vec4; + /** + !#en Check whether the vector equals another one + !#zh 当前的向量是否与指定的向量相等。 + @param other other + @param epsilon epsilon + */ + equals(other: Vec4, epsilon?: number): boolean; + /** + !#en Check whether the vector equals another one + !#zh 判断当前向量是否在误差范围内与指定分量的向量相等。 + @param x 相比较的向量的 x 分量。 + @param y 相比较的向量的 y 分量。 + @param z 相比较的向量的 z 分量。 + @param w 相比较的向量的 w 分量。 + @param epsilon 允许的误差,应为非负数。 + */ + equals4f(x: number, y: number, z: number, w: number, epsilon?: number): boolean; + /** + !#en Check whether strict equals other Vec4 + !#zh 判断当前向量是否与指定向量相等。两向量的各分量都分别相等时返回 `true`;否则返回 `false`。 + @param other 相比较的向量。 + */ + strictEquals(other: Vec4): boolean; + /** + !#en Check whether strict equals other Vec4 + !#zh 判断当前向量是否与指定分量的向量相等。两向量的各分量都分别相等时返回 `true`;否则返回 `false`。 + @param x 指定向量的 x 分量。 + @param y 指定向量的 y 分量。 + @param z 指定向量的 z 分量。 + @param w 指定向量的 w 分量。 + */ + strictEquals4f(x: number, y: number, z: number, w: number): boolean; + /** + !#en Calculate linear interpolation result between this vector and another one with given ratio + !#zh 根据指定的插值比率,从当前向量到目标向量之间做插值。 + @param to 目标向量。 + @param ratio 插值比率,范围为 [0,1]。 + */ + lerp(to: Vec4, ratio: number): Vec4; + /** + !#en Transform to string with vector informations + !#zh 返回当前向量的字符串表示。 + */ + toString(): string; + /** + !#en Clamp the vector between minInclusive and maxInclusive. + !#zh 设置当前向量的值,使其各个分量都处于指定的范围内。 + @param minInclusive 每个分量都代表了对应分量允许的最小值。 + @param maxInclusive 每个分量都代表了对应分量允许的最大值。 + */ + clampf(minInclusive: Vec4, maxInclusive: Vec4): Vec4; + /** + !#en Adds this vector. If you want to save result to another vector, use add() instead. + !#zh 向量加法。如果你想保存结果到另一个向量,使用 add() 代替。 + @param vector vector + */ + addSelf(vector: Vec4): Vec4; + /** + !#en Adds two vectors, and returns the new result. + !#zh 向量加法,并返回新结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + add(vector: Vec4, out?: Vec4): Vec4; + /** + !#en Subtracts one vector from this, and returns the new result. + !#zh 向量减法,并返回新结果。 + @param vector vector + @param out optional, the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + subtract(vector: Vec4, out?: Vec4): Vec4; + /** + !#en Multiplies this by a number. + !#zh 缩放当前向量。 + @param num num + */ + multiplyScalar(num: number): Vec4; + /** + !#en Multiplies two vectors. + !#zh 分量相乘。 + @param vector vector + */ + multiply(vector: Vec4): Vec4; + /** + !#en Divides by a number. + !#zh 向量除法。 + @param num num + */ + divide(num: number): Vec4; + /** + !#en Negates the components. + !#zh 向量取反 + */ + negate(): Vec4; + /** + !#en Dot product + !#zh 当前向量与指定向量进行点乘。 + @param vector vector + */ + dot(vector?: Vec4): number; + /** + !#en Cross product + !#zh 当前向量与指定向量进行叉乘。 + @param vector vector + @param out out + */ + cross(vector: Vec4, out?: Vec4): Vec4; + /** + !#en Returns the length of this vector. + !#zh 返回该向量的长度。 + + @example + ```js + var v = cc.v4(10, 10); + v.len(); // return 14.142135623730951; + ``` + */ + len(): number; + /** + !#en Returns the squared length of this vector. + !#zh 返回该向量的长度平方。 + */ + lengthSqr(): number; + /** + !#en Make the length of this vector to 1. + !#zh 向量归一化,让这个向量的长度为 1。 + */ + normalizeSelf(): Vec4; + /** + !#en + Returns this vector with a magnitude of 1.
+
+ Note that the current vector is unchanged and a new normalized vector is returned. If you want to normalize the current vector, use normalizeSelf function. + !#zh + 返回归一化后的向量。
+
+ 注意,当前向量不变,并返回一个新的归一化向量。如果你想来归一化当前向量,可使用 normalizeSelf 函数。 + @param out optional, the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + normalize(out?: Vec4): Vec4; + /** + Transforms the vec4 with a mat4. 4th vector component is implicitly '1' + @param m matrix to transform with + @param out the receiving vector, you can pass the same vec4 to save result to itself, if not provided, a new vec4 will be created + */ + transformMat4(m: Mat4, out?: Vec4): Vec4; + /** + Returns the maximum value in x, y, z, w. + */ + maxAxis(): number; + } + /** !#en The module provides utilities for working with file and directory paths + !#zh 用于处理文件与目录的路径的模块 */ + export class path { + /** + !#en Join strings to be a path. + !#zh 拼接字符串为 Path + + @example + ```js + ------------------------------ + cc.path.join("a", "b.png"); //-->"a/b.png" + cc.path.join("a", "b", "c.png"); //-->"a/b/c.png" + cc.path.join("a", "b"); //-->"a/b" + cc.path.join("a", "b", "/"); //-->"a/b/" + cc.path.join("a", "b/", "/"); //-->"a/b/" + + ``` + */ + static join(): string; + /** + !#en Get the ext name of a path including '.', like '.png'. + !#zh 返回 Path 的扩展名,包括 '.',例如 '.png'。 + @param pathStr pathStr + + @example + ```js + --------------------------- + cc.path.extname("a/b.png"); //-->".png" + cc.path.extname("a/b.png?a=1&b=2"); //-->".png" + cc.path.extname("a/b"); //-->null + cc.path.extname("a/b?a=1&b=2"); //-->null + + ``` + */ + static extname(pathStr: string): any; + /** + !#en Get the main name of a file name + !#zh 获取文件名的主名称 + @param fileName fileName + */ + static mainFileName(fileName: string): string; + /** + !#en Get the file name of a file path. + !#zh 获取文件路径的文件名。 + @param pathStr pathStr + @param extname extname + + @example + ```js + --------------------------------- + cc.path.basename("a/b.png"); //-->"b.png" + cc.path.basename("a/b.png?a=1&b=2"); //-->"b.png" + cc.path.basename("a/b.png", ".png"); //-->"b" + cc.path.basename("a/b.png?a=1&b=2", ".png"); //-->"b" + cc.path.basename("a/b.png", ".txt"); //-->"b.png" + + ``` + */ + static basename(pathStr: string, extname?: string): any; + /** + !#en Get dirname of a file path. + !#zh 获取文件路径的目录名。 + @param pathStr pathStr + + @example + ```js + --------------------------------- + * unix + cc.path.driname("a/b/c.png"); //-->"a/b" + cc.path.driname("a/b/c.png?a=1&b=2"); //-->"a/b" + cc.path.dirname("a/b/"); //-->"a/b" + cc.path.dirname("c.png"); //-->"" + * windows + cc.path.driname("a\\b\\c.png"); //-->"a\b" + cc.path.driname("a\\b\\c.png?a=1&b=2"); //-->"a\b" + + ``` + */ + static dirname(pathStr: string): any; + /** + !#en Change extname of a file path. + !#zh 更改文件路径的扩展名。 + @param pathStr pathStr + @param extname extname + + @example + ```js + --------------------------------- + cc.path.changeExtname("a/b.png", ".plist"); //-->"a/b.plist" + cc.path.changeExtname("a/b.png?a=1&b=2", ".plist"); //-->"a/b.plist?a=1&b=2" + + ``` + */ + static changeExtname(pathStr: string, extname?: string): string; + } + /** !#en + AffineTransform class represent an affine transform matrix. It's composed basically by translation, rotation, scale transformations.
+ !#zh + AffineTransform 类代表一个仿射变换矩阵。它基本上是由平移旋转,缩放转变所组成。
*/ + export class AffineTransform { + /** + !#en Create a AffineTransform object with all contents in the matrix. + !#zh 用在矩阵中的所有内容创建一个 AffineTransform 对象。 + @param a a + @param b b + @param c c + @param d d + @param tx tx + @param ty ty + */ + static create(a: number, b: number, c: number, d: number, tx: number, ty: number): AffineTransform; + /** + !#en + Create a identity transformation matrix:
+ [ 1, 0, 0,
+ 0, 1, 0 ] + !#zh + 单位矩阵:
+ [ 1, 0, 0,
+ 0, 1, 0 ] + */ + static identity(): AffineTransform; + /** + !#en Clone a AffineTransform object from the specified transform. + !#zh 克隆指定的 AffineTransform 对象。 + @param t t + */ + static clone(t: AffineTransform): AffineTransform; + /** + !#en + Concatenate a transform matrix to another + The results are reflected in the out affine transform + out = t1 * t2 + This function is memory free, you should create the output affine transform by yourself and manage its memory. + !#zh + 拼接两个矩阵,将结果保存到 out 矩阵。这个函数不创建任何内存,你需要先创建 AffineTransform 对象用来存储结果,并作为第一个参数传入函数。 + out = t1 * t2 + @param out Out object to store the concat result + @param t1 The first transform object. + @param t2 The transform object to concatenate. + */ + static concat(out: AffineTransform, t1: AffineTransform, t2: AffineTransform): AffineTransform; + /** + !#en Get the invert transform of an AffineTransform object. + This function is memory free, you should create the output affine transform by yourself and manage its memory. + !#zh 求逆矩阵。这个函数不创建任何内存,你需要先创建 AffineTransform 对象用来存储结果,并作为第一个参数传入函数。 + @param out out + @param t t + */ + static invert(out: AffineTransform, t: AffineTransform): AffineTransform; + /** + !#en Get an AffineTransform object from a given matrix 4x4. + This function is memory free, you should create the output affine transform by yourself and manage its memory. + !#zh 从一个 4x4 Matrix 获取 AffineTransform 对象。这个函数不创建任何内存,你需要先创建 AffineTransform 对象用来存储结果,并作为第一个参数传入函数。 + @param out out + @param mat mat + */ + static invert(out: AffineTransform, mat: Mat4): AffineTransform; + /** + !#en Apply the affine transformation on a point. + This function is memory free, you should create the output Vec2 by yourself and manage its memory. + !#zh 对一个点应用矩阵变换。这个函数不创建任何内存,你需要先创建一个 Vec2 对象用来存储结果,并作为第一个参数传入函数。 + @param out The output point to store the result + @param point Point to apply transform or x. + @param transOrY transform matrix or y. + @param t transform matrix. + */ + static transformVec2(out: Vec2, point: Vec2|number, transOrY: AffineTransform|number, t?: AffineTransform): Vec2; + /** + !#en Apply the affine transformation on a size. + This function is memory free, you should create the output Size by yourself and manage its memory. + !#zh 应用仿射变换矩阵到 Size 上。这个函数不创建任何内存,你需要先创建一个 Size 对象用来存储结果,并作为第一个参数传入函数。 + @param out The output point to store the result + @param size size + @param t t + */ + static transformSize(out: Size, size: Size, t: AffineTransform): Size; + /** + !#en Apply the affine transformation on a rect. + This function is memory free, you should create the output Rect by yourself and manage its memory. + !#zh 应用仿射变换矩阵到 Rect 上。这个函数不创建任何内存,你需要先创建一个 Rect 对象用来存储结果,并作为第一个参数传入函数。 + @param out out + @param rect rect + @param anAffineTransform anAffineTransform + */ + static transformRect(out: Rect, rect: Rect, anAffineTransform: AffineTransform): Rect; + /** + !#en Apply the affine transformation on a rect, and truns to an Oriented Bounding Box. + This function is memory free, you should create the output vectors by yourself and manage their memory. + !#zh 应用仿射变换矩阵到 Rect 上, 并转换为有向包围盒。这个函数不创建任何内存,你需要先创建包围盒的四个 Vector 对象用来存储结果,并作为前四个参数传入函数。 + @param out_bl out_bl + @param out_tl out_tl + @param out_tr out_tr + @param out_br out_br + @param rect rect + @param anAffineTransform anAffineTransform + */ + static transformObb(out_bl: Vec2, out_tl: Vec2, out_tr: Vec2, out_br: Vec2, rect: Rect, anAffineTransform: AffineTransform): void; + } + /** A base node for CCNode, it will: + - maintain scene hierarchy and active logic + - notifications if some properties changed + - define some interfaces shares between CCNode + - define machanisms for Enity Component Systems + - define prefab and serialize functions */ + export class _BaseNode extends Object implements EventTarget { + /** !#en Name of node. + !#zh 该节点名称。 */ + name: string; + /** !#en The uuid for editor, will be stripped before building project. + !#zh 主要用于编辑器的 uuid,在编辑器下可用于持久化存储,在项目构建之后将变成自增的 id。 */ + uuid: string; + /** !#en All children nodes. + !#zh 节点的所有子节点。 */ + children: Node[]; + /** !#en All children nodes. + !#zh 节点的子节点数量。 */ + childrenCount: number; + /** !#en + The local active state of this node.
+ Note that a Node may be inactive because a parent is not active, even if this returns true.
+ Use {{#crossLink "Node/activeInHierarchy:property"}}{{/crossLink}} if you want to check if the Node is actually treated as active in the scene. + !#zh + 当前节点的自身激活状态。
+ 值得注意的是,一个节点的父节点如果不被激活,那么即使它自身设为激活,它仍然无法激活。
+ 如果你想检查节点在场景中实际的激活状态可以使用 {{#crossLink "Node/activeInHierarchy:property"}}{{/crossLink}}。 */ + active: boolean; + /** !#en Indicates whether this node is active in the scene. + !#zh 表示此节点是否在场景中激活。 */ + activeInHierarchy: boolean; + /** + + @param name name + */ + constructor(name?: string); + /** !#en The parent of the node. + !#zh 该节点的父节点。 */ + parent: Node; + /** + !#en Get parent of the node. + !#zh 获取该节点的父节点。 + + @example + ```js + var parent = this.node.getParent(); + ``` + */ + getParent(): Node; + /** + !#en Set parent of the node. + !#zh 设置该节点的父节点。 + @param value value + + @example + ```js + node.setParent(newNode); + ``` + */ + setParent(value: Node): void; + /** + !#en + Properties configuration function
+ All properties in attrs will be set to the node,
+ when the setter of the node is available,
+ the property will be set via setter function.
+ !#zh 属性配置函数。在 attrs 的所有属性将被设置为节点属性。 + @param attrs Properties to be set to node + + @example + ```js + var attrs = { key: 0, num: 100 }; + node.attr(attrs); + ``` + */ + attr(attrs: any): void; + /** + !#en Returns a child from the container given its uuid. + !#zh 通过 uuid 获取节点的子节点。 + @param uuid The uuid to find the child node. + + @example + ```js + var child = node.getChildByUuid(uuid); + ``` + */ + getChildByUuid(uuid: string): Node; + /** + !#en Returns a child from the container given its name. + !#zh 通过名称获取节点的子节点。 + @param name A name to find the child node. + + @example + ```js + var child = node.getChildByName("Test Node"); + ``` + */ + getChildByName(name: string): Node; + /** + !#en + Inserts a child to the node at a specified index. + !#zh + 插入子节点到指定位置 + @param child the child node to be inserted + @param siblingIndex the sibling index to place the child in + + @example + ```js + node.insertChild(child, 2); + ``` + */ + insertChild(child: Node, siblingIndex: number): void; + /** + !#en Get the sibling index. + !#zh 获取同级索引。 + + @example + ```js + var index = node.getSiblingIndex(); + ``` + */ + getSiblingIndex(): number; + /** + !#en Set the sibling index of this node. + !#zh 设置节点同级索引。 + @param index index + + @example + ```js + node.setSiblingIndex(1); + ``` + */ + setSiblingIndex(index: number): void; + /** + !#en Walk though the sub children tree of the current node. + Each node, including the current node, in the sub tree will be visited two times, before all children and after all children. + This function call is not recursive, it's based on stack. + Please don't walk any other node inside the walk process. + !#zh 遍历该节点的子树里的所有节点并按规则执行回调函数。 + 对子树中的所有节点,包含当前节点,会执行两次回调,prefunc 会在访问它的子节点之前调用,postfunc 会在访问所有子节点之后调用。 + 这个函数的实现不是基于递归的,而是基于栈展开递归的方式。 + 请不要在 walk 过程中对任何其他的节点嵌套执行 walk。 + @param prefunc The callback to process node when reach the node for the first time + @param postfunc The callback to process node when re-visit the node after walked all children in its sub tree + + @example + ```js + node.walk(function (target) { + console.log('Walked through node ' + target.name + ' for the first time'); + }, function (target) { + console.log('Walked through node ' + target.name + ' after walked all children in its sub tree'); + }); + ``` + */ + walk(prefunc: (target: _BaseNode) => void, postfunc: (target: _BaseNode) => void): void; + /** + !#en + Remove itself from its parent node. If cleanup is `true`, then also remove all events and actions.
+ If the cleanup parameter is not passed, it will force a cleanup, so it is recommended that you always pass in the `false` parameter when calling this API.
+ If the node orphan, then nothing happens. + !#zh + 从父节点中删除该节点。如果不传入 cleanup 参数或者传入 `true`,那么这个节点上所有绑定的事件、action 都会被删除。
+ 因此建议调用这个 API 时总是传入 `false` 参数。
+ 如果这个节点是一个孤节点,那么什么都不会发生。 + @param cleanup true if all actions and callbacks on this node should be removed, false otherwise. + + @example + ```js + node.removeFromParent(); + node.removeFromParent(false); + ``` + */ + removeFromParent(cleanup?: boolean): void; + /** + !#en + Removes a child from the container. It will also cleanup all running actions depending on the cleanup parameter.

+ If the cleanup parameter is not passed, it will force a cleanup.
+ "remove" logic MUST only be on this method
+ If a class wants to extend the 'removeChild' behavior it only needs
+ to override this method. + !#zh + 移除节点中指定的子节点,是否需要清理所有正在运行的行为取决于 cleanup 参数。
+ 如果 cleanup 参数不传入,默认为 true 表示清理。
+ @param child The child node which will be removed. + @param cleanup true if all running actions and callbacks on the child node will be cleanup, false otherwise. + + @example + ```js + node.removeChild(newNode); + node.removeChild(newNode, false); + ``` + */ + removeChild(child: Node, cleanup?: boolean): void; + /** + !#en + Removes all children from the container and do a cleanup all running actions depending on the cleanup parameter.
+ If the cleanup parameter is not passed, it will force a cleanup. + !#zh + 移除节点所有的子节点,是否需要清理所有正在运行的行为取决于 cleanup 参数。
+ 如果 cleanup 参数不传入,默认为 true 表示清理。 + @param cleanup true if all running actions on all children nodes should be cleanup, false otherwise. + + @example + ```js + node.removeAllChildren(); + node.removeAllChildren(false); + ``` + */ + removeAllChildren(cleanup?: boolean): void; + /** + !#en Is this node a child of the given node? + !#zh 是否是指定节点的子节点? + @param parent parent + + @example + ```js + node.isChildOf(newNode); + ``` + */ + isChildOf(parent: Node): boolean; + /** + !#en + Returns the component of supplied type if the node has one attached, null if it doesn't.
+ You can also get component in the node by passing in the name of the script. + !#zh + 获取节点上指定类型的组件,如果节点有附加指定类型的组件,则返回,如果没有则为空。
+ 传入参数也可以是脚本的名称。 + @param typeOrClassName typeOrClassName + + @example + ```js + // get sprite component + var sprite = node.getComponent(cc.Sprite); + // get custom test class + var test = node.getComponent("Test"); + ``` + */ + getComponent(type: {prototype: T}): T; + getComponent(className: string): any; + /** + !#en Returns all components of supplied type in the node. + !#zh 返回节点上指定类型的所有组件。 + @param typeOrClassName typeOrClassName + + @example + ```js + var sprites = node.getComponents(cc.Sprite); + var tests = node.getComponents("Test"); + ``` + */ + getComponents(type: {prototype: T}): T[]; + getComponents(className: string): any[]; + /** + !#en Returns the component of supplied type in any of its children using depth first search. + !#zh 递归查找所有子节点中第一个匹配指定类型的组件。 + @param typeOrClassName typeOrClassName + + @example + ```js + var sprite = node.getComponentInChildren(cc.Sprite); + var Test = node.getComponentInChildren("Test"); + ``` + */ + getComponentInChildren(type: {prototype: T}): T; + getComponentInChildren(className: string): any; + /** + !#en Returns all components of supplied type in self or any of its children. + !#zh 递归查找自身或所有子节点中指定类型的组件 + @param typeOrClassName typeOrClassName + + @example + ```js + var sprites = node.getComponentsInChildren(cc.Sprite); + var tests = node.getComponentsInChildren("Test"); + ``` + */ + getComponentsInChildren(type: {prototype: T}): T[]; + getComponentsInChildren(className: string): any[]; + /** + !#en Adds a component class to the node. You can also add component to node by passing in the name of the script. + !#zh 向节点添加一个指定类型的组件类,你还可以通过传入脚本的名称来添加组件。 + @param typeOrClassName The constructor or the class name of the component to add + + @example + ```js + var sprite = node.addComponent(cc.Sprite); + var test = node.addComponent("Test"); + ``` + */ + addComponent(type: {new(): T}): T; + addComponent(className: string): any; + /** + !#en + Removes a component identified by the given name or removes the component object given. + You can also use component.destroy() if you already have the reference. + !#zh + 删除节点上的指定组件,传入参数可以是一个组件构造函数或组件名,也可以是已经获得的组件引用。 + 如果你已经获得组件引用,你也可以直接调用 component.destroy() + @param component The need remove component. + + @example + ```js + node.removeComponent(cc.Sprite); + var Test = require("Test"); + node.removeComponent(Test); + ``` + */ + removeComponent(component: string|Function|Component): void; + /** + !#en + Destroy all children from the node, and release all their own references to other objects.
+ Actual destruct operation will delayed until before rendering. + !#zh + 销毁所有子节点,并释放所有它们对其它对象的引用。
+ 实际销毁操作会延迟到当前帧渲染前执行。 + + @example + ```js + node.destroyAllChildren(); + ``` + */ + destroyAllChildren(): void; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type A string representing the event type being removed. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null + + @example + ```js + eventTarget.once('fire', function () { + cc.log("this is the callback and will be invoked only once"); + }, node); + ``` + */ + once(type: string, callback: (arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any) => void, target?: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** !#en + Helper class for setting material blend function. + !#zh + 设置材质混合模式的辅助类。 */ + export class BlendFunc { + /** !#en specify the source Blend Factor, this will generate a custom material object, please pay attention to the memory cost. + !#zh 指定原图的混合模式,这会克隆一个新的材质对象,注意这带来的开销 */ + srcBlendFactor: macro.BlendFactor; + /** !#en specify the destination Blend Factor. + !#zh 指定目标的混合模式 */ + dstBlendFactor: macro.BlendFactor; + } + /** An internal helper class for switching render component's material between normal sprite material and gray sprite material. */ + export class GraySpriteState { + /** !#en The normal material. + !#zh 正常状态的材质。 */ + normalMaterial: Material; + /** !#en The gray material. + !#zh 置灰状态的材质。 */ + grayMaterial: Material; + } + /** misc utilities */ + export class misc { + /** + !#en Clamp a value between from and to. + !#zh + 限定浮点数的最大最小值。
+ 数值大于 max_inclusive 则返回 max_inclusive。
+ 数值小于 min_inclusive 则返回 min_inclusive。
+ 否则返回自身。 + @param value value + @param min_inclusive min_inclusive + @param max_inclusive max_inclusive + + @example + ```js + var v1 = cc.misc.clampf(20, 0, 20); // 20; + var v2 = cc.misc.clampf(-1, 0, 20); // 0; + var v3 = cc.misc.clampf(10, 0, 20); // 10; + ``` + */ + static clampf(value: number, min_inclusive: number, max_inclusive: number): number; + /** + !#en Clamp a value between 0 and 1. + !#zh 限定浮点数的取值范围为 0 ~ 1 之间。 + @param value value + + @example + ```js + var v1 = cc.misc.clamp01(20); // 1; + var v2 = cc.misc.clamp01(-1); // 0; + var v3 = cc.misc.clamp01(0.5); // 0.5; + ``` + */ + static clamp01(value: number): number; + /** + Linear interpolation between 2 numbers, the ratio sets how much it is biased to each end + @param a number A + @param b number B + @param r ratio between 0 and 1 + + @example + ```js + ---- + lerp + cc.misc.lerp(2,10,0.5)//returns 6 + cc.misc.lerp(2,10,0.2)//returns 3.6 + + ``` + */ + static lerp(a: number, b: number, r: number): number; + /** + converts degrees to radians + @param angle angle + */ + static degreesToRadians(angle: number): number; + /** + converts radians to degrees + @param angle angle + */ + static radiansToDegrees(angle: number): number; + } + /** !#en The renderer object which provide access to render system APIs, + detailed APIs will be available progressively. + !#zh 提供基础渲染接口的渲染器对象,渲染层的基础接口将逐步开放给用户 */ + export class renderer { + /** !#en The render engine is available only after cc.game.EVENT_ENGINE_INITED event.
+ Normally it will be inited as the webgl render engine, but in wechat open context domain, + it will be inited as the canvas render engine. Canvas render engine is no longer available for other use case since v2.0. + !#zh 基础渲染引擎对象只在 cc.game.EVENT_ENGINE_INITED 事件触发后才可获取。
+ 大多数情况下,它都会是 WebGL 渲染引擎实例,但是在微信开放数据域当中,它会是 Canvas 渲染引擎实例。请注意,从 2.0 开始,我们在其他平台和环境下都废弃了 Canvas 渲染器。 */ + static renderEngine: any; + /** !#en The total draw call count in last rendered frame. + !#zh 上一次渲染帧所提交的渲染批次总数。 */ + static drawCalls: number; + } + /** !#en The burst of 3d particle. + !#zh 3D 粒子发射时的爆发个数 */ + export class Burst { + /** !#en Time between the start of the particle system and the trigger of this Brust + !#zh 粒子系统开始运行到触发此次 Brust 的时间 */ + time: number; + /** !#en Minimum number of emitted particles + !#zh 发射粒子的最小数量 */ + minCount: number; + /** !#en Maximum number of emitted particles + !#zh 发射粒子的最大数量 */ + maxCount: number; + /** !#en The number of times Burst was triggered. + !#zh Burst 的触发次数 */ + repeatCount: number; + /** !#en Interval of each trigger + !#zh 每次触发的间隔时间 */ + repeatInterval: number; + /** !#en Number of particles emitted + !#zh 发射的粒子的数量 */ + count: CurveRange; + } + /** !#en The animation curve of 3d particle. + !#zh 3D 粒子动画曲线 */ + export class AnimationCurve { + /** !#en Array of key value. + !#zh 关键值列表。 */ + keyFrames: Keyframe[]; + /** !#en Pre-wrap mode. + !#zh 前置循环模式。 */ + preWrapMode: WrapMode; + /** !#en Post-wrap mode. + !#zh 后置循环模式。 */ + postWrapMode: WrapMode; + } + /** !#en The ParticleSystem3D Component. + !#zh 3D 粒子组件 */ + export class ParticleSystem3D extends RenderComponent { + /** !#en The run time of particle. + !#zh 粒子系统运行时间 */ + duration: number; + /** !#en The maximum number of particles that a particle system can generate. + !#zh 粒子系统能生成的最大粒子数量 */ + capacity: number; + /** !#en Whether the particle system loops. + !#zh 粒子系统是否循环播放 */ + loop: boolean; + /** !#en Whether the particles start playing automatically after loaded. + !#zh 粒子系统加载后是否自动开始播放 */ + playOnAwake: boolean; + /** !#en When selected, the particle system will start playing after one round has been played (only effective when loop is enabled). + !#zh 选中之后,粒子系统会以已播放完一轮之后的状态开始播放(仅当循环播放启用时有效) */ + prewarm: boolean; + /** !#en The coordinate system in which the particle system is located.
+ World coordinates (does not change when the position of other objects changes)
+ Local coordinates (moving as the position of the parent node changes)
+ Custom coordinates (moving with the position of a custom node) + !#zh 选择粒子系统所在的坐标系
+ 世界坐标(不随其他物体位置改变而变换)
+ 局部坐标(跟随父节点位置改变而移动)
+ 自定坐标(跟随自定义节点的位置改变而移动) */ + simulationSpace: ParticleSystem3DAssembler.Space; + /** !#en Controlling the update speed of the entire particle system. + !#zh 控制整个粒子系统的更新速度。 */ + simulationSpeed: number; + /** !#en Delay particle emission time after particle system starts running. + !#zh 粒子系统开始运行后,延迟粒子发射的时间。 */ + startDelay: CurveRange; + /** !#en Particle life cycle。 + !#zh 粒子生命周期。 */ + startLifetime: CurveRange; + /** !#en Particle initial color + !#zh 粒子初始颜色 */ + startColor: GradientRange; + /** !#en Particle scale space + !#zh 缩放空间 */ + scaleSpace: ParticleSystem3DAssembler.Space; + /** !#en Initial particle size + !#zh 粒子初始大小 */ + startSize: CurveRange; + /** !#en Initial particle speed + !#zh 粒子初始速度 */ + startSpeed: CurveRange; + /** !#en Particle initial rotation angle + !#zh 粒子初始旋转角度 */ + startRotation: CurveRange; + /** !#en Gravity coefficient of particles affected by gravity + !#zh 粒子受重力影响的重力系数 */ + gravityModifier: CurveRange; + /** !#en Particles emitted per second + !#zh 每秒发射的粒子数 */ + rateOverTime: CurveRange; + /** !#en Number of particles emitted per unit distance moved + !#zh 每移动单位距离发射的粒子数 */ + rateOverDistance: CurveRange; + /** !#en The number of Brusts that emit a specified number of particles at a specified time + !#zh 设定在指定时间发射指定数量的粒子的 Brust 的数量 */ + bursts: Burst[]; + /** !#en Particle emitter module + !#zh 粒子发射器模块 */ + shapeModule: ShapeModule; + /** !#en Color control module + !#zh 颜色控制模块 */ + colorOverLifetimeModule: ColorOverLifetimeModule; + /** !#en Particle size module + !#zh 粒子大小模块 */ + sizeOvertimeModule: SizeOvertimeModule; + /** !#en Particle speed module + !#zh 粒子速度模块 */ + velocityOvertimeModule: VelocityOvertimeModule; + /** !#en Particle acceleration module + !#zh 粒子加速度模块 */ + forceOvertimeModule: ForceOvertimeModule; + /** !#en Particle limit speed module (only CPU particles are supported) + !#zh 粒子限制速度模块(只支持 CPU 粒子) */ + limitVelocityOvertimeModule: LimitVelocityOvertimeModule; + /** !#en Particle rotation module + !#zh 粒子旋转模块 */ + rotationOvertimeModule: RotationOvertimeModule; + /** !#en Texture Animation Module + !#zh 贴图动画模块 */ + textureAnimationModule: TextureAnimationModule; + /** !#en Particle Trajectory Module + !#zh 粒子轨迹模块 */ + trailModule: TrailModule; + /** !#en Particle generation mode + !#zh 设定粒子生成模式 */ + renderMode: ParticleSystem3DAssembler.RenderMode; + /** !#en When the particle generation mode is StrecthedBillboard, in the direction of movement of the particles is stretched by velocity magnitude + !#zh 在粒子生成方式为 StrecthedBillboard 时,对粒子在运动方向上按速度大小进行拉伸 */ + velocityScale: number; + /** !#en When the particle generation method is StrecthedBillboard, the particles are stretched according to the particle size in the direction of motion + !#zh 在粒子生成方式为 StrecthedBillboard 时,对粒子在运动方向上按粒子大小进行拉伸 */ + lengthScale: number; + /** !#en Particle model + !#zh 粒子模型 */ + mesh: Mesh; + /** !#en Particle material + !#zh 粒子材质 */ + particleMaterial: Material; + /** !#en Particle trail material + !#zh 粒子轨迹材质 */ + trailMaterial: Material; + /** + !#en Playing particle effects + !#zh 播放粒子效果 + */ + play(): void; + /** + !#en Pause particle effect + !#zh 暂停播放粒子效果 + */ + pause(): void; + /** + !#en Stop particle effect + !#zh 停止播放粒子效果 + */ + stop(): void; + /** + !#en Remove all particle effect + !#zh 将所有粒子从粒子系统中清除 + */ + clear(): void; + } + /** !#en + Helper class for ES5 Map. + !#zh + ES5 Map 辅助类。 */ + export class MapUtils { + } + /** !#en . + !#zh 。 */ + export class SkeletonAnimation extends Animation { + } + /** !#en + Skinned Mesh Renderer + !#zh + 蒙皮渲染组件 */ + export class SkinnedMeshRenderer extends MeshRenderer { + /** !#en + Skeleton Asset + !#zh + 骨骼资源 */ + skeleton: sp.Skeleton; + /** !#en + Root Bone + !#zh + 骨骼根节点 */ + rootBone: Node; + } + /** !#en SkeletonAnimationClip Asset. + !#zh 骨骼动画剪辑。 */ + export class SkeletonAnimationClip extends AnimationClip { + } + /** !#en Effect Asset. + !#zh Effect 资源类型。 */ + export class EffectAsset extends Asset { + } + /** !#en Material Asset. + !#zh 材质资源类。 */ + export class Material extends Asset { + /** + !#en Get built-in materials + !#zh 获取内置材质 + @param name name + */ + static getBuiltinMaterial(name: string): Material; + /** + !#en Creates a Material with builtin Effect. + !#zh 使用内建 Effect 创建一个材质。 + @param effectName effectName + @param techniqueIndex techniqueIndex + */ + static createWithBuiltin(effectName: string, techniqueIndex?: number): Material; + /** + !#en Creates a Material. + !#zh 创建一个材质。 + @param effectAsset effectAsset + @param techniqueIndex techniqueIndex + */ + static create(effectAsset: EffectAsset, techniqueIndex?: number): Material; + /** + !#en Sets the Material property + !#zh 设置材质的属性 + @param name name + @param val val + @param passIdx passIdx + @param directly directly + */ + setProperty(name: string, val: any, passIdx?: number, directly?: boolean): void; + /** + !#en Gets the Material property. + !#zh 获取材质的属性。 + @param name name + @param passIdx passIdx + */ + getProperty(name: string, passIdx: number): any; + /** + !#en Sets the Material define. + !#zh 设置材质的宏定义。 + @param name name + @param val val + @param passIdx passIdx + @param force force + */ + define(name: string, val: boolean|number, passIdx?: number, force?: boolean): void; + /** + !#en Gets the Material define. + !#zh 获取材质的宏定义。 + @param name name + @param passIdx passIdx + */ + getDefine(name: string, passIdx?: number): boolean; + /** + !#en Sets the Material cull mode. + !#zh 设置材质的裁减模式。 + @param cullMode cullMode + @param passIdx passIdx + */ + setCullMode(cullMode: number, passIdx: number): void; + /** + !#en Sets the Material depth states. + !#zh 设置材质的深度渲染状态。 + @param depthTest depthTest + @param depthWrite depthWrite + @param depthFunc depthFunc + @param passIdx passIdx + */ + setDepth(depthTest: boolean, depthWrite: boolean, depthFunc: number, passIdx: number): void; + /** + !#en Sets the Material blend states. + !#zh 设置材质的混合渲染状态。 + @param enabled enabled + @param blendEq blendEq + @param blendSrc blendSrc + @param blendDst blendDst + @param blendAlphaEq blendAlphaEq + @param blendSrcAlpha blendSrcAlpha + @param blendDstAlpha blendDstAlpha + @param blendColor blendColor + @param passIdx passIdx + */ + setBlend(enabled: boolean, blendEq: number, blendSrc: number, blendDst: number, blendAlphaEq: number, blendSrcAlpha: number, blendDstAlpha: number, blendColor: number, passIdx: number): void; + /** + !#en Sets whether enable the stencil test. + !#zh 设置是否开启模板测试。 + @param stencilTest stencilTest + @param passIdx passIdx + */ + setStencilEnabled(stencilTest: number, passIdx: number): void; + /** + !#en Sets the Material stencil render states. + !#zh 设置材质的模板测试渲染参数。 + @param stencilTest stencilTest + @param stencilFunc stencilFunc + @param stencilRef stencilRef + @param stencilMask stencilMask + @param stencilFailOp stencilFailOp + @param stencilZFailOp stencilZFailOp + @param stencilZPassOp stencilZPassOp + @param stencilWriteMask stencilWriteMask + @param passIdx passIdx + */ + setStencil(stencilTest: number, stencilFunc: number, stencilRef: number, stencilMask: number, stencilFailOp: number, stencilZFailOp: number, stencilZPassOp: number, stencilWriteMask: number, passIdx: number): void; + } + /** !#en + Material Variant is an extension of the Material Asset. + Changes to Material Variant do not affect other Material Variant or Material Asset, + and changes to Material Asset are synchronized to the Material Variant. + However, when a Material Variant had already modifies a state, the Material Asset state is not synchronized to the Material Variant. + !#zh + 材质变体是材质资源的一个延伸。 + 材质变体的修改不会影响到其他的材质变体或者材质资源,而材质资源的修改会同步体现到材质变体上, + 但是当材质变体对一个状态修改后,材质资源再对这个状态修改是不会同步到材质变体上的。 */ + export class MaterialVariant extends Material { + /** + + @param materialName materialName + @param owner owner + */ + static createWithBuiltin (materialName: string, owner: cc.RenderComponent): MaterialVariant | null; + /** + + @param material material + @param owner owner + */ + static create (material: Material, owner: cc.RenderComponent): MaterialVariant | null; + } + /** !#en cc.EditBox is a component for inputing text, you can use it to gather small amounts of text from users. + !#zh EditBox 组件,用于获取用户的输入文本。 */ + export class EditBox extends Component { + /** !#en Input string of EditBox. + !#zh 输入框的初始输入内容,如果为空则会显示占位符的文本。 */ + string: string; + /** !#en The Label component attached to the node for EditBox's input text label + !#zh 输入框输入文本节点上挂载的 Label 组件对象 */ + textLabel: Label; + /** !#en The Label component attached to the node for EditBox's placeholder text label + !#zh 输入框占位符节点上挂载的 Label 组件对象 */ + placeholderLabel: Label; + /** !#en The Sprite component attached to the node for EditBox's background + !#zh 输入框背景节点上挂载的 Sprite 组件对象 */ + background: Sprite; + /** !#en The background image of EditBox. This property will be removed in the future, use editBox.background instead please. + !#zh 输入框的背景图片。 该属性会在将来的版本中移除,请用 editBox.background */ + backgroundImage: SpriteFrame; + /** !#en + The return key type of EditBox. + Note: it is meaningless for web platforms and desktop platforms. + !#zh + 指定移动设备上面回车按钮的样式。 + 注意:这个选项对 web 平台与 desktop 平台无效。 */ + returnType: EditBox.KeyboardReturnType; + /** !#en Set the input flags that are to be applied to the EditBox. + !#zh 指定输入标志位,可以指定输入方式为密码或者单词首字母大写。 */ + inputFlag: EditBox.InputFlag; + /** !#en + Set the input mode of the edit box. + If you pass ANY, it will create a multiline EditBox. + !#zh + 指定输入模式: ANY表示多行输入,其它都是单行输入,移动平台上还可以指定键盘样式。 */ + inputMode: EditBox.InputMode; + /** !#en Font size of the input text. This property will be removed in the future, use editBox.textLabel.fontSize instead please. + !#zh 输入框文本的字体大小。 该属性会在将来的版本中移除,请使用 editBox.textLabel.fontSize。 */ + fontSize: number; + /** !#en Change the lineHeight of displayed text. This property will be removed in the future, use editBox.textLabel.lineHeight instead. + !#zh 输入框文本的行高。该属性会在将来的版本中移除,请使用 editBox.textLabel.lineHeight */ + lineHeight: number; + /** !#en Font color of the input text. This property will be removed in the future, use editBox.textLabel.node.color instead. + !#zh 输入框文本的颜色。该属性会在将来的版本中移除,请使用 editBox.textLabel.node.color */ + fontColor: Color; + /** !#en The display text of placeholder. + !#zh 输入框占位符的文本内容。 */ + placeholder: string; + /** !#en The font size of placeholder. This property will be removed in the future, use editBox.placeholderLabel.fontSize instead. + !#zh 输入框占位符的字体大小。该属性会在将来的版本中移除,请使用 editBox.placeholderLabel.fontSize */ + placeholderFontSize: number; + /** !#en The font color of placeholder. This property will be removed in the future, use editBox.placeholderLabel.node.color instead. + !#zh 输入框占位符的字体颜色。该属性会在将来的版本中移除,请使用 editBox.placeholderLabel.node.color */ + placeholderFontColor: Color; + /** !#en The maximize input length of EditBox. + - If pass a value less than 0, it won't limit the input number of characters. + - If pass 0, it doesn't allow input any characters. + !#zh 输入框最大允许输入的字符个数。 + - 如果值为小于 0 的值,则不会限制输入字符个数。 + - 如果值为 0,则不允许用户进行任何输入。 */ + maxLength: number; + /** !#en The input is always visible and be on top of the game view (only useful on Web), this property will be removed on v2.1 + !zh 输入框总是可见,并且永远在游戏视图的上面(这个属性只有在 Web 上面修改有意义),该属性会在 v2.1 中移除 + Note: only available on Web at the moment. */ + stayOnTop: boolean; + /** !#en Set the tabIndex of the DOM input element (only useful on Web). + !#zh 修改 DOM 输入元素的 tabIndex(这个属性只有在 Web 上面修改有意义)。 */ + tabIndex: number; + /** !#en The event handler to be called when EditBox began to edit text. + !#zh 开始编辑文本输入框触发的事件回调。 */ + editingDidBegan: Component.EventHandler[]; + /** !#en The event handler to be called when EditBox text changes. + !#zh 编辑文本输入框时触发的事件回调。 */ + textChanged: Component.EventHandler[]; + /** !#en The event handler to be called when EditBox edit ends. + !#zh 结束编辑文本输入框时触发的事件回调。 */ + editingDidEnded: Component.EventHandler[]; + /** !#en The event handler to be called when return key is pressed. Windows is not supported. + !#zh 当用户按下回车按键时的事件回调,目前不支持 windows 平台 */ + editingReturn: Component.EventHandler[]; + /** + !#en Let the EditBox get focus, this method will be removed on v2.1 + !#zh 让当前 EditBox 获得焦点, 这个方法会在 v2.1 中移除 + */ + setFocus(): void; + /** + !#en Let the EditBox get focus + !#zh 让当前 EditBox 获得焦点 + */ + focus(): void; + /** + !#en Let the EditBox lose focus + !#zh 让当前 EditBox 失去焦点 + */ + blur(): void; + /** + !#en Determine whether EditBox is getting focus or not. + !#zh 判断 EditBox 是否获得了焦点 + */ + isFocused(): void; + /** + !#en if you don't need the EditBox and it isn't in any running Scene, you should + call the destroy method on this component or the associated node explicitly. + Otherwise, the created DOM element won't be removed from web page. + !#zh + 如果你不再使用 EditBox,并且组件未添加到场景中,那么你必须手动对组件或所在节点调用 destroy。 + 这样才能移除网页上的 DOM 节点,避免 Web 平台内存泄露。 + + @example + ```js + editbox.node.parent = null; // or editbox.node.removeFromParent(false); + // when you don't need editbox anymore + editbox.node.destroy(); + ``` + */ + destroy(): boolean; + } + /** undefined */ + export class PhysicsBoxCollider extends PhysicsCollider implements Collider.Box { + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Box size + !#zh 包围盒大小 */ + size: Size; + } + /** undefined */ + export class PhysicsChainCollider extends PolygonCollider { + /** !#en Whether the chain is loop + !#zh 链条是否首尾相连 */ + loop: boolean; + /** !#en Chain points + !#zh 链条顶点数组 */ + points: Vec2[]; + } + /** undefined */ + export class PhysicsCircleCollider extends PhysicsCollider implements Collider.Circle { + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Circle radius + !#zh 圆形半径 */ + radius: number; + } + /** undefined */ + export class PhysicsCollider extends Collider { + /** !#en + The density. + !#zh + 密度 */ + density: number; + /** !#en + A sensor collider collects contact information but never generates a collision response + !#zh + 一个传感器类型的碰撞体会产生碰撞回调,但是不会发生物理碰撞效果。 */ + sensor: boolean; + /** !#en + The friction coefficient, usually in the range [0,1]. + !#zh + 摩擦系数,取值一般在 [0, 1] 之间 */ + friction: number; + /** !#en + The restitution (elasticity) usually in the range [0,1]. + !#zh + 弹性系数,取值一般在 [0, 1]之间 */ + restitution: number; + /** !#en + Physics collider will find the rigidbody component on the node and set to this property. + !#zh + 碰撞体会在初始化时查找节点上是否存在刚体,如果查找成功则赋值到这个属性上。 */ + body: RigidBody; + /** + !#en + Apply current changes to collider, this will regenerate inner box2d fixtures. + !#zh + 应用当前 collider 中的修改,调用此函数会重新生成内部 box2d 的夹具。 + */ + apply(): void; + /** + !#en + Get the world aabb of the collider + !#zh + 获取碰撞体的世界坐标系下的包围盒 + */ + getAABB(): void; + } + /** undefined */ + export class PhysicsPolygonCollider extends PhysicsCollider implements Collider.Polygon { + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Polygon points + !#zh 多边形顶点数组 */ + points: Vec2[]; + } + /** !#en + A distance joint constrains two points on two bodies + to remain at a fixed distance from each other. You can view + this as a massless, rigid rod. + !#zh + 距离关节通过一个固定的长度来约束关节链接的两个刚体。你可以将它想象成一个无质量,坚固的木棍。 */ + export class DistanceJoint extends Joint { + /** !#en + The distance separating the two ends of the joint. + !#zh + 关节两端的距离 */ + distance: number; + /** !#en + The spring frequency. + !#zh + 弹性系数。 */ + frequency: number; + /** !#en + The damping ratio. + !#zh + 阻尼,表示关节变形后,恢复到初始状态受到的阻力。 */ + dampingRatio: number; + } + /** !#en + Base class for joints to connect rigidbody. + !#zh + 关节类的基类 */ + export class Joint extends Component { + /** !#en + The anchor of the rigidbody. + !#zh + 刚体的锚点。 */ + anchor: Vec2; + /** !#en + The anchor of the connected rigidbody. + !#zh + 关节另一端刚体的锚点。 */ + connectedAnchor: Vec2; + /** !#en + The rigidbody to which the other end of the joint is attached. + !#zh + 关节另一端链接的刚体 */ + connectedBody: RigidBody; + /** !#en + Should the two rigid bodies connected with this joint collide with each other? + !#zh + 链接到关节上的两个刚体是否应该相互碰撞? */ + collideConnected: boolean; + /** + !#en + Apply current changes to joint, this will regenerate inner box2d joint. + !#zh + 应用当前关节中的修改,调用此函数会重新生成内部 box2d 的关节。 + */ + apply(): void; + /** + !#en + Get the anchor point on rigidbody in world coordinates. + !#zh + 获取刚体世界坐标系下的锚点。 + */ + getWorldAnchor(): Vec2; + /** + !#en + Get the anchor point on connected rigidbody in world coordinates. + !#zh + 获取链接刚体世界坐标系下的锚点。 + */ + getWorldConnectedAnchor(): Vec2; + /** + !#en + Gets the reaction force of the joint. + !#zh + 获取关节的反作用力。 + @param timeStep The time to calculate the reaction force for. + */ + getReactionForce(timeStep: number): Vec2; + /** + !#en + Gets the reaction torque of the joint. + !#zh + 获取关节的反扭矩。 + @param timeStep The time to calculate the reaction torque for. + */ + getReactionTorque(timeStep: number): number; + } + /** !#en + A motor joint is used to control the relative motion + between two bodies. A typical usage is to control the movement + of a dynamic body with respect to the ground. + !#zh + 马达关节被用来控制两个刚体间的相对运动。 + 一个典型的例子是用来控制一个动态刚体相对于地面的运动。 */ + export class MotorJoint extends Joint { + /** !#en + The anchor of the rigidbody. + !#zh + 刚体的锚点。 */ + anchor: Vec2; + /** !#en + The anchor of the connected rigidbody. + !#zh + 关节另一端刚体的锚点。 */ + connectedAnchor: Vec2; + /** !#en + The linear offset from connected rigidbody to rigidbody. + !#zh + 关节另一端的刚体相对于起始端刚体的位置偏移量 */ + linearOffset: Vec2; + /** !#en + The angular offset from connected rigidbody to rigidbody. + !#zh + 关节另一端的刚体相对于起始端刚体的角度偏移量 */ + angularOffset: number; + /** !#en + The maximum force can be applied to rigidbody. + !#zh + 可以应用于刚体的最大的力值 */ + maxForce: number; + /** !#en + The maximum torque can be applied to rigidbody. + !#zh + 可以应用于刚体的最大扭矩值 */ + maxTorque: number; + /** !#en + The position correction factor in the range [0,1]. + !#zh + 位置矫正系数,范围为 [0, 1] */ + correctionFactor: number; + } + /** !#en + A mouse joint is used to make a point on a body track a + specified world point. This a soft constraint with a maximum + force. This allows the constraint to stretch and without + applying huge forces. + Mouse Joint will auto register the touch event with the mouse region node, + and move the choosed rigidbody in touch move event. + Note : generally mouse joint only used in test bed. + !#zh + 鼠标关节用于使刚体上的一个点追踪一个指定的世界坐标系下的位置。 + 鼠标关节可以指定一个最大的力来施加一个柔和的约束。 + 鼠标关节会自动使用 mouse region 节点来注册鼠标事件,并且在触摸移动事件中移动选中的刚体。 + 注意:一般鼠标关节只在测试环境中使用。 */ + export class MouseJoint extends Joint { + /** !#en + The anchor of the rigidbody. + !#zh + 刚体的锚点。 */ + anchor: Vec2; + /** !#en + The anchor of the connected rigidbody. + !#zh + 关节另一端刚体的锚点。 */ + connectedAnchor: Vec2; + /** !#en + The node used to register touch evnet. + If this is null, it will be the joint's node. + !#zh + 用于注册触摸事件的节点。 + 如果没有设置这个值,那么将会使用关节的节点来注册事件。 */ + mouseRegion: Node; + /** !#en + The target point. + The mouse joint will move choosed rigidbody to target point. + !#zh + 目标点,鼠标关节将会移动选中的刚体到指定的目标点 */ + target: Vec2; + /** !#en + The spring frequency. + !#zh + 弹簧系数。 */ + frequency: number; + /** !#en + The damping ratio. + !#zh + 阻尼,表示关节变形后,恢复到初始状态受到的阻力。 */ + 0: number; + /** !#en + The maximum force + !#zh + 最大阻力值 */ + maxForce: number; + } + /** !#en + A prismatic joint. This joint provides one degree of freedom: translation + along an axis fixed in rigidbody. Relative rotation is prevented. You can + use a joint limit to restrict the range of motion and a joint motor to + drive the motion or to model joint friction. + !#zh + 移动关节指定了只能在一个方向上移动刚体。 + 你可以开启关节限制来设置刚体运行移动的间距,也可以开启马达来使用关节马达驱动刚体的运行。 */ + export class PrismaticJoint extends Joint { + /** !#en + The local joint axis relative to rigidbody. + !#zh + 指定刚体可以移动的方向。 */ + localAxisA: Vec2; + /** !#en + The reference angle. + !#zh + 相对角度 */ + referenceAngle: number; + /** !#en + Enable joint distance limit? + !#zh + 是否开启关节的距离限制? */ + enableLimit: boolean; + /** !#en + Enable joint motor? + !#zh + 是否开启关节马达? */ + enableMotor: boolean; + /** !#en + The lower joint limit. + !#zh + 刚体能够移动的最小值 */ + lowerLimit: number; + /** !#en + The upper joint limit. + !#zh + 刚体能够移动的最大值 */ + upperLimit: number; + /** !#en + The maxium force can be applied to rigidbody to rearch the target motor speed. + !#zh + 可以施加到刚体的最大力。 */ + maxMotorForce: number; + /** !#en + The expected motor speed. + !#zh + 期望的马达速度。 */ + motorSpeed: number; + } + /** !#en + A rope joint enforces a maximum distance between two points + on two bodies. It has no other effect. + Warning: if you attempt to change the maximum length during + the simulation you will get some non-physical behavior. + !#zh + 绳子关节只指定两个刚体间的最大距离,没有其他的效果。 + 注意:如果你试图动态修改关节的长度,这有可能会得到一些意外的效果。 */ + export class RopeJoint extends Joint { + /** !#en + The max length. + !#zh + 最大长度。 */ + maxLength: number; + } + /** !#en + A revolute joint constrains two bodies to share a common point while they + are free to rotate about the point. The relative rotation about the shared + point is the joint angle. You can limit the relative rotation with + a joint limit that specifies a lower and upper angle. You can use a motor + to drive the relative rotation about the shared point. A maximum motor torque + is provided so that infinite forces are not generated. + !#zh + 旋转关节可以约束两个刚体围绕一个点来进行旋转。 + 你可以通过开启关节限制来限制旋转的最大角度和最小角度。 + 你可以通过开启马达来施加一个扭矩力来驱动这两个刚体在这一点上的相对速度。 */ + export class RevoluteJoint extends Joint { + /** !#en + The reference angle. + An angle between bodies considered to be zero for the joint angle. + !#zh + 相对角度。 + 两个物体之间角度为零时可以看作相等于关节角度 */ + referenceAngle: number; + /** !#en + The lower angle. + !#zh + 角度的最低限制。 */ + lowerAngle: number; + /** !#en + The upper angle. + !#zh + 角度的最高限制。 */ + upperAngle: number; + /** !#en + The maxium torque can be applied to rigidbody to rearch the target motor speed. + !#zh + 可以施加到刚体的最大扭矩。 */ + maxMotorTorque: number; + /** !#en + The expected motor speed. + !#zh + 期望的马达速度。 */ + motorSpeed: number; + /** !#en + Enable joint limit? + !#zh + 是否开启关节的限制? */ + enableLimit: boolean; + /** !#en + Enable joint motor? + !#zh + 是否开启关节马达? */ + enableMotor: boolean; + /** + !#en + Get the joint angle. + !#zh + 获取关节角度。 + */ + getJointAngle(): number; + } + /** !#en + A weld joint essentially glues two bodies together. A weld joint may + distort somewhat because the island constraint solver is approximate. + !#zh + 熔接关节相当于将两个刚体粘在了一起。 + 熔接关节可能会使某些东西失真,因为约束求解器算出的都是近似值。 */ + export class WeldJoint extends Joint { + /** !#en + The reference angle. + !#zh + 相对角度。 */ + referenceAngle: number; + /** !#en + The frequency. + !#zh + 弹性系数。 */ + frequency: number; + /** !#en + The damping ratio. + !#zh + 阻尼,表示关节变形后,恢复到初始状态受到的阻力。 */ + 0: number; + } + /** !#en + A wheel joint. This joint provides two degrees of freedom: translation + along an axis fixed in bodyA and rotation in the plane. You can use a joint motor to drive + the rotation or to model rotational friction. + This joint is designed for vehicle suspensions. + !#zh + 轮子关节提供两个维度的自由度:旋转和沿着指定方向上位置的移动。 + 你可以通过开启关节马达来使用马达驱动刚体的旋转。 + 轮组关节是专门为机动车类型设计的。 */ + export class WheelJoint extends Joint { + /** !#en + The local joint axis relative to rigidbody. + !#zh + 指定刚体可以移动的方向。 */ + localAxisA: Vec2; + /** !#en + The maxium torque can be applied to rigidbody to rearch the target motor speed. + !#zh + 可以施加到刚体的最大扭矩。 */ + maxMotorTorque: number; + /** !#en + The expected motor speed. + !#zh + 期望的马达速度。 */ + motorSpeed: number; + /** !#en + Enable joint motor? + !#zh + 是否开启关节马达? */ + enableMotor: boolean; + /** !#en + The spring frequency. + !#zh + 弹性系数。 */ + frequency: number; + /** !#en + The damping ratio. + !#zh + 阻尼,表示关节变形后,恢复到初始状态受到的阻力。 */ + dampingRatio: number; + } + /** !#en The color over time module of 3d particle. + !#zh 3D 粒子颜色变化模块 */ + export class ColorOvertimeModule { + /** !#en The enable of ColorOvertimeModule. + !#zh 是否启用 */ + enable: boolean; + } + /** !#en The curve range of target value. + !#zh 目标值的曲线范围 */ + export class CurveRange { + /** !#en Curve type. + !#zh 曲线类型。 */ + mode: debug.DebugMode; + /** !#en The curve to use when mode is Curve. + !#zh 当 mode 为 Curve 时,使用的曲线。 */ + curve: AnimationCurve; + /** !#en The lower limit of the curve to use when mode is TwoCurves + !#zh 当 mode 为 TwoCurves 时,使用的曲线下限。 */ + curveMin: AnimationCurve; + /** !#en The upper limit of the curve to use when mode is TwoCurves + !#zh 当 mode 为 TwoCurves 时,使用的曲线上限。 */ + curveMax: AnimationCurve; + /** !#en When mode is Constant, the value of the curve. + !#zh 当 mode 为 Constant 时,曲线的值。 */ + constant: number; + /** !#en The lower limit of the curve to use when mode is TwoConstants + !#zh 当 mode 为 TwoConstants 时,曲线的下限。 */ + constantMin: number; + /** !#en The upper limit of the curve to use when mode is TwoConstants + !#zh 当 mode 为 TwoConstants 时,曲线的上限。 */ + constantMax: number; + /** !#en Coefficients applied to curve interpolation. + !#zh 应用于曲线插值的系数。 */ + multiplier: number; + } + /** !#en The force over time module of 3d particle. + !#zh 3D 粒子的加速度模块 */ + export class ForceOvertimeModule { + /** !#en The enable of ColorOvertimeModule. + !#zh 是否启用 */ + enable: boolean; + /** !#en Coordinate system used in acceleration calculation. + !#zh 加速度计算时采用的坐标系。 */ + space: ParticleSystem3DAssembler.Space; + /** !#en X-axis acceleration component. + !#zh X 轴方向上的加速度分量。 */ + x: CurveRange; + /** !#en Y-axis acceleration component. + !#zh Y 轴方向上的加速度分量。 */ + y: CurveRange; + /** !#en Z-axis acceleration component. + !#zh Z 轴方向上的加速度分量。 */ + z: CurveRange; + } + /** !#en The gradient range of color. + !#zh 颜色值的渐变范围 */ + export class GradientRange { + /** !#en Gradient type. + !#zh 渐变色类型。 */ + mode: debug.DebugMode; + /** !#en The color when mode is Color. + !#zh 当 mode 为 Color 时的颜色。 */ + color: Color; + /** !#en Lower color limit when mode is TwoColors. + !#zh 当 mode 为 TwoColors 时的颜色下限。 */ + colorMin: Color; + /** !#en Upper color limit when mode is TwoColors. + !#zh 当 mode 为 TwoColors 时的颜色上限。 */ + colorMax: Color; + /** !#en Color gradient when mode is Gradient + !#zh 当 mode 为 Gradient 时的颜色渐变。 */ + gradient: Gradient; + /** !#en Lower color gradient limit when mode is TwoGradients. + !#zh 当 mode 为 TwoGradients 时的颜色渐变下限。 */ + gradientMin: Gradient; + /** !#en Upper color gradient limit when mode is TwoGradients. + !#zh 当 mode 为 TwoGradients 时的颜色渐变上限。 */ + gradientMax: Gradient; + } + /** !#en The color key of gradient. + !#zh color 关键帧 */ + export class ColorKey { + /** !#en Color value. + !#zh 颜色值。 */ + color: Color; + /** !#en Time value. + !#zh 时间值。 */ + time: number; + } + /** !#en The alpha key of gradient. + !#zh alpha 关键帧 */ + export class AlphaKey { + /** !#en Alpha value. + !#zh 透明度。 */ + alpha: number; + /** !#en Time. + !#zh 时间帧。 */ + time: number; + } + /** !#en The gradient data of color. + !#zh 颜色渐变数据 */ + export class Gradient { + /** !#en Array of color key. + !#zh 颜色关键帧列表。 */ + colorKeys: ColorKey[]; + /** !#en Array of alpha key. + !#zh 透明度关键帧列表。 */ + alphaKeys: AlphaKey[]; + /** !#en Blend mode. + !#zh 混合模式。 */ + mode: debug.DebugMode; + } + /** !#en The limit velocity module of 3d particle. + !#zh 3D 粒子的限速模块 */ + export class LimitVelocityOvertimeModule { + /** !#en The enable of LimitVelocityOvertimeModule. + !#zh 是否启用 */ + enable: boolean; + /** !#en The coordinate system used when calculating the lower speed limit. + !#zh 计算速度下限时采用的坐标系。 */ + space: ParticleSystem3DAssembler.Space; + /** !#en Whether to limit the three axes separately. + !#zh 是否三个轴分开限制。 */ + separateAxes: boolean; + /** !#en Lower speed limit + !#zh 速度下限。 */ + limit: CurveRange; + /** !#en Lower speed limit in X direction. + !#zh X 轴方向上的速度下限。 */ + limitX: CurveRange; + /** !#en Lower speed limit in Y direction. + !#zh Y 轴方向上的速度下限。 */ + limitY: CurveRange; + /** !#en Lower speed limit in Z direction. + !#zh Z 轴方向上的速度下限。 */ + limitZ: CurveRange; + /** !#en Interpolation of current speed and lower speed limit. + !#zh 当前速度与速度下限的插值。 */ + dampen: number; + } + /** !#en The optimized curve. + !#zh 优化曲线 */ + export class OptimizedCurve { + } + /** !#en The rotation module of 3d particle. + !#zh 3D 粒子的旋转模块 */ + export class RotationOvertimeModule { + /** !#en The enable of RotationOvertimeModule. + !#zh 是否启用 */ + enable: boolean; + /** !#en Whether to set the rotation of three axes separately (not currently supported) + !#zh 是否三个轴分开设定旋转(暂不支持)。 */ + separateAxes: boolean; + /** !#en Set rotation around X axis. + !#zh 绕 X 轴设定旋转。 */ + x: CurveRange; + /** !#en Set rotation around Y axis. + !#zh 绕 Y 轴设定旋转。 */ + y: CurveRange; + /** !#en Set rotation around Z axis. + !#zh 绕 Z 轴设定旋转。 */ + z: CurveRange; + } + /** !#en The size module of 3d particle. + !#zh 3D 粒子的大小模块 */ + export class SizeOvertimeModule { + /** !#en The enable of SizeOvertimeModule. + !#zh 是否启用 */ + enable: boolean; + /** !#en Decide whether to control particle size independently on each axis. + !#zh 决定是否在每个轴上独立控制粒子大小。 */ + separateAxes: boolean; + /** !#en Define a curve to determine the size change of particles during their life cycle. + !#zh 定义一条曲线来决定粒子在其生命周期中的大小变化。 */ + size: CurveRange; + /** !#en Defines a curve to determine the size change of particles in the X-axis direction during their life cycle. + !#zh 定义一条曲线来决定粒子在其生命周期中 X 轴方向上的大小变化。 */ + x: CurveRange; + /** !#en Defines a curve to determine the size change of particles in the Y-axis direction during their life cycle. + !#zh 定义一条曲线来决定粒子在其生命周期中 Y 轴方向上的大小变化。 */ + y: CurveRange; + /** !#en Defines a curve to determine the size change of particles in the Z-axis direction during their life cycle. + !#zh 定义一条曲线来决定粒子在其生命周期中 Z 轴方向上的大小变化。 */ + z: CurveRange; + } + /** !#en The texture animation module of 3d particle. + !#zh 3D 粒子的贴图动画模块 */ + export class TextureAnimationModule { + /** !#en The enable of TextureAnimationModule. + !#zh 是否启用 */ + enable: boolean; + /** !#en Set the type of particle map animation (only supports Grid mode for the time being) + !#zh 设定粒子贴图动画的类型(暂只支持 Grid 模式。 */ + mode: debug.DebugMode; + /** !#en Animation frames in X direction. + !#zh X 方向动画帧数。 */ + numTilesX: number; + /** !#en Animation frames in Y direction. + !#zh Y 方向动画帧数。 */ + numTilesY: number; + /** !#en The way of the animation plays. + !#zh 动画播放方式。 */ + animation: Animation; + /** !#en Randomly select a line from the animated map to generate the animation.
+ This option only takes effect when the animation playback mode is SingleRow. + !#zh 随机从动画贴图中选择一行以生成动画。
+ 此选项仅在动画播放方式为 SingleRow 时生效。 */ + randomRow: boolean; + /** !#en Select specific lines from the animation map to generate the animation.
+ This option is only available when the animation playback mode is SingleRow and randomRow is disabled. + !#zh 从动画贴图中选择特定行以生成动画。
+ 此选项仅在动画播放方式为 SingleRow 时且禁用 randomRow 时可用。 */ + rowIndex: number; + /** !#en Frame and time curve of animation playback in one cycle. + !#zh 一个周期内动画播放的帧与时间变化曲线。 */ + frameOverTime: CurveRange; + /** !#en Play from which frames, the time is the life cycle of the entire particle system. + !#zh 从第几帧开始播放,时间为整个粒子系统的生命周期。 */ + startFrame: CurveRange; + /** !#en Number of playback loops in a life cycle. + !#zh 一个生命周期内播放循环的次数。 */ + cycleCount: number; + } + /** !#en The velocity module of 3d particle. + !#zh 3D 粒子的速度模块 */ + export class VelocityOvertimeModule { + /** !#en The enable of VelocityOvertimeModule. + !#zh 是否启用 */ + enable: boolean; + /** !#en Coordinate system used in speed calculation. + !#zh 速度计算时采用的坐标系。 */ + space: ParticleSystem3DAssembler.Space; + /** !#en Velocity component in X axis direction + !#zh X 轴方向上的速度分量。 */ + x: CurveRange; + /** !#en Velocity component in Y axis direction + !#zh Y 轴方向上的速度分量。 */ + y: CurveRange; + /** !#en Velocity component in Z axis direction + !#zh Z 轴方向上的速度分量。 */ + z: CurveRange; + /** !#en Speed correction factor (only supports CPU particles). + !#zh 速度修正系数(只支持 CPU 粒子)。 */ + speedModifier: CurveRange; + } + /** !#en The shape module of 3d particle. + !#zh 3D 粒子的发射形状模块 */ + export class ShapeModule { + /** !#en The enable of shapeModule. + !#zh 是否启用 */ + enable: boolean; + /** !#en Particle emitter type. + !#zh 粒子发射器类型。 */ + shapeType: shapeModule.ShapeType; + /** !#en The emission site of the particle. + !#zh 粒子从发射器哪个部位发射。 */ + emitFrom: shapeModule.EmitLocation; + /** !#en Particle emitter radius. + !#zh 粒子发射器半径。 */ + radius: number; + /** !#en Particle emitter emission position (not valid for Box type emitters): + - 0 means emitted from the surface; + - 1 means launch from the center; + - 0 ~ 1 indicates emission from the center to the surface. + !#zh 粒子发射器发射位置(对 Box 类型的发射器无效): + - 0 表示从表面发射; + - 1 表示从中心发射; + - 0 ~ 1 之间表示在中心到表面之间发射。 */ + radiusThickness: number; + /** !#en The angle between the axis of the cone and the generatrix + Determines the opening and closing of the cone launcher + !#zh 圆锥的轴与母线的夹角。 + 决定圆锥发射器的开合程度。 */ + angle: number; + /** !#en Particle emitters emit in a fan-shaped range. + !#zh 粒子发射器在一个扇形范围内发射。 */ + arc: number; + /** !#en How particles are emitted in the sector range. + !#zh 粒子在扇形范围内的发射方式。 */ + arcMode: shapeModule.ArcMode; + /** !#en Controls the discrete intervals around the arcs where particles might be generated. + !#zh 控制可能产生粒子的弧周围的离散间隔。 */ + arcSpread: number; + /** !#en The speed at which particles are emitted around the circumference. + !#zh 粒子沿圆周发射的速度。 */ + arcSpeed: CurveRange; + /** !#en Axis length from top of cone to bottom of cone . + Determines the height of the cone emitter. + !#zh 圆锥顶部截面距离底部的轴长。 + 决定圆锥发射器的高度。 */ + length: number; + /** !#en Particle emitter emission location (for box-type particle emitters). + !#zh 粒子发射器发射位置(针对 Box 类型的粒子发射器。 */ + boxThickness: Vec3; + /** !#en Particle Emitter Position + !#zh 粒子发射器位置。 */ + position: Vec3; + /** !#en Particle emitter rotation angle. + !#zh 粒子发射器旋转角度。 */ + rotation: Vec3; + /** !#en Particle emitter scaling + !#zh 粒子发射器缩放比例。 */ + scale: Vec3; + /** !#en The direction of particle movement is determined based on the initial direction of the particles. + !#zh 根据粒子的初始方向决定粒子的移动方向。 */ + alignToDirection: boolean; + /** !#en Set particle generation direction randomly. + !#zh 粒子生成方向随机设定。 */ + randomDirectionAmount: number; + /** !#en Interpolation between the current emission direction and the direction from the current position to the center of the node. + !#zh 表示当前发射方向与当前位置到结点中心连线方向的插值。 */ + sphericalDirectionAmount: number; + } + /** !#en The trail module of 3d particle. + !#zh 3D 粒子拖尾模块 */ + export class TrailModule { + /** !#en The enable of trailModule. + !#zh 是否启用 */ + enable: boolean; + /** !#en Sets how particles generate trajectories. + !#zh 设定粒子生成轨迹的方式。 */ + mode: trailModule.TrailMode; + /** !#en Life cycle of trajectory. + !#zh 轨迹存在的生命周期。 */ + lifeTime: CurveRange; + /** !#en Minimum spacing between each track particle + !#zh 每个轨迹粒子之间的最小间距。 */ + minParticleDistance: number; + /** !#en The coordinate system of trajectories. + !#zh 轨迹设定时的坐标系。 */ + space: ParticleSystem3DAssembler.Space; + /** !#en Whether the particle itself exists. + !#zh 粒子本身是否存在。 */ + existWithParticles: boolean; + /** !#en Set the texture fill method + !#zh 设定纹理填充方式。 */ + textureMode: trailModule.TextureMode; + /** !#en Whether to use particle width + !#zh 是否使用粒子的宽度。 */ + widthFromParticle: boolean; + /** !#en Curves that control track length + !#zh 控制轨迹长度的曲线。 */ + widthRatio: CurveRange; + /** !#en Whether to use particle color + !#zh 是否使用粒子的颜色。 */ + colorFromParticle: boolean; + /** !#en The color of trajectories. + !#zh 轨迹的颜色。 */ + colorOverTrail: GradientRange; + /** !#en Trajectories color over time. + !#zh 轨迹随时间变化的颜色。 */ + colorOvertime: GradientRange; + } + /** !#en + Trigger event + !#zh + 触发事件。 */ + export class ITriggerEvent { + /** !#en + The type of event fired + !#zh + 触发的事件类型 */ + type: string; + /** !#en + Triggers its own collider in the event + !#zh + 触发事件中的自己的碰撞器 */ + selfCollider: Collider3D; + /** !#en + Triggers another collider in the event + !#zh + 触发事件中的另一个碰撞器 */ + otherCollider: Collider3D; + } + /** !#en + Collision information for collision events. + !#zh + 碰撞事件的碰撞信息。 */ + export class IContactEquation { + /** !#en + The collision point A in the collision information. + !#zh + 碰撞信息中的碰撞点 A。 */ + contactA: Vec3; + /** !#en + Collision point B in collision information. + !#zh + 碰撞信息中的碰撞点 B。 */ + contactB: Vec3; + /** !#en + Normals in collision information. + !#zh + 碰撞信息中的法线。 */ + normal: Vec3; + } + /** !#en + Collision events. + !#zh + 碰撞事件。 */ + export class ICollisionEvent { + /** !#en + Event type of collision. + !#zh + 碰撞的事件类型。 */ + type: string; + /** !#en + Collider of its own in collision. + !#zh + 碰撞中的自己的碰撞器。 */ + selfCollider: Collider3D; + /** !#en + Another collider in the collision. + !#zh + 碰撞中的另一个碰撞器。 */ + otherCollider: Collider3D; + /** !#en + Information about all the points of impact in the collision. + !#zh + 碰撞中的所有碰撞点的信息。 */ + contacts: IContactEquation[]; + } + /** !#en The rigid body type + !#zh 刚体类型 */ + export enum ERigidBodyType { + DYNAMIC = 0, + STATIC = 0, + KINEMATIC = 0, + } + /** !#en + Physical systems manager. + !#zh + 物理系统管理器。 */ + export class Physics3DManager { + /** !#en + Whether to enable the physics system, default is false. + !#zh + 是否启用物理系统,默认不启用。 */ + enabled: boolean; + /** !#en + Whether to allow the physics system to automatically hibernate, default is true. + !#zh + 物理系统是否允许自动休眠,默认为 true。 */ + allowSleep: boolean; + /** !#en + The maximum number of sub-steps a full step is permitted to be broken into, default is 2. + !#zh + 物理每帧模拟的最大子步数,默认为 2。 */ + maxSubStep: number; + /** !#en + Time spent in each simulation of physics, default is 1/60s. + !#zh + 物理每步模拟消耗的固定时间,默认为 1/60 秒。 */ + deltaTime: number; + /** !#en + Whether to use a fixed time step. + !#zh + 是否使用固定的时间步长。 */ + useFixedTime: boolean; + /** !#en + Gravity value of the physics simulation, default is (0, -10, 0). + !#zh + 物理世界的重力数值,默认为 (0, -10, 0)。 */ + gravity: Vec3; + /** !#en + Gets the global default physical material. Note that builtin is null. + !#zh + 获取全局的默认物理材质,注意:builtin 时为 null。 */ + defaultMaterial: PhysicsMaterial|void; + /** + !#en + A physical system simulation is performed once and will now be performed automatically once per frame. + !#zh + 执行一次物理系统的模拟,目前将在每帧自动执行一次。 + @param deltaTime The time difference from the last execution is currently elapsed per frame + */ + update(deltaTime: number): void; + /** + !#en Detect all collision boxes and return all detected results, or null if none is detected. Note that the return value is taken from the object pool, so do not save the result reference or modify the result. + !#zh 检测所有的碰撞盒,并返回所有被检测到的结果,若没有检测到,则返回空值。注意返回值是从对象池中取的,所以请不要保存结果引用或者修改结果。 + @param worldRay A ray in world space + @param groupIndexOrName Collision group index or group name + @param maxDistance Maximum detection distance + @param queryTrigger Detect trigger or not + */ + raycast(worldRay: geomUtils.Ray, groupIndexOrName: number|string, maxDistance: number, queryTrigger: boolean): PhysicsRayResult[]; + /** + !#en Detect all collision boxes and return the detection result with the shortest ray distance. If not, return null value. Note that the return value is taken from the object pool, so do not save the result reference or modify the result. + !#zh 检测所有的碰撞盒,并返回射线距离最短的检测结果,若没有,则返回空值。注意返回值是从对象池中取的,所以请不要保存结果引用或者修改结果。 + @param worldRay A ray in world space + @param groupIndexOrName Collision group index or group name + @param maxDistance Maximum detection distance + @param queryTrigger Detect trigger or not + */ + raycastClosest(worldRay: geomUtils.Ray, groupIndexOrName: number|string, maxDistance: number, queryTrigger: boolean): PhysicsRayResult; + } + /** !#en + Used to store physical ray detection results + !#zh + 用于保存物理射线检测结果 */ + export class PhysicsRayResult { + /** !#en + Hit the point + !#zh + 击中点 */ + hitPoint: Vec3; + /** !#en + Distance + !#zh + 距离 */ + distance: number; + /** !#en + Hit the collision box + !#zh + 击中的碰撞盒 */ + collider: Collider3D; + /** + !#en + Set up ray. This method is used internally by the engine. Do not call it from an external script + !#zh + 设置射线,此方法由引擎内部使用,请勿在外部脚本调用 + @param hitPoint hitPoint + @param distance distance + @param collider collider + */ + _assign(hitPoint: Vec3, distance: number, collider: Collider3D): void; + /** + !#en + Clone + !#zh + 克隆 + */ + clone(): void; + } + /** Rigid body interface */ + export class IRigidBody { + rigidBody: RigidBody3D; + mass: number; + linearDamping: number; + angularDamping: number; + isKinematic: boolean; + useGravity: boolean; + fixedRotation: boolean; + linearFactor: IVec3Like; + angularFactor: IVec3Like; + allowSleep: boolean; + isAwake: boolean; + isSleepy: boolean; + isSleeping: boolean; + wakeUp(): void; + sleep(): void; + /** + + @param out out + */ + getLinearVelocity(out: IVec3Like): void; + /** + + @param out out + */ + setLinearVelocity(out: IVec3Like): void; + /** + + @param out out + */ + getAngularVelocity(out: IVec3Like): void; + /** + + @param out out + */ + setAngularVelocity(out: IVec3Like): void; + /** + + @param force force + @param relativePoint relativePoint + */ + applyForce(force: IVec3Like, relativePoint: IVec3Like): void; + /** + + @param force force + @param relativePoint relativePoint + */ + applyLocalForce(force: IVec3Like, relativePoint: IVec3Like): void; + /** + + @param force force + @param relativePoint relativePoint + */ + applyImpulse(force: IVec3Like, relativePoint: IVec3Like): void; + /** + + @param force force + @param relativePoint relativePoint + */ + applyLocalImpulse(force: IVec3Like, relativePoint: IVec3Like): void; + /** + + @param torque torque + */ + applyTorque(torque: IVec3Like): void; + /** + + @param torque torque + */ + applyLocalTorque(torque: IVec3Like): void; + } + /** Class has x y z properties */ + export class IVec3Like { + x: number; + y: number; + z: number; + } + /** Class has x y z w properties */ + export class IQuatLike { + x: number; + y: number; + z: number; + w: number; + } + /** !#en Base shape interface. */ + export class IBaseShape { + collider: Collider3D; + attachedRigidBody: RigidBody3D|void; + material: any; + isTrigger: boolean; + center: IVec3Like; + } + /** !#en box shape interface */ + export class IBoxShape { + size: IVec3Like; + } + /** !#en Sphere shape interface */ + export class ISphereShape { + radius: number; + } + /** Ray cast options */ + export class IRaycastOptions { + groupIndex: number; + queryTrigger: boolean; + maxDistance: number; + } + /** Collision detect */ + export class ICollisionDetect { + /** + Ray cast, and return information of the closest hit. + @param worldRay worldRay + @param options options + @param out out + */ + raycastClosest(worldRay: geomUtils.Ray, options: IRaycastOptions, out: PhysicsRayResult): boolean; + /** + Ray cast against all bodies. The provided callback will be executed for each hit with a RaycastResult as single argument. + @param worldRay worldRay + @param options options + @param pool pool + @param resultes resultes + */ + raycast(worldRay: geomUtils.Ray, options: IRaycastOptions, pool: RecyclePool, resultes: PhysicsRayResult[]): boolean; + } + /** Physics world interface */ + export class IPhysicsWorld { + } + /** !#en Manage Dynamic Atlas Manager. Dynamic Atlas Manager is used for merging textures at runtime, see [Dynamic Atlas](https://docs.cocos.com/creator/manual/en/advanced-topics/dynamic-atlas.html) for details. + !#zh 管理动态图集。动态图集用于在运行时对贴图进行合并,详见 [动态合图](https://docs.cocos.com/creator/manual/zh/advanced-topics/dynamic-atlas.html)。 */ + export class DynamicAtlasManager { + /** !#en Enable or disable the dynamic atlas, see [Dynamic Atlas](https://docs.cocos.com/creator/manual/en/advanced-topics/dynamic-atlas.html) for details. + !#zh 开启或者关闭动态图集,详见 [动态合图](https://docs.cocos.com/creator/manual/zh/advanced-topics/dynamic-atlas.html)。 */ + enabled: boolean; + /** !#en The maximum number of atlas that can be created. + !#zh 可以创建的最大图集数量。 */ + maxAtlasCount: number; + /** !#en Get the current created atlas count. + !#zh 获取当前已经创建的图集数量。 */ + atlasCount: number; + /** !#en Is enable textureBleeding. + !#zh 是否开启 textureBleeding */ + textureBleeding: boolean; + /** !#en The size of the atlas that was created + !#zh 创建的图集的宽高 */ + textureSize: number; + /** !#en The maximum size of the picture that can be added to the atlas. + !#zh 可以添加进图集的图片的最大尺寸。 */ + maxFrameSize: number; + /** !#en The minimum size of the picture that can be added to the atlas. + !#zh 可以添加进图集的图片的最小尺寸。 */ + minFrameSize: number; + /** + !#en Append a sprite frame into the dynamic atlas. + !#zh 添加碎图进入动态图集。 + @param spriteFrame spriteFrame + */ + insertSpriteFrame(spriteFrame: SpriteFrame): void; + /** + !#en Resets all dynamic atlas, and the existing ones will be destroyed. + !#zh 重置所有动态图集,已有的动态图集会被销毁。 + */ + reset(): void; + /** + !#en Displays all the dynamic atlas in the current scene, which you can use to view the current atlas state. + !#zh 在当前场景中显示所有动态图集,可以用来查看当前的合图状态。 + @param show show + */ + showDebug(show: boolean): Node; + } + /** !#en + Each frame applies a constant force to a rigid body, depending on the RigidBody3D + !#zh + 在每帧对一个刚体施加持续的力,依赖 RigidBody3D 组件 */ + export class ConstantForce extends Component { + /** !#en + Set the force used in the world coordinate system, use `this.force = otherVec3`. + !#zh + 设置世界坐标系中使用的力,设置时请用 `this.force = otherVec3` 的方式。 */ + force: Vec3; + /** !#en + Set the force used in the local coordinate system, using `this.localforce = otherVec3`. + !#zh + 获取和设置本地坐标系中使用的力,设置时请用 `this.localForce = otherVec3` 的方式。 */ + localForce: Vec3; + /** !#en + Torque applied to the world orientation + !#zh + 对世界朝向施加的扭矩 */ + torque: Vec3; + /** !#en + Torque applied to local orientation, using `this.localtorque = otherVec3`. + !#zh + 对本地朝向施加的扭矩,设置时请用 `this.localTorque = otherVec3` 的方式。 */ + localTorque: Vec3; + } + /** !#en + RigidBody is the basic object that make up the physical world, and it can make a node physically affected and react. + !#zh + 刚体是组成物理世界的基本对象,可以让一个节点受到物理影响并产生反应。该组件在使用 Builtin 物理引擎时无效。 */ + export class RigidBody3D extends Component { + /** !#en + Whether sleep is allowed. + !#zh + 是否允许休眠。 */ + allowSleep: boolean; + /** !#en + The mass of the rigidbody. + !#zh + 刚体的质量。 */ + mass: number; + /** !#en + Used to reduce the linear rate of rigidbody. The larger the value, the slower the rigidbody moves. + !#zh + 线性阻尼,用于减小刚体的线性速率,值越大物体移动越慢。 */ + linearDamping: number; + /** !#en + Used to reduce the rotation rate of rigidbody. The larger the value, the slower the rigidbody rotates. + !#zh + 角阻尼,用于减小刚体的旋转速率,值越大刚体旋转越慢。 */ + angularDamping: number; + /** !#en + If enabled, the developer controls the displacement and rotation of the rigidbody, not the physics engine. + !#zh + 是否由开发者来控制刚体的位移和旋转,而不是受物理引擎的影响。 */ + isKinematic: boolean; + /** !#en + If enabled, the rigidbody is affected by gravity. + !#zh + 如果开启,刚体会受到重力影响。 */ + useGravity: boolean; + /** !#en + If enabled, the rigidbody will be fixed without rotation during a collision. + !#zh + 如果开启,发生碰撞时会固定刚体不产生旋转。 */ + fixedRotation: boolean; + /** !#en + It can affect the linear velocity change of the rigidbody in each axis. The larger the value, the faster the rigidbody moves. + !#zh + 线性因子,可影响刚体在每个轴向的线性速度变化,值越大刚体移动越快。 */ + linearFactor: Vec3; + /** !#en + It can affect the rotation speed change of the rigidbody in each axis. The larger the value, the faster the rigidbody rotates. + !#zh + 旋转因子,可影响刚体在每个轴向的旋转速度变化,值越大刚体旋转越快。 */ + angularFactor: Vec3; + /** !#en + The rigidbody is awake. + !#zh + 刚体是否为唤醒的状态。 */ + isAwake: boolean; + /** !#en + The rigidbody can enter hibernation. + !#zh + 刚体是否为可进入休眠的状态。 */ + isSleepy: boolean; + /** !#en + The rigidbody is sleeping. + !#zh + 刚体是否为正在休眠的状态。 */ + isSleeping: boolean; + /** !#en + Get the rigidbody object inside the physics engine. + !#zh + 获得物理引擎内部刚体对象。 */ + rigidBody: IRigidBody; + /** + !#en + A force is applied to a rigid body at a point in world space. + !#zh + 在世界空间中的某点上对刚体施加一个作用力。 + @param force force + @param relativePoint The point of action, relative to the center of the rigid body. + */ + applyForce(force: Vec3, relativePoint: Vec3): void; + /** + !#en + Apply a force on the rigid body at a point in local space. + !#zh + 在本地空间中的某点上对刚体施加一个作用力。 + @param force force + @param localPoint Point of application + */ + applyLocalForce(force: Vec3, localPoint: Vec3): void; + /** + !#en + Apply an impulse to a rigid body at a point in world space. + !#zh + 在世界空间的某点上对刚体施加一个冲量。 + @param impulse impulse + @param relativePoint The point of action, relative to the center of the rigid body. + */ + applyImpulse(impulse: Vec3, relativePoint: Vec3): void; + /** + !#en + Apply an impulse to the rigid body at a point in local space. + !#zh + 在本地空间的某点上对刚体施加一个冲量。 + @param impulse impulse + @param localPoint Point of application + */ + applyLocalImpulse(impulse: Vec3, localPoint: Vec3): void; + /** + !#en + Apply a torque to the rigid body. + !#zh + 对刚体施加扭转力。 + @param torque torque + */ + applyTorque(torque: Vec3): void; + /** + !#en + Apply a local torque to the rigid body. + !#zh + 对刚体施加本地扭转力。 + @param torque torque + */ + applyLocalTorque(torque: Vec3): void; + /** + !#en + Awaken the rigid body. + !#zh + 唤醒刚体。 + */ + wakeUp(): void; + /** + !#en + Dormant rigid body. + !#zh + 休眠刚体。 + */ + sleep(): void; + /** + !#en + Get linear velocity. + !#zh + 获取线性速度。 + @param out out + */ + getLinearVelocity(out: Vec3): void; + /** + !#en + Set linear speed. + !#zh + 设置线性速度。 + @param value value + */ + setLinearVelocity(value: Vec3): void; + /** + !#en + Gets the rotation speed. + !#zh + 获取旋转速度。 + @param out out + */ + getAngularVelocity(out: Vec3): void; + /** + !#en + Set rotation speed. + !#zh + 设置旋转速度。 + @param value value + */ + setAngularVelocity(value: Vec3): void; + } + /** !#en + Physics material. + !#zh + 物理材质。 */ + export class PhysicsMaterial extends Asset { + /** !#en + Friction for this material. + !#zh + 物理材质的摩擦力。 */ + friction: number; + /** !#en + Restitution for this material. + !#zh + 物理材质的弹力。 */ + restitution: number; + } + /** !#en + Physics box collider + !#zh + 物理盒子碰撞器 */ + export class BoxCollider3D extends Collider3D { + /** !#en + Get or set the size of the box, in local space. + !#zh + 获取或设置盒的大小。 */ + size: Vec3; + boxShape: IBoxShape; + } + /** !#en + The base class of the collider. + !#zh + 碰撞器的基类。 */ + export class Collider3D extends Component implements EventTarget { + sharedMaterial: PhysicsMaterial; + /** !#en + get or set the collider is trigger, this will be always trigger if using builtin. + !#zh + 获取或设置碰撞器是否为触发器。 */ + isTrigger: boolean; + /** !#en + get or set the center of the collider, in local space. + !#zh + 获取或设置碰撞器的中心点。 */ + center: Vec3; + /** !#en + get the collider attached rigidbody, this may be null. + !#zh + 获取碰撞器所绑定的刚体组件,可能为 null。 */ + attachedRigidbody: RigidBody3D|void; + /** !#en + get collider shape. + !#zh + 获取碰撞器形状。 */ + shape: IBaseShape; + /** + !#en + Register an callback of a specific event type on the EventTarget. + This type of event should be triggered via `emit`. + !#zh + 注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。 + @param type The type of collider event can be `trigger-enter`, `trigger-stay`, `trigger-exit` or `collision-enter`, `collision-stay`, `collision-exit`. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null. + + @example + ```js + eventTarget.on('fire', function (event) { + // event is ITriggerEvent or ICollisionEvent + }, node); + ``` + */ + on(type: string, callback: T, target?: any, useCapture?: boolean): T; + /** + !#en + Removes the listeners previously registered with the same type, callback, target and or useCapture, + if only type is passed as parameter, all listeners registered with that type will be removed. + !#zh + 删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。 + @param type The type of collider event can be `trigger-enter`, `trigger-stay`, `trigger-exit` or `collision-enter`, `collision-stay`, `collision-exit`. + @param callback The callback to remove. + @param target The target (this object) to invoke the callback, if it's not given, only callback without target will be removed. + + @example + ```js + // register fire eventListener + var callback = eventTarget.on('fire', function () { + cc.log("fire in the hole"); + }, target); + // remove fire event listener + eventTarget.off('fire', callback, target); + // remove all fire event listeners + eventTarget.off('fire'); + ``` + */ + off(type: string, callback?: Function, target?: any): void; + /** + !#en + Register an callback of a specific event type on the EventTarget, + the callback will remove itself after the first time it is triggered. + !#zh + 注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。 + @param type The type of collider event can be `trigger-enter`, `trigger-stay`, `trigger-exit` or `collision-enter`, `collision-stay`, `collision-exit`. + @param callback The callback that will be invoked when the event is dispatched. + The callback is ignored if it is a duplicate (the callbacks are unique). + @param target The target (this object) to invoke the callback, can be null. + + @example + ```js + eventTarget.once('fire', function (event) { + // event is ITriggerEvent or ICollisionEvent + }, node); + ``` + */ + once(type: string, callback: (event: ITriggerEvent|ICollisionEvent) => void, target?: any): void; + /** + !#en Checks whether the EventTarget object has any callback registered for a specific type of event. + !#zh 检查事件目标对象是否有为特定类型的事件注册的回调。 + @param type The type of event. + */ + hasEventListener(type: string): boolean; + /** + !#en Removes all callbacks previously registered with the same target (passed as parameter). + This is not for removing all listeners in the current event target, + and this is not for removing all listeners the target parameter have registered. + It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter. + !#zh 在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 + 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 + 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。 + @param target The target to be searched for all related listeners + */ + targetOff(target: any): void; + /** + !#en + Send an event with the event object. + !#zh + 通过事件对象派发事件 + @param event event + */ + dispatchEvent(event: Event): void; + /** + !#en + Destroy all callbackInfos. + !#zh + 销毁记录的事件 + */ + clear(): void; + } + /** !#en + Physics sphere collider + !#zh + 物理球碰撞器 */ + export class SphereCollider3D extends Collider3D { + /** !#en + Get or set the radius of the sphere. + !#zh + 获取或设置球的半径。 */ + radius: number; + sphereShape: ISphereShape; + } + /**************************************************** + * audioEngine + *****************************************************/ + + export namespace audioEngine { + /** !#en Audio state. + !#zh 声音播放状态 */ + export enum AudioState { + ERROR = 0, + INITIALZING = 0, + PLAYING = 0, + PAUSED = 0, + STOPPED = 0, + } + } + + /**************************************************** + * debug + *****************************************************/ + + export namespace debug { + /** !#en Enum for debug modes. + !#zh 调试模式 */ + export enum DebugMode { + NONE = 0, + INFO = 0, + WARN = 0, + ERROR = 0, + INFO_FOR_WEB_PAGE = 0, + WARN_FOR_WEB_PAGE = 0, + ERROR_FOR_WEB_PAGE = 0, + } + } + + /**************************************************** + * Node + *****************************************************/ + + export namespace Node { + /** !#en Node's local dirty properties flag + !#zh Node 的本地属性 dirty 状态位 */ + export enum _LocalDirtyFlag { + POSITION = 0, + SCALE = 0, + ROTATION = 0, + SKEW = 0, + TRS = 0, + RS = 0, + TRS = 0, + PHYSICS_POSITION = 0, + PHYSICS_SCALE = 0, + PHYSICS_ROTATION = 0, + PHYSICS_TRS = 0, + PHYSICS_RS = 0, + ALL_POSITION = 0, + ALL_SCALE = 0, + ALL_ROTATION = 0, + ALL_TRS = 0, + ALL = 0, + } + } + + /**************************************************** + * Node + *****************************************************/ + + export namespace Node { + /** !#en The event type supported by Node + !#zh Node 支持的事件类型 */ + export class EventType { + /** !#en The event type for touch start event, you can use its value directly: 'touchstart' + !#zh 当手指触摸到屏幕时。 */ + static TOUCH_START: string; + /** !#en The event type for touch move event, you can use its value directly: 'touchmove' + !#zh 当手指在屏幕上移动时。 */ + static TOUCH_MOVE: string; + /** !#en The event type for touch end event, you can use its value directly: 'touchend' + !#zh 当手指在目标节点区域内离开屏幕时。 */ + static TOUCH_END: string; + /** !#en The event type for touch end event, you can use its value directly: 'touchcancel' + !#zh 当手指在目标节点区域外离开屏幕时。 */ + static TOUCH_CANCEL: string; + /** !#en The event type for mouse down events, you can use its value directly: 'mousedown' + !#zh 当鼠标按下时触发一次。 */ + static MOUSE_DOWN: string; + /** !#en The event type for mouse move events, you can use its value directly: 'mousemove' + !#zh 当鼠标在目标节点在目标节点区域中移动时,不论是否按下。 */ + static MOUSE_MOVE: string; + /** !#en The event type for mouse enter target events, you can use its value directly: 'mouseenter' + !#zh 当鼠标移入目标节点区域时,不论是否按下。 */ + static MOUSE_ENTER: string; + /** !#en The event type for mouse leave target events, you can use its value directly: 'mouseleave' + !#zh 当鼠标移出目标节点区域时,不论是否按下。 */ + static MOUSE_LEAVE: string; + /** !#en The event type for mouse up events, you can use its value directly: 'mouseup' + !#zh 当鼠标从按下状态松开时触发一次。 */ + static MOUSE_UP: string; + /** !#en The event type for mouse wheel events, you can use its value directly: 'mousewheel' + !#zh 当鼠标滚轮滚动时。 */ + static MOUSE_WHEEL: string; + /** !#en The event type for position change events. + Performance note, this event will be triggered every time corresponding properties being changed, + if the event callback have heavy logic it may have great performance impact, try to avoid such scenario. + !#zh 当节点位置改变时触发的事件。 + 性能警告:这个事件会在每次对应的属性被修改时触发,如果事件回调损耗较高,有可能对性能有很大的负面影响,请尽量避免这种情况。 */ + static POSITION_CHANGED: string; + /** !#en The event type for rotation change events. + Performance note, this event will be triggered every time corresponding properties being changed, + if the event callback have heavy logic it may have great performance impact, try to avoid such scenario. + !#zh 当节点旋转改变时触发的事件。 + 性能警告:这个事件会在每次对应的属性被修改时触发,如果事件回调损耗较高,有可能对性能有很大的负面影响,请尽量避免这种情况。 */ + static ROTATION_CHANGED: string; + /** !#en The event type for scale change events. + Performance note, this event will be triggered every time corresponding properties being changed, + if the event callback have heavy logic it may have great performance impact, try to avoid such scenario. + !#zh 当节点缩放改变时触发的事件。 + 性能警告:这个事件会在每次对应的属性被修改时触发,如果事件回调损耗较高,有可能对性能有很大的负面影响,请尽量避免这种情况。 */ + static SCALE_CHANGED: string; + /** !#en The event type for size change events. + Performance note, this event will be triggered every time corresponding properties being changed, + if the event callback have heavy logic it may have great performance impact, try to avoid such scenario. + !#zh 当节点尺寸改变时触发的事件。 + 性能警告:这个事件会在每次对应的属性被修改时触发,如果事件回调损耗较高,有可能对性能有很大的负面影响,请尽量避免这种情况。 */ + static SIZE_CHANGED: string; + /** !#en The event type for anchor point change events. + Performance note, this event will be triggered every time corresponding properties being changed, + if the event callback have heavy logic it may have great performance impact, try to avoid such scenario. + !#zh 当节点锚点改变时触发的事件。 + 性能警告:这个事件会在每次对应的属性被修改时触发,如果事件回调损耗较高,有可能对性能有很大的负面影响,请尽量避免这种情况。 */ + static ANCHOR_CHANGED: string; + /** !#en The event type for color change events. + Performance note, this event will be triggered every time corresponding properties being changed, + if the event callback have heavy logic it may have great performance impact, try to avoid such scenario. + !#zh 当节点颜色改变时触发的事件。 + 性能警告:这个事件会在每次对应的属性被修改时触发,如果事件回调损耗较高,有可能对性能有很大的负面影响,请尽量避免这种情况。 */ + static COLOR_CHANGED: string; + /** !#en The event type for new child added events. + !#zh 当新的子节点被添加时触发的事件。 */ + static CHILD_ADDED: string; + /** !#en The event type for child removed events. + !#zh 当子节点被移除时触发的事件。 */ + static CHILD_REMOVED: string; + /** !#en The event type for children reorder events. + !#zh 当子节点顺序改变时触发的事件。 */ + static CHILD_REORDER: string; + /** !#en The event type for node group changed events. + !#zh 当节点归属群组发生变化时触发的事件。 */ + static GROUP_CHANGED: string; + /** !#en The event type for node's sibling order changed. + !#zh 当节点在兄弟节点中的顺序发生变化时触发的事件。 */ + static SIBLING_ORDER_CHANGED: string; + } + } + + /**************************************************** + * ParticleSystem + *****************************************************/ + + export namespace ParticleSystem { + /** !#en Enum for emitter modes + !#zh 发射模式 */ + export enum EmitterMode { + GRAVITY = 0, + RADIUS = 0, + } + } + + /**************************************************** + * ParticleSystem + *****************************************************/ + + export namespace ParticleSystem { + /** !#en Enum for particles movement type. + !#zh 粒子位置类型 */ + export enum PositionType { + FREE = 0, + RELATIVE = 0, + GROUPED = 0, + } + } + + /**************************************************** + * WebView + *****************************************************/ + + export namespace WebView { + /** !#en WebView event type + !#zh 网页视图事件类型 */ + export enum EventType { + LOADED = 0, + LOADING = 0, + ERROR = 0, + } + } + + /**************************************************** + * TiledMap + *****************************************************/ + + export namespace TiledMap { + /** !#en The orientation of tiled map. + !#zh Tiled Map 地图方向。 */ + export enum Orientation { + ORTHO = 0, + HEX = 0, + ISO = 0, + } + } + + /**************************************************** + * TiledMap + *****************************************************/ + + export namespace TiledMap { + /** The property type of tiled map. */ + export enum Property { + NONE = 0, + MAP = 0, + LAYER = 0, + OBJECTGROUP = 0, + OBJECT = 0, + TILE = 0, + } + } + + /**************************************************** + * TiledMap + *****************************************************/ + + export namespace TiledMap { + /** The tile flags of tiled map. */ + export enum TileFlag { + HORIZONTAL = 0, + VERTICAL = 0, + DIAGONAL = 0, + FLIPPED_ALL = 0, + FLIPPED_MASK = 0, + } + } + + /**************************************************** + * TiledMap + *****************************************************/ + + export namespace TiledMap { + /** !#en The stagger axis of Hex tiled map. + !#zh 六边形地图的 stagger axis 值 */ + export enum StaggerAxis { + STAGGERAXIS_X = 0, + STAGGERAXIS_Y = 0, + } + } + + /**************************************************** + * TiledMap + *****************************************************/ + + export namespace TiledMap { + /** !#en The render order of tiled map. + !#zh 地图的渲染顺序 */ + export enum RenderOrder { + STAGGERINDEX_ODD = 0, + STAGGERINDEX_EVEN = 0, + RightDown = 0, + RightUp = 0, + LeftDown = 0, + LeftUp = 0, + } + } + + /**************************************************** + * TiledMap + *****************************************************/ + + export namespace TiledMap { + /** !#en TiledMap Object Type + !#zh 地图物体类型 */ + export enum TMXObjectType { + RECT = 0, + ELLIPSE = 0, + POLYGON = 0, + POLYLINE = 0, + IMAGE = 0, + TEXT = 0, + } + } + + /**************************************************** + * VideoPlayer + *****************************************************/ + + export namespace VideoPlayer { + /** !#en Video event type + !#zh 视频事件类型 */ + export enum EventType { + PLAYING = 0, + PAUSED = 0, + STOPPED = 0, + COMPLETED = 0, + META_LOADED = 0, + CLICKED = 0, + READY_TO_PLAY = 0, + } + } + + /**************************************************** + * VideoPlayer + *****************************************************/ + + export namespace VideoPlayer { + /** !#en Enum for video resouce type type. + !#zh 视频来源 */ + export enum ResourceType { + REMOTE = 0, + LOCAL = 0, + } + } + + /**************************************************** + * Collider + *****************************************************/ + + export namespace Collider { + /** !#en Defines a Box Collider . + !#zh 用来定义包围盒碰撞体 */ + export class Box { + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Box size + !#zh 包围盒大小 */ + size: Size; + } + } + + /**************************************************** + * Collider + *****************************************************/ + + export namespace Collider { + /** !#en Defines a Circle Collider . + !#zh 用来定义圆形碰撞体 */ + export class Circle { + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Circle radius + !#zh 圆形半径 */ + radius: number; + } + } + + /**************************************************** + * Collider + *****************************************************/ + + export namespace Collider { + /** !#en Defines a Polygon Collider . + !#zh 用来定义多边形碰撞体 */ + export class Polygon { + /** !#en Position offset + !#zh 位置偏移量 */ + offset: Vec2; + /** !#en Polygon points + !#zh 多边形顶点数组 */ + points: Vec2[]; + } + } + + /**************************************************** + * Light + *****************************************************/ + + export namespace Light { + /** !#en The light source type + + !#zh 光源类型 */ + export enum Type { + DIRECTIONAL = 0, + POINT = 0, + SPOT = 0, + AMBIENT = 0, + } + } + + /**************************************************** + * Light + *****************************************************/ + + export namespace Light { + /** !#en The shadow type + + !#zh 阴影类型 */ + export enum ShadowType { + NONE = 0, + HARD = 0, + SOFT_PCF3X3 = 0, + SOFT_PCF5X5 = 0, + } + } + + /**************************************************** + * Prefab + *****************************************************/ + + export namespace Prefab { + /** !#zh + Prefab 创建实例所用的优化策略,配合 {{#crossLink "Prefab.optimizationPolicy"}}cc.Prefab#optimizationPolicy{{/crossLink}} 使用。 + !#en + An enumeration used with the {{#crossLink "Prefab.optimizationPolicy"}}cc.Prefab#optimizationPolicy{{/crossLink}} + to specify how to optimize the instantiate operation. */ + export enum OptimizationPolicy { + AUTO = 0, + SINGLE_INSTANCE = 0, + MULTI_INSTANCE = 0, + } + } + + /**************************************************** + * RenderTexture + *****************************************************/ + + export namespace RenderTexture { + /** !#en The depth buffer and stencil buffer format for RenderTexture. + !#zh RenderTexture 的深度缓冲以及模板缓冲格式。 */ + export enum DepthStencilFormat { + RB_FMT_D24S8 = 0, + RB_FMT_S8 = 0, + RB_FMT_D16 = 0, + } + } + + /**************************************************** + * Texture2D + *****************************************************/ + + export namespace Texture2D { + /** The texture pixel format, default value is RGBA8888, + you should note that textures loaded by normal image files (png, jpg) can only support RGBA8888 format, + other formats are supported by compressed file types or raw data. */ + export enum PixelFormat { + RGB565 = 0, + RGB5A1 = 0, + RGBA4444 = 0, + RGB888 = 0, + RGBA8888 = 0, + RGBA32F = 0, + A8 = 0, + I8 = 0, + AI88 = 0, + RGB_PVRTC_2BPPV1 = 0, + RGBA_PVRTC_2BPPV1 = 0, + RGB_A_PVRTC_2BPPV1 = 0, + RGB_PVRTC_4BPPV1 = 0, + RGBA_PVRTC_4BPPV1 = 0, + RGB_A_PVRTC_4BPPV1 = 0, + RGB_ETC1 = 0, + RGBA_ETC1 = 0, + RGB_ETC2 = 0, + RGBA_ETC2 = 0, + } + } + + /**************************************************** + * Texture2D + *****************************************************/ + + export namespace Texture2D { + /** The texture wrap mode */ + export enum WrapMode { + REPEAT = 0, + CLAMP_TO_EDGE = 0, + MIRRORED_REPEAT = 0, + } + } + + /**************************************************** + * Texture2D + *****************************************************/ + + export namespace Texture2D { + /** The texture filter mode */ + export enum Filter { + LINEAR = 0, + NEAREST = 0, + } + } + + /**************************************************** + * Event + *****************************************************/ + + export namespace Event { + /** !#en The Custom event + !#zh 自定义事件 */ + export class EventCustom extends Event { + /** + + @param type The name of the event (case-sensitive), e.g. "click", "fire", or "submit" + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + constructor(type: string, bubbles: boolean); + /** !#en A reference to the detailed data of the event + !#zh 事件的详细数据 */ + detail: any; + /** + !#en Sets user data + !#zh 设置用户数据 + @param data data + */ + setUserData(data: any): void; + /** + !#en Gets user data + !#zh 获取用户数据 + */ + getUserData(): any; + /** + !#en Gets event name + !#zh 获取事件名称 + */ + getEventName(): string; + } + } + + /**************************************************** + * SystemEvent + *****************************************************/ + + export namespace SystemEvent { + /** !#en The event type supported by SystemEvent + !#zh SystemEvent 支持的事件类型 */ + export class EventType { + /** !#en The event type for press the key down event, you can use its value directly: 'keydown' + !#zh 当按下按键时触发的事件 */ + static KEY_DOWN: string; + /** !#en The event type for press the key up event, you can use its value directly: 'keyup' + !#zh 当松开按键时触发的事件 */ + static KEY_UP: string; + /** !#en The event type for press the devicemotion event, you can use its value directly: 'devicemotion' + !#zh 重力感应 */ + static DEVICEMOTION: string; + } + } + + /**************************************************** + * Animation + *****************************************************/ + + export namespace Animation { + /** !#en The event type supported by Animation + !#zh Animation 支持的事件类型 */ + export class EventType { + /** !#en Emit when begin playing animation + !#zh 开始播放时触发 */ + static PLAY: string; + /** !#en Emit when stop playing animation + !#zh 停止播放时触发 */ + static STOP: string; + /** !#en Emit when pause animation + !#zh 暂停播放时触发 */ + static PAUSE: string; + /** !#en Emit when resume animation + !#zh 恢复播放时触发 */ + static RESUME: string; + /** !#en If animation repeat count is larger than 1, emit when animation play to the last frame + !#zh 假如动画循环次数大于 1,当动画播放到最后一帧时触发 */ + static LASTFRAME: string; + /** !#en Emit when finish playing animation + !#zh 动画播放完成时触发 */ + static FINISHED: string; + } + } + + /**************************************************** + * Button + *****************************************************/ + + export namespace Button { + /** !#en Enum for transition type. + !#zh 过渡类型 */ + export enum Transition { + NONE = 0, + COLOR = 0, + SPRITE = 0, + SCALE = 0, + } + } + + /**************************************************** + * Component + *****************************************************/ + + export namespace Component { + /** !#en + Component will register a event to target component's handler. + And it will trigger the handler when a certain event occurs. + + !@zh + “EventHandler” 类用来设置场景中的事件回调, + 该类允许用户设置回调目标节点,目标组件名,组件方法名, + 并可通过 emit 方法调用目标函数。 */ + export class EventHandler { + /** !#en the node that contains target callback, such as the node example script belongs to + !#zh 事件响应函数所在节点 ,比如例子中脚本归属的节点本身 */ + target: Node; + /** !#en name of the component(script) that contains target callback, such as the name 'MainMenu' of script in example + !#zh 事件响应函数所在组件名(脚本名), 比如例子中的脚本名 'MainMenu' */ + component: string; + /** !#en Event handler, such as function's name 'onClick' in example + !#zh 响应事件函数名,比如例子中的 'onClick' */ + handler: string; + /** !#en Custom Event Data, such as 'eventType' in example + !#zh 自定义事件数据,比如例子中的 eventType */ + customEventData: string; + /** + + @param events events + @param params params + */ + static emitEvents(events: EventHandler[], ...params: any[]): void; + /** + !#en Emit event with params + !#zh 触发目标组件上的指定 handler 函数,该参数是回调函数的参数值(可不填)。 + @param params params + + @example + ```js + // Call Function + var eventHandler = new cc.Component.EventHandler(); + eventHandler.target = newTarget; + eventHandler.component = "MainMenu"; + eventHandler.handler = "OnClick" + eventHandler.emit(["param1", "param2", ....]); + ``` + */ + emit(params: any[]): void; + } + } + + /**************************************************** + * Label + *****************************************************/ + + export namespace Label { + /** !#en Enum for text alignment. + !#zh 文本横向对齐类型 */ + export enum HorizontalAlign { + LEFT = 0, + CENTER = 0, + RIGHT = 0, + } + } + + /**************************************************** + * Label + *****************************************************/ + + export namespace Label { + /** !#en Enum for vertical text alignment. + !#zh 文本垂直对齐类型 */ + export enum VerticalAlign { + TOP = 0, + CENTER = 0, + BOTTOM = 0, + } + } + + /**************************************************** + * Label + *****************************************************/ + + export namespace Label { + /** !#en Enum for Overflow. + !#zh Overflow 类型 */ + export enum Overflow { + NONE = 0, + CLAMP = 0, + SHRINK = 0, + RESIZE_HEIGHT = 0, + } + } + + /**************************************************** + * Label + *****************************************************/ + + export namespace Label { + /** !#en Enum for font type. + !#zh Type 类型 */ + export enum Type { + TTF = 0, + BMFont = 0, + SystemFont = 0, + } + } + + /**************************************************** + * Label + *****************************************************/ + + export namespace Label { + /** !#en Enum for cache mode. + !#zh CacheMode 类型 */ + export enum CacheMode { + NONE = 0, + BITMAP = 0, + CHAR = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export namespace Layout { + /** !#en Enum for Layout type + !#zh 布局类型 */ + export enum Type { + NONE = 0, + HORIZONTAL = 0, + VERTICAL = 0, + GRID = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export namespace Layout { + /** !#en Enum for Layout Resize Mode + !#zh 缩放模式 */ + export enum ResizeMode { + NONE = 0, + CONTAINER = 0, + CHILDREN = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export namespace Layout { + /** !#en Enum for Grid Layout start axis direction. + The items in grid layout will be arranged in each axis at first.; + !#zh 布局轴向,只用于 GRID 布局。 */ + export enum AxisDirection { + HORIZONTAL = 0, + VERTICAL = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export namespace Layout { + /** !#en Enum for vertical layout direction. + Used in Grid Layout together with AxisDirection is VERTICAL + !#zh 垂直方向布局方式 */ + export enum VerticalDirection { + BOTTOM_TO_TOP = 0, + TOP_TO_BOTTOM = 0, + } + } + + /**************************************************** + * Layout + *****************************************************/ + + export namespace Layout { + /** !#en Enum for horizontal layout direction. + Used in Grid Layout together with AxisDirection is HORIZONTAL + !#zh 水平方向布局方式 */ + export enum HorizontalDirection { + LEFT_TO_RIGHT = 0, + RIGHT_TO_LEFT = 0, + } + } + + /**************************************************** + * Mask + *****************************************************/ + + export namespace Mask { + /** !#en the type for mask. + !#zh 遮罩组件类型 */ + export enum Type { + RECT = 0, + ELLIPSE = 0, + IMAGE_STENCIL = 0, + } + } + + /**************************************************** + * PageView + *****************************************************/ + + export namespace PageView { + /** !#en The Page View Size Mode + !#zh 页面视图每个页面统一的大小类型 */ + export enum SizeMode { + Unified = 0, + Free = 0, + } + } + + /**************************************************** + * PageView + *****************************************************/ + + export namespace PageView { + /** !#en The Page View Direction + !#zh 页面视图滚动类型 */ + export enum Direction { + Horizontal = 0, + Vertical = 0, + } + } + + /**************************************************** + * PageView + *****************************************************/ + + export namespace PageView { + /** !#en Enum for ScrollView event type. + !#zh 滚动视图事件类型 */ + export enum EventType { + PAGE_TURNING = 0, + } + } + + /**************************************************** + * ProgressBar + *****************************************************/ + + export namespace ProgressBar { + /** !#en Enum for ProgressBar mode + !#zh 进度条模式 */ + export enum Mode { + HORIZONTAL = 0, + VERTICAL = 0, + FILLED = 0, + } + } + + /**************************************************** + * PageViewIndicator + *****************************************************/ + + export namespace PageViewIndicator { + /** !#en Enum for PageView Indicator direction + !#zh 页面视图指示器的摆放方向 */ + export enum Direction { + HORIZONTAL = 0, + VERTICAL = 0, + } + } + + /**************************************************** + * Scrollbar + *****************************************************/ + + export namespace Scrollbar { + /** Enum for Scrollbar direction */ + export enum Direction { + HORIZONTAL = 0, + VERTICAL = 0, + } + } + + /**************************************************** + * ScrollView + *****************************************************/ + + export namespace ScrollView { + /** !#en Enum for ScrollView event type. + !#zh 滚动视图事件类型 */ + export enum EventType { + SCROLL_TO_TOP = 0, + SCROLL_TO_BOTTOM = 0, + SCROLL_TO_LEFT = 0, + SCROLL_TO_RIGHT = 0, + SCROLLING = 0, + BOUNCE_TOP = 0, + BOUNCE_BOTTOM = 0, + BOUNCE_LEFT = 0, + BOUNCE_RIGHT = 0, + SCROLL_ENDED = 0, + TOUCH_UP = 0, + AUTOSCROLL_ENDED_WITH_THRESHOLD = 0, + SCROLL_BEGAN = 0, + } + } + + /**************************************************** + * Slider + *****************************************************/ + + export namespace Slider { + /** !#en The Slider Direction + !#zh 滑动器方向 */ + export enum Direction { + Horizontal = 0, + Vertical = 0, + } + } + + /**************************************************** + * Sprite + *****************************************************/ + + export namespace Sprite { + /** !#en Enum for sprite type. + !#zh Sprite 类型 */ + export enum Type { + SIMPLE = 0, + SLICED = 0, + TILED = 0, + FILLED = 0, + MESH = 0, + } + } + + /**************************************************** + * Sprite + *****************************************************/ + + export namespace Sprite { + /** !#en Enum for fill type. + !#zh 填充类型 */ + export enum FillType { + HORIZONTAL = 0, + VERTICAL = 0, + RADIAL = 0, + } + } + + /**************************************************** + * Sprite + *****************************************************/ + + export namespace Sprite { + /** !#en Sprite Size can track trimmed size, raw size or none. + !#zh 精灵尺寸调整模式 */ + export enum SizeMode { + CUSTOM = 0, + TRIMMED = 0, + RAW = 0, + } + } + + /**************************************************** + * Sprite + *****************************************************/ + + export namespace Sprite { + /** !#en Sprite state can choice the normal or grayscale. + !#zh 精灵颜色通道模式。 */ + export enum State { + NORMAL = 0, + GRAY = 0, + } + } + + /**************************************************** + * Widget + *****************************************************/ + + export namespace Widget { + /** !#en Enum for Widget's alignment mode, indicating when the widget should refresh. + !#zh Widget 的对齐模式,表示 Widget 应该何时刷新。 */ + export enum AlignMode { + ONCE = 0, + ON_WINDOW_RESIZE = 0, + ALWAYS = 0, + } + } + + /**************************************************** + * Event + *****************************************************/ + + export namespace Event { + /** !#en The mouse event + !#zh 鼠标事件类型 */ + export class EventMouse extends Event { + /** + !#en Sets scroll data. + !#zh 设置鼠标的滚动数据。 + @param scrollX scrollX + @param scrollY scrollY + */ + setScrollData(scrollX: number, scrollY: number): void; + /** + !#en Returns the x axis scroll value. + !#zh 获取鼠标滚动的X轴距离,只有滚动时才有效。 + */ + getScrollX(): number; + /** + !#en Returns the y axis scroll value. + !#zh 获取滚轮滚动的 Y 轴距离,只有滚动时才有效。 + */ + getScrollY(): number; + /** + !#en Sets cursor location. + !#zh 设置当前鼠标位置。 + @param x x + @param y y + */ + setLocation(x: number, y: number): void; + /** + !#en Returns cursor location. + !#zh 获取鼠标位置对象,对象包含 x 和 y 属性。 + */ + getLocation(): Vec2; + /** + !#en Returns the current cursor location in screen coordinates. + !#zh 获取当前事件在游戏窗口内的坐标位置对象,对象包含 x 和 y 属性。 + */ + getLocationInView(): Vec2; + /** + !#en Returns the previous touch location. + !#zh 获取鼠标点击在上一次事件时的位置对象,对象包含 x 和 y 属性。 + */ + getPreviousLocation(): Vec2; + /** + !#en Returns the delta distance from the previous location to current location. + !#zh 获取鼠标距离上一次事件移动的距离对象,对象包含 x 和 y 属性。 + */ + getDelta(): Vec2; + /** + !#en Returns the X axis delta distance from the previous location to current location. + !#zh 获取鼠标距离上一次事件移动的 X 轴距离。 + */ + getDeltaX(): number; + /** + !#en Returns the Y axis delta distance from the previous location to current location. + !#zh 获取鼠标距离上一次事件移动的 Y 轴距离。 + */ + getDeltaY(): number; + /** + !#en Sets mouse button. + !#zh 设置鼠标按键。 + @param button button + */ + setButton(button: number): void; + /** + !#en Returns mouse button. + !#zh 获取鼠标按键。 + */ + getButton(): number; + /** + !#en Returns location X axis data. + !#zh 获取鼠标当前位置 X 轴。 + */ + getLocationX(): number; + /** + !#en Returns location Y axis data. + !#zh 获取鼠标当前位置 Y 轴。 + */ + getLocationY(): number; + /** !#en The none event code of mouse event. + !#zh 无。 */ + static NONE: number; + /** !#en The event type code of mouse down event. + !#zh 鼠标按下事件。 */ + static DOWN: number; + /** !#en The event type code of mouse up event. + !#zh 鼠标按下后释放事件。 */ + static UP: number; + /** !#en The event type code of mouse move event. + !#zh 鼠标移动事件。 */ + static MOVE: number; + /** !#en The event type code of mouse scroll event. + !#zh 鼠标滚轮事件。 */ + static SCROLL: number; + /** !#en The tag of Mouse left button. + !#zh 鼠标左键的标签。 */ + static BUTTON_LEFT: number; + /** !#en The tag of Mouse right button (The right button number is 2 on browser). + !#zh 鼠标右键的标签。 */ + static BUTTON_RIGHT: number; + /** !#en The tag of Mouse middle button (The right button number is 1 on browser). + !#zh 鼠标中键的标签。 */ + static BUTTON_MIDDLE: number; + /** !#en The tag of Mouse button 4. + !#zh 鼠标按键 4 的标签。 */ + static BUTTON_4: number; + /** !#en The tag of Mouse button 5. + !#zh 鼠标按键 5 的标签。 */ + static BUTTON_5: number; + /** !#en The tag of Mouse button 6. + !#zh 鼠标按键 6 的标签。 */ + static BUTTON_6: number; + /** !#en The tag of Mouse button 7. + !#zh 鼠标按键 7 的标签。 */ + static BUTTON_7: number; + /** !#en The tag of Mouse button 8. + !#zh 鼠标按键 8 的标签。 */ + static BUTTON_8: number; + } + } + + /**************************************************** + * Event + *****************************************************/ + + export namespace Event { + /** !#en The touch event + !#zh 触摸事件 */ + export class EventTouch extends Event { + /** + + @param touchArr The array of the touches + @param bubbles A boolean indicating whether the event bubbles up through the tree or not + */ + constructor(touchArr: any[], bubbles: boolean); + /** !#en The current touch object + !#zh 当前触点对象 */ + touch: Touch; + /** + !#en Returns event code. + !#zh 获取事件类型。 + */ + getEventCode(): number; + /** + !#en Returns touches of event. + !#zh 获取触摸点的列表。 + */ + getTouches(): any[]; + /** + !#en Sets touch location. + !#zh 设置当前触点位置 + @param x x + @param y y + */ + setLocation(x: number, y: number): void; + /** + !#en Returns touch location. + !#zh 获取触点位置。 + */ + getLocation(): Vec2; + /** + !#en Returns the current touch location in screen coordinates. + !#zh 获取当前触点在游戏窗口中的位置。 + */ + getLocationInView(): Vec2; + /** + !#en Returns the previous touch location. + !#zh 获取触点在上一次事件时的位置对象,对象包含 x 和 y 属性。 + */ + getPreviousLocation(): Vec2; + /** + !#en Returns the start touch location. + !#zh 获取触点落下时的位置对象,对象包含 x 和 y 属性。 + */ + getStartLocation(): Vec2; + /** + !#en Returns the id of cc.Touch. + !#zh 触点的标识 ID,可以用来在多点触摸中跟踪触点。 + */ + getID(): number; + /** + !#en Returns the delta distance from the previous location to current location. + !#zh 获取触点距离上一次事件移动的距离对象,对象包含 x 和 y 属性。 + */ + getDelta(): Vec2; + /** + !#en Returns the X axis delta distance from the previous location to current location. + !#zh 获取触点距离上一次事件移动的 x 轴距离。 + */ + getDeltaX(): number; + /** + !#en Returns the Y axis delta distance from the previous location to current location. + !#zh 获取触点距离上一次事件移动的 y 轴距离。 + */ + getDeltaY(): number; + /** + !#en Returns location X axis data. + !#zh 获取当前触点 X 轴位置。 + */ + getLocationX(): number; + /** + !#en Returns location Y axis data. + !#zh 获取当前触点 Y 轴位置。 + */ + getLocationY(): number; + } + } + + /**************************************************** + * Event + *****************************************************/ + + export namespace Event { + /** !#en The acceleration event + !#zh 加速度事件 */ + export class EventAcceleration extends Event { + } + } + + /**************************************************** + * Event + *****************************************************/ + + export namespace Event { + /** !#en The keyboard event + !#zh 键盘事件 */ + export class EventKeyboard extends Event { + /** !#en + The keyCode read-only property represents a system and implementation dependent numerical code identifying the unmodified value of the pressed key. + This is usually the decimal ASCII (RFC 20) or Windows 1252 code corresponding to the key. + If the key can't be identified, this value is 0. + + !#zh + keyCode 是只读属性它表示一个系统和依赖于实现的数字代码,可以识别按键的未修改值。 + 这通常是十进制 ASCII (RFC20) 或者 Windows 1252 代码,所对应的密钥。 + 如果无法识别该键,则该值为 0。 */ + keyCode: number; + } + } + + /**************************************************** + * Graphics + *****************************************************/ + + export namespace Graphics { + /** !#en Enum for LineCap. + !#zh 线段末端属性 */ + export enum LineCap { + BUTT = 0, + ROUND = 0, + SQUARE = 0, + } + } + + /**************************************************** + * Graphics + *****************************************************/ + + export namespace Graphics { + /** !#en Enum for LineJoin. + !#zh 线段拐角属性 */ + export enum LineJoin { + BEVEL = 0, + ROUND = 0, + MITER = 0, + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** Aabb */ + export class Aabb { + /** + create a new aabb + @param px X coordinates for aabb's original point + @param py Y coordinates for aabb's original point + @param pz Z coordinates for aabb's original point + @param w the half of aabb width + @param h the half of aabb height + @param l the half of aabb length + */ + create(px: number, py: number, pz: number, w: number, h: number, l: number): Aabb; + /** + clone a new aabb + @param a the source aabb + */ + clone(a: Aabb): Aabb; + /** + copy the values from one aabb to another + @param out the receiving aabb + @param a the source aabb + */ + copy(out: Aabb, a: Aabb): Aabb; + /** + create a new aabb from two corner points + @param out the receiving aabb + @param minPos lower corner position of the aabb + @param maxPos upper corner position of the aabb + */ + fromPoints(out: Aabb, minPos: Vec3, maxPos: Vec3): Aabb; + /** + Set the components of a aabb to the given values + @param out the receiving aabb + @param px X coordinates for aabb's original point + @param py Y coordinates for aabb's original point + @param pz Z coordinates for aabb's original point + @param w the half of aabb width + @param h the half of aabb height + @param l the half of aabb length + */ + set(out: Aabb, px: number, py: number, pz: number, w: number, h: number, l: number): Aabb; + center: Vec3; + halfExtents: Vec3; + _type: number; + /** + Get the bounding points of this shape + @param minPos minPos + @param maxPos maxPos + */ + getBoundary(minPos: Vec3, maxPos: Vec3): void; + /** + Transform this shape + @param m the transform matrix + @param pos the position part of the transform + @param rot the rotation part of the transform + @param scale the scale part of the transform + @param out the target shape + */ + transform(m: Mat4, pos: Vec3, rot: Quat, scale: Vec3, out?: Aabb): void; + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** !#en Shape type. */ + export enum enums { + SHAPE_RAY = 0, + SHAPE_LINE = 0, + SHAPE_SPHERE = 0, + SHAPE_AABB = 0, + SHAPE_OBB = 0, + SHAPE_PLANE = 0, + SHAPE_TRIANGLE = 0, + SHAPE_FRUSTUM = 0, + SHAPE_FRUSTUM_ACCURATE = 0, + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** !#en frustum + !#zh 平截头体 */ + export class Frustum { + /** Set whether to use accurate intersection testing function on this frustum */ + accurate: boolean; + /** + create a new frustum + */ + static create(): Frustum; + /** + Clone a frustum + @param f f + */ + static clone(f: Frustum): Frustum; + /** + Copy the values from one frustum to another + @param out out + @param f f + */ + copy(out: Frustum, f: Frustum): Frustum; + planes: geomUtils.Plane[]; + planes: Vec3[]; + /** + !#en Update the frustum information according to the given transform matrix. + Note that the resulting planes are not normalized under normal mode. + @param m the view-projection matrix + @param inv the inverse view-projection matrix + */ + update(m: Mat4, inv: Mat4): void; + /** + !#en transform by matrix + @param mat mat + */ + transform(mat: Mat4): void; + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** undefined */ + export class intersect { + /** + !#en + Check whether ray intersect with nodes + !#zh + 检测射线是否与物体有交集 + @param root If root is null, then traversal nodes from scene node + @param worldRay worldRay + @param handler handler + @param filter filter + */ + static ray_cast(root: Node, worldRay: geomUtils.Ray, handler: Function, filter: Function): any[]; + /** + !#en ray-plane intersect
+ !#zh 射线与平面的相交性检测。 + @param ray ray + @param plane plane + */ + static ray_plane(ray: geomUtils.Ray, plane: geomUtils.Plane): number; + /** + !#en line-plane intersect
+ !#zh 线段与平面的相交性检测。 + @param line line + @param plane plane + */ + static line_plane(line: geomUtils.Line, plane: geomUtils.Plane): number; + /** + !#en ray-triangle intersect
+ !#zh 射线与三角形的相交性检测。 + @param ray ray + @param triangle triangle + @param doubleSided doubleSided + */ + static ray_triangle(ray: geomUtils.Ray, triangle: geomUtils.Triangle, doubleSided: boolean): number; + /** + !#en line-triangle intersect
+ !#zh 线段与三角形的相交性检测。 + @param line line + @param triangle triangle + @param outPt optional, The intersection point + */ + static line_triangle(line: geomUtils.Line, triangle: geomUtils.Triangle, outPt: Vec3): number; + /** + !#en line-quad intersect
+ !#zh 线段与四边形的相交性检测。 + @param p A point on a line segment + @param q Another point on the line segment + @param a Quadrilateral point a + @param b Quadrilateral point b + @param c Quadrilateral point c + @param d Quadrilateral point d + @param outPt optional, The intersection point + */ + static line_quad(p: Vec3, q: Vec3, a: Vec3, b: Vec3, c: Vec3, d: Vec3, outPt: Vec3): number; + /** + !#en ray-sphere intersect
+ !#zh 射线和球的相交性检测。 + @param ray ray + @param sphere sphere + */ + static ray_sphere(ray: geomUtils.Ray, sphere: geomUtils.Sphere): number; + /** + !#en ray-aabb intersect
+ !#zh 射线和轴对齐包围盒的相交性检测。 + @param ray ray + @param aabb Align the axis around the box + */ + static ray_aabb(ray: geomUtils.Ray, aabb: Aabb): number; + /** + !#en ray-obb intersect
+ !#zh 射线和方向包围盒的相交性检测。 + @param ray ray + @param obb Direction box + */ + static ray_obb(ray: geomUtils.Ray, obb: geomUtils.Obb): number; + /** + !#en aabb-aabb intersect
+ !#zh 轴对齐包围盒和轴对齐包围盒的相交性检测。 + @param aabb1 Axis alignment surrounds box 1 + @param aabb2 Axis alignment surrounds box 2 + */ + static aabb_aabb(aabb1: Aabb, aabb2: Aabb): number; + /** + !#en aabb-obb intersect
+ !#zh 轴对齐包围盒和方向包围盒的相交性检测。 + @param aabb Align the axis around the box + @param obb Direction box + */ + static aabb_obb(aabb: Aabb, obb: geomUtils.Obb): number; + /** + !#en aabb-plane intersect
+ !#zh 轴对齐包围盒和平面的相交性检测。 + @param aabb Align the axis around the box + @param plane plane + */ + static aabb_plane(aabb: Aabb, plane: geomUtils.Plane): number; + /** + !#en aabb-frustum intersect, faster but has false positive corner cases
+ !#zh 轴对齐包围盒和锥台相交性检测,速度快,但有错误情况。 + @param aabb Align the axis around the box + @param frustum frustum + */ + static aabb_frustum(aabb: Aabb, frustum: Frustum): number; + /** + !#en aabb-frustum intersect, handles most of the false positives correctly
+ !#zh 轴对齐包围盒和锥台相交性检测,正确处理大多数错误情况。 + @param aabb Align the axis around the box + @param frustum frustum + */ + static aabb_frustum_accurate(aabb: Aabb, frustum: Frustum): number; + /** + !#en obb-point intersect
+ !#zh 方向包围盒和点的相交性检测。 + @param obb Direction box + @param point point + */ + static obb_point(obb: geomUtils.Obb, point: geomUtils.Vec3): boolean; + /** + !#en obb-plane intersect
+ !#zh 方向包围盒和平面的相交性检测。 + @param obb Direction box + @param plane plane + */ + static obb_plane(obb: geomUtils.Obb, plane: geomUtils.Plane): number; + /** + !#en obb-frustum intersect, faster but has false positive corner cases
+ !#zh 方向包围盒和锥台相交性检测,速度快,但有错误情况。 + @param obb Direction box + @param frustum frustum + */ + static obb_frustum(obb: geomUtils.Obb, frustum: Frustum): number; + /** + !#en obb-frustum intersect, handles most of the false positives correctly
+ !#zh 方向包围盒和锥台相交性检测,正确处理大多数错误情况。 + @param obb Direction box + @param frustum frustum + */ + static obb_frustum_accurate(obb: geomUtils.Obb, frustum: Frustum): number; + /** + !#en obb-obb intersect
+ !#zh 方向包围盒和方向包围盒的相交性检测。 + @param obb1 Direction box1 + @param obb2 Direction box2 + */ + static obb_obb(obb1: geomUtils.Obb, obb2: geomUtils.Obb): number; + /** + !#en phere-plane intersect, not necessarily faster than obb-plane
+ due to the length calculation of the plane normal to factor out
+ the unnomalized plane distance
+ !#zh 球与平面的相交性检测。 + @param sphere sphere + @param plane plane + */ + static sphere_plane(sphere: geomUtils.Sphere, plane: geomUtils.Plane): number; + /** + !#en sphere-frustum intersect, faster but has false positive corner cases
+ !#zh 球和锥台的相交性检测,速度快,但有错误情况。 + @param sphere sphere + @param frustum frustum + */ + static sphere_frustum(sphere: geomUtils.Sphere, frustum: Frustum): number; + /** + !#en sphere-frustum intersect, handles the false positives correctly
+ !#zh 球和锥台的相交性检测,正确处理大多数错误情况。 + @param sphere sphere + @param frustum frustum + */ + static sphere_frustum_accurate(sphere: geomUtils.Sphere, frustum: Frustum): number; + /** + !#en sphere-sphere intersect
+ !#zh 球和球的相交性检测。 + @param sphere0 sphere0 + @param sphere1 sphere1 + */ + static sphere_sphere(sphere0: geomUtils.Sphere, sphere1: geomUtils.Sphere): boolean; + /** + !#en sphere-aabb intersect
+ !#zh 球和轴对齐包围盒的相交性检测。 + @param sphere sphere + @param aabb aabb + */ + static sphere_aabb(sphere: geomUtils.Sphere, aabb: Aabb): boolean; + /** + !#en sphere-obb intersect
+ !#zh 球和方向包围盒的相交性检测。 + @param sphere sphere + @param obb obb + */ + static sphere_obb(sphere: geomUtils.Sphere, obb: geomUtils.Obb): boolean; + /** + !#en + The intersection detection of g1 and g2 can fill in the shape in the basic geometry. + !#zh + g1 和 g2 的相交性检测,可填入基础几何中的形状。 + @param g1 Geometry 1 + @param g2 Geometry 2 + @param outPt optional, Intersection point. (note: only partial shape detection with this return value) + */ + static resolve(g1: any, g2: any, outPt: any): void; + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** !#en + line + !#zh + 直线 */ + export class Line { + /** + !#en + create a new line + !#zh + 创建一个新的 line。 + @param sx The x part of the starting point. + @param sy The y part of the starting point. + @param sz The z part of the starting point. + @param ex The x part of the end point. + @param ey The y part of the end point. + @param ez The z part of the end point. + */ + create(sx: number, sy: number, sz: number, ex: number, ey: number, ez: number): Line; + /** + !#en + Creates a new line initialized with values from an existing line + !#zh + 克隆一个新的 line。 + @param a The source of cloning. + */ + clone(a: Line): Line; + /** + !#en + Copy the values from one line to another + !#zh + 复制一个线的值到另一个。 + @param out The object that accepts the action. + @param a The source of the copy. + */ + copy(out: Line, a: Line): Line; + /** + !#en + create a line from two points + !#zh + 用两个点创建一个线。 + @param out The object that accepts the action. + @param start The starting point. + @param end At the end. + */ + fromPoints(out: Line, start: Vec3, end: Vec3): Line; + /** + !#en + Set the components of a Vec3 to the given values + !#zh + 将给定线的属性设置为给定值。 + @param out The object that accepts the action. + @param sx The x part of the starting point. + @param sy The y part of the starting point. + @param sz The z part of the starting point. + @param ex The x part of the end point. + @param ey The y part of the end point. + @param ez The z part of the end point. + */ + set(out: Line, sx: number, sy: number, sz: number, ex: number, ey: number, ez: number): Line; + /** + !#en + Calculate the length of the line. + !#zh + 计算线的长度。 + @param a The line to calculate. + */ + len(a: Line): number; + /** !#en + Start points. + !#zh + 起点。 */ + s: Vec3; + /** !#en + End points. + !#zh + 终点。 */ + e: Vec3; + /** + !#en + Calculate the length of the line. + !#zh + 计算线的长度。 + */ + length(): number; + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** !#en obb + !#zh + 基础几何 方向包围盒。 */ + export class Obb { + /** !#zh + 获取形状的类型。 */ + type: number; + /** + !#en + create a new obb + !#zh + 创建一个新的 obb 实例。 + @param cx X coordinates of the shape relative to the origin. + @param cy Y coordinates of the shape relative to the origin. + @param cz Z coordinates of the shape relative to the origin. + @param hw Obb is half the width. + @param hh Obb is half the height. + @param hl Obb is half the Length. + @param ox_1 Direction matrix parameter. + @param ox_2 Direction matrix parameter. + @param ox_3 Direction matrix parameter. + @param oy_1 Direction matrix parameter. + @param oy_2 Direction matrix parameter. + @param oy_3 Direction matrix parameter. + @param oz_1 Direction matrix parameter. + @param oz_2 Direction matrix parameter. + @param oz_3 Direction matrix parameter. + */ + create(cx: number, cy: number, cz: number, hw: number, hh: number, hl: number, ox_1: number, ox_2: number, ox_3: number, oy_1: number, oy_2: number, oy_3: number, oz_1: number, oz_2: number, oz_3: number): Obb; + /** + !#en + clone a new obb + !#zh + 克隆一个 obb。 + @param a The target of cloning. + */ + clone(a: Obb): Obb; + /** + !#en + copy the values from one obb to another + !#zh + 将从一个 obb 的值复制到另一个 obb。 + @param out Obb that accepts the operation. + @param a Obb being copied. + */ + copy(out: Obb, a: Obb): Obb; + /** + !#en + create a new obb from two corner points + !#zh + 用两个点创建一个新的 obb。 + @param out Obb that accepts the operation. + @param minPos The smallest point of obb. + @param maxPos Obb's maximum point. + */ + fromPoints(out: Obb, minPos: Vec3, maxPos: Vec3): Obb; + /** + !#en + Set the components of a obb to the given values + !#zh + 将给定 obb 的属性设置为给定的值。 + @param cx X coordinates of the shape relative to the origin. + @param cy Y coordinates of the shape relative to the origin. + @param cz Z coordinates of the shape relative to the origin. + @param hw Obb is half the width. + @param hh Obb is half the height. + @param hl Obb is half the Length. + @param ox_1 Direction matrix parameter. + @param ox_2 Direction matrix parameter. + @param ox_3 Direction matrix parameter. + @param oy_1 Direction matrix parameter. + @param oy_2 Direction matrix parameter. + @param oy_3 Direction matrix parameter. + @param oz_1 Direction matrix parameter. + @param oz_2 Direction matrix parameter. + @param oz_3 Direction matrix parameter. + */ + set(cx: number, cy: number, cz: number, hw: number, hh: number, hl: number, ox_1: number, ox_2: number, ox_3: number, oy_1: number, oy_2: number, oy_3: number, oz_1: number, oz_2: number, oz_3: number): Obb; + /** !#en + The center of the local coordinate. + !#zh + 本地坐标的中心点。 */ + center: Vec3; + /** !#en + Half the length, width, and height. + !#zh + 长宽高的一半。 */ + halfExtents: Vec3; + /** !#en + Direction matrix. + !#zh + 方向矩阵。 */ + orientation: Mat3; + /** + !#en + Get the bounding points of this shape + !#zh + 获取 obb 的最小点和最大点。 + @param minPos minPos + @param maxPos maxPos + */ + getBoundary(minPos: Vec3, maxPos: Vec3): void; + /** + !#en Transform this shape + !#zh + 将 out 根据这个 obb 的数据进行变换。 + @param m The transformation matrix. + @param pos The position part of the transformation. + @param rot The rotating part of the transformation. + @param scale The scaling part of the transformation. + @param out Target of transformation. + */ + transform(m: Mat4, pos: Vec3, rot: Quat, scale: Vec3, out: Obb): void; + /** + !#en + Transform out based on this obb data. + !#zh + 将 out 根据这个 obb 的数据进行变换。 + @param m The transformation matrix. + @param rot The rotating part of the transformation. + @param out Target of transformation. + */ + translateAndRotate(m: Mat4, rot: Quat, out: Obb): void; + /** + !#en + Scale out based on this obb data. + !#zh + 将 out 根据这个 obb 的数据进行缩放。 + @param scale Scale value. + @param out Scaled target. + */ + setScale(scale: Vec3, out: Obb): void; + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** !#en + plane。 + !#zh + 平面。 */ + export class Plane { + /** + !#en + create a new plane + !#zh + 创建一个新的 plane。 + @param nx The x part of the normal component. + @param ny The y part of the normal component. + @param nz The z part of the normal component. + @param d Distance from the origin. + */ + create(nx: number, ny: number, nz: number, d: number): Plane; + /** + !#en + clone a new plane + !#zh + 克隆一个新的 plane。 + @param p The source of cloning. + */ + clone(p: Plane): Plane; + /** + !#en + copy the values from one plane to another + !#zh + 复制一个平面的值到另一个。 + @param out The object that accepts the action. + @param p The source of the copy. + */ + copy(out: Plane, p: Plane): Plane; + /** + !#en + create a plane from three points + !#zh + 用三个点创建一个平面。 + @param out The object that accepts the action. + @param a Point a。 + @param b Point b。 + @param c Point c。 + */ + fromPoints(out: Plane, a: Vec3, b: Vec3, c: Vec3): Plane; + /** + !#en + Set the components of a plane to the given values + !#zh + 将给定平面的属性设置为给定值。 + @param out The object that accepts the action. + @param nx The x part of the normal component. + @param ny The y part of the normal component. + @param nz The z part of the normal component. + @param d Distance from the origin. + */ + set(out: Plane, nx: number, ny: number, nz: number, d: number): Plane; + /** + !#en + create plane from normal and point + !#zh + 用一条法线和一个点创建平面。 + @param out The object that accepts the action. + @param normal The normal of a plane. + @param point A point on the plane. + */ + fromNormalAndPoint(out: Plane, normal: Vec3, point: Vec3): Plane; + /** + !#en + normalize a plane + !#zh + 归一化一个平面。 + @param out The object that accepts the action. + @param a Source data for operations. + */ + normalize(out: Plane, a: Plane): Plane; + /** !#en + A normal vector. + !#zh + 法线向量。 */ + n: Vec3; + /** !#en + The distance from the origin to the plane. + !#zh + 原点到平面的距离。 */ + d: number; + /** + !#en + Transform a plane. + !#zh + 变换一个平面。 + @param mat mat + */ + transform(mat: Mat4): void; + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** !#en + ray + !#zh + 射线。 */ + export class Ray { + /** + !#en + create a new ray + !#zh + 创建一条射线。 + @param ox The x part of the starting point. + @param oy The y part of the starting point. + @param oz The z part of the starting point. + @param dx X in the direction. + @param dy Y in the direction. + @param dz Z in the direction. + */ + create(ox: number, oy: number, oz: number, dx: number, dy: number, dz: number): Ray; + /** + !#en + Creates a new ray initialized with values from an existing ray + !#zh + 从一条射线克隆出一条新的射线。 + @param a Clone target + */ + clone(a: Ray): Ray; + /** + !#en + Copy the values from one ray to another + !#zh + 将从一个 ray 的值复制到另一个 ray。 + @param out Accept the ray of the operation. + @param a Copied ray. + */ + copy(out: Ray, a: Ray): Ray; + /** + !#en + create a ray from two points + !#zh + 用两个点创建一条射线。 + @param out Receive the operating ray. + @param origin Origin of ray + @param target A point on a ray. + */ + fromPoints(out: Ray, origin: Vec3, target: Vec3): Ray; + /** + !#en + Set the components of a ray to the given values + !#zh + 将给定射线的属性设置为给定的值。 + @param out Receive the operating ray. + @param ox The x part of the starting point. + @param oy The y part of the starting point. + @param oz The z part of the starting point. + @param dx X in the direction. + @param dy Y in the direction. + @param dz Z in the direction. + */ + set(out: Ray, ox: number, oy: number, oz: number, dx: number, dy: number, dz: number): Ray; + /** !#en + Start point. + !#zh + 起点。 */ + o: Vec3; + /** !#e + Direction + !#zh + 方向。 */ + d: Vec3; + /** + !#en Compute hit. + @param out out + @param distance distance + */ + computeHit(out: IVec3Like, distance: number): void; + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** !#en + Sphere. + !#zh + 轴对齐球。 */ + export class Sphere { + /** + !#en + create a new sphere + !#zh + 创建一个新的 sphere 实例。 + @param cx X coordinates of the shape relative to the origin. + @param cy Y coordinates of the shape relative to the origin. + @param cz Z coordinates of the shape relative to the origin. + @param r Radius of sphere + */ + create(cx: any, cy: any, cz: any, r: any): Sphere; + /** + !#en + clone a new sphere + !#zh + 克隆一个新的 sphere 实例。 + @param p The target of cloning. + */ + clone(p: Sphere): Sphere; + /** + !#en + copy the values from one sphere to another + !#zh + 将从一个 sphere 的值复制到另一个 sphere。 + @param out Accept the sphere of operations. + @param a Sphere being copied. + */ + copy(out: Sphere, a: Sphere): Sphere; + /** + !#en + create a new bounding sphere from two corner points + !#zh + 从两个点创建一个新的 sphere。 + @param out Accept the sphere of operations. + @param minPos The smallest point of sphere. + @param maxPos The maximum point of sphere. + */ + fromPoints(out: any, minPos: any, maxPos: any): Sphere; + /** + !#en Set the components of a sphere to the given values + !#zh 将球体的属性设置为给定的值。 + @param out Accept the sphere of operations. + @param cx X coordinates of the shape relative to the origin. + @param cy Y coordinates of the shape relative to the origin. + @param cz Z coordinates of the shape relative to the origin. + @param r Radius. + */ + set(out: Sphere, cx: any, cy: any, cz: any, r: number): Sphere; + /** !#en + The center of the local coordinate. + !#zh + 本地坐标的中心点。 */ + center: Vec3; + /** !#zh + 半径。 */ + radius: number; + /** + !#en + Clone. + !#zh + 获得克隆。 + */ + clone(): void; + /** + !#en + Copy sphere + !#zh + 拷贝对象。 + @param a Copy target. + */ + copy(a: any): void; + /** + !#en + Get the bounding points of this shape + !#zh + 获取此形状的边界点。 + @param minPos minPos + @param maxPos maxPos + */ + getBoundary(minPos: Vec3, maxPos: Vec3): void; + /** + !#en + Transform this shape + !#zh + 将 out 根据这个 sphere 的数据进行变换。 + @param m The transformation matrix. + @param pos The position part of the transformation. + @param rot The rotating part of the transformation. + @param scale The scaling part of the transformation. + @param out The target of the transformation. + */ + transform(m: any, pos: any, rot: any, scale: any, out: any): void; + /** + !#en + Scale out based on the sphere data. + !#zh + 将 out 根据这个 sphere 的数据进行缩放。 + @param scale Scale value + @param out Scale target + */ + setScale(scale: any, out: any): void; + } + } + + /**************************************************** + * geomUtils + *****************************************************/ + + export namespace geomUtils { + /** Triangle */ + export class Triangle { + /** + create a new triangle + @param ax ax + @param ay ay + @param az az + @param bx bx + @param by by + @param bz bz + @param cx cx + @param cy cy + @param cz cz + */ + create(ax: number, ay: number, az: number, bx: number, by: number, bz: number, cx: number, cy: number, cz: number): Triangle; + /** + clone a new triangle + @param t the source plane + */ + clone(t: Triangle): Triangle; + /** + copy the values from one triangle to another + @param out the receiving triangle + @param t the source triangle + */ + copy(out: Triangle, t: Triangle): Triangle; + /** + Create a triangle from three points + @param out the receiving triangle + @param a a + @param b b + @param c c + */ + fromPoints(out: Triangle, a: Vec3, b: Vec3, c: Vec3): Triangle; + /** + Set the components of a triangle to the given values + @param out the receiving plane + @param ax X component of a + @param ay Y component of a + @param az Z component of a + @param bx X component of b + @param by Y component of b + @param bz Z component of b + @param cx X component of c + @param cy Y component of c + @param cz Z component of c + */ + set(out: Triangle, ax: number, ay: number, az: number, bx: number, by: number, bz: number, cx: number, cy: number, cz: number): Plane; + a: Vec3; + b: Vec3; + c: Vec3; + } + } + + /**************************************************** + * Camera + *****************************************************/ + + export namespace Camera { + /** !#en Values for Camera.clearFlags, determining what to clear when rendering a Camera. + !#zh 摄像机清除标记位,决定摄像机渲染时会清除哪些状态 */ + export enum ClearFlags { + COLOR = 0, + DEPTH = 0, + STENCIL = 0, + } + } + + /**************************************************** + * MeshRenderer + *****************************************************/ + + export namespace MeshRenderer { + /** !#en Shadow projection mode + + !#ch 阴影投射方式 */ + export enum ShadowCastingMode { + OFF = 0, + ON = 0, + } + } + + /**************************************************** + * PhysicsManager + *****************************************************/ + + export namespace PhysicsManager { + /** !#en + The draw bits for drawing physics debug information.
+ example:
+ ```js + cc.director.getPhysicsManager().debugDrawFlags = + // cc.PhysicsManager.DrawBits.e_aabbBit | + // cc.PhysicsManager.DrawBits.e_pairBit | + // cc.PhysicsManager.DrawBits.e_centerOfMassBit | + cc.PhysicsManager.DrawBits.e_jointBit | + cc.PhysicsManager.DrawBits.e_shapeBit; + ``` + !#zh + 指定物理系统需要绘制哪些调试信息。
+ example:
+ ```js + cc.director.getPhysicsManager().debugDrawFlags = + // cc.PhysicsManager.DrawBits.e_aabbBit | + // cc.PhysicsManager.DrawBits.e_pairBit | + // cc.PhysicsManager.DrawBits.e_centerOfMassBit | + cc.PhysicsManager.DrawBits.e_jointBit | + cc.PhysicsManager.DrawBits.e_shapeBit; + ``` */ + export enum DrawBits { + e_aabbBit = 0, + e_jointBit = 0, + e_shapeBit = 0, + } + } + + /**************************************************** + * macro + *****************************************************/ + + export namespace macro { + /** !#en Key map for keyboard event + !#zh 键盘事件的按键值 */ + export enum KEY { + none = 0, + back = 0, + menu = 0, + backspace = 0, + tab = 0, + enter = 0, + shift = 0, + ctrl = 0, + alt = 0, + pause = 0, + capslock = 0, + escape = 0, + space = 0, + pageup = 0, + pagedown = 0, + end = 0, + home = 0, + left = 0, + up = 0, + right = 0, + down = 0, + select = 0, + insert = 0, + Delete = 0, + a = 0, + b = 0, + c = 0, + d = 0, + e = 0, + f = 0, + g = 0, + h = 0, + i = 0, + j = 0, + k = 0, + l = 0, + m = 0, + n = 0, + o = 0, + p = 0, + q = 0, + r = 0, + s = 0, + t = 0, + u = 0, + v = 0, + w = 0, + x = 0, + y = 0, + z = 0, + num0 = 0, + num1 = 0, + num2 = 0, + num3 = 0, + num4 = 0, + num5 = 0, + num6 = 0, + num7 = 0, + num8 = 0, + num9 = 0, + '*' = 0, + '+' = 0, + '-' = 0, + numdel = 0, + '/' = 0, + f1 = 0, + f2 = 0, + f3 = 0, + f4 = 0, + f5 = 0, + f6 = 0, + f7 = 0, + f8 = 0, + f9 = 0, + f10 = 0, + f11 = 0, + f12 = 0, + numlock = 0, + scrolllock = 0, + ';' = 0, + semicolon = 0, + equal = 0, + '=' = 0, + ',' = 0, + comma = 0, + dash = 0, + '.' = 0, + period = 0, + forwardslash = 0, + grave = 0, + '[' = 0, + openbracket = 0, + backslash = 0, + ']' = 0, + closebracket = 0, + quote = 0, + dpadLeft = 0, + dpadRight = 0, + dpadUp = 0, + dpadDown = 0, + dpadCenter = 0, + } + } + + /**************************************************** + * macro + *****************************************************/ + + export namespace macro { + /** Image formats */ + export enum ImageFormat { + JPG = 0, + PNG = 0, + TIFF = 0, + WEBP = 0, + PVR = 0, + ETC = 0, + S3TC = 0, + ATITC = 0, + TGA = 0, + RAWDATA = 0, + UNKNOWN = 0, + } + } + + /**************************************************** + * macro + *****************************************************/ + + export namespace macro { + /** !#en + Enum for blend factor + Refer to: http://www.andersriggelsen.dk/glblendfunc.php + !#zh + 混合因子 + 可参考: http://www.andersriggelsen.dk/glblendfunc.php */ + export enum BlendFactor { + ONE = 0, + ZERO = 0, + SRC_ALPHA = 0, + SRC_COLOR = 0, + DST_ALPHA = 0, + DST_COLOR = 0, + ONE_MINUS_SRC_ALPHA = 0, + ONE_MINUS_SRC_COLOR = 0, + ONE_MINUS_DST_ALPHA = 0, + ONE_MINUS_DST_COLOR = 0, + } + } + + /**************************************************** + * macro + *****************************************************/ + + export namespace macro { + /** undefined */ + export enum TextAlignment { + LEFT = 0, + CENTER = 0, + RIGHT = 0, + } + } + + /**************************************************** + * sys + *****************************************************/ + + export namespace sys { + /** !#en + Network type enumeration + !#zh + 网络类型枚举 */ + export enum NetworkType { + NONE = 0, + LAN = 0, + WWAN = 0, + } + } + + /**************************************************** + * AnimationCurve + *****************************************************/ + + export namespace AnimationCurve { + /** !#en The wrap mode + !#zh 循环模式 */ + export enum WrapMode { + Default = 0, + Once = 0, + Loop = 0, + PingPong = 0, + ClampForever = 0, + time = 0, + value = 0, + inTangent = 0, + outTangent = 0, + } + } + + /**************************************************** + * ParticleSystem3DAssembler + *****************************************************/ + + export namespace ParticleSystem3DAssembler { + /** undefined */ + export enum Space { + } + } + + /**************************************************** + * ParticleSystem3DAssembler + *****************************************************/ + + export namespace ParticleSystem3DAssembler { + /** 粒子的生成模式 */ + export enum RenderMode { + } + } + + /**************************************************** + * shapeModule + *****************************************************/ + + export namespace shapeModule { + /** 粒子发射器类型 */ + export enum ShapeType { + Box = 0, + Circle = 0, + Cone = 0, + Sphere = 0, + Hemisphere = 0, + } + } + + /**************************************************** + * shapeModule + *****************************************************/ + + export namespace shapeModule { + /** 粒子从发射器的哪个部位发射 */ + export enum EmitLocation { + Base = 0, + Edge = 0, + Shell = 0, + Volume = 0, + } + } + + /**************************************************** + * shapeModule + *****************************************************/ + + export namespace shapeModule { + /** 粒子在扇形区域的发射方式 */ + export enum ArcMode { + Random = 0, + Loop = 0, + PingPong = 0, + } + } + + /**************************************************** + * trailModule + *****************************************************/ + + export namespace trailModule { + /** 选择如何为粒子系统生成轨迹 */ + export enum TrailMode { + } + } + + /**************************************************** + * trailModule + *****************************************************/ + + export namespace trailModule { + /** 纹理填充模式 */ + export enum TextureMode { + } + } + + /**************************************************** + * primitive + *****************************************************/ + + export namespace primitive { + /** undefined */ + export enum PolyhedronType { + Tetrahedron = 0, + Octahedron = 0, + Dodecahedron = 0, + Icosahedron = 0, + Rhombicuboctahedron = 0, + TriangularPrism = 0, + PentagonalPrism = 0, + HexagonalPrism = 0, + SquarePyramid = 0, + PentagonalPyramid = 0, + TriangularDipyramid = 0, + PentagonalDipyramid = 0, + ElongatedSquareDipyramid = 0, + ElongatedPentagonalDipyramid = 0, + ElongatedPentagonalCupola = 0, + } + } + + /**************************************************** + * primitive + *****************************************************/ + + export namespace primitive { + /** undefined */ + export class VertexData { + positions: number[]; + normals: number[]; + uvs: number[]; + indices: number[]; + minPos: Vec3; + maxPos: Vec3; + boundingRadius: number; + } + } + + /**************************************************** + * Material + *****************************************************/ + + export namespace Material { + /** !#en Material builtin name + !#zh 内置材质名字 */ + export enum BUILTIN_NAME { + SPRITE = 0, + GRAY_SPRITE = 0, + UNLIT = 0, + } + } + + /**************************************************** + * EditBox + *****************************************************/ + + export namespace EditBox { + /** !#en Enum for keyboard return types + !#zh 键盘的返回键类型 */ + export enum KeyboardReturnType { + DEFAULT = 0, + DONE = 0, + SEND = 0, + SEARCH = 0, + GO = 0, + NEXT = 0, + } + } + + /**************************************************** + * EditBox + *****************************************************/ + + export namespace EditBox { + /** !#en The EditBox's InputMode defines the type of text that the user is allowed to enter. + !#zh 输入模式 */ + export enum InputMode { + ANY = 0, + EMAIL_ADDR = 0, + NUMERIC = 0, + PHONE_NUMBER = 0, + URL = 0, + DECIMAL = 0, + SINGLE_LINE = 0, + } + } + + /**************************************************** + * EditBox + *****************************************************/ + + export namespace EditBox { + /** !#en Enum for the EditBox's input flags + !#zh 定义了一些用于设置文本显示和文本格式化的标志位。 */ + export enum InputFlag { + PASSWORD = 0, + SENSITIVE = 0, + INITIAL_CAPS_WORD = 0, + INITIAL_CAPS_SENTENCE = 0, + INITIAL_CAPS_ALL_CHARACTERS = 0, + DEFAULT = 0, + } + } + + /**************************************************** + * textureAnimationModule + *****************************************************/ + + export namespace textureAnimationModule { + /** 粒子贴图动画类型 */ + export enum Mode { + } + } + + /**************************************************** + * textureAnimationModule + *****************************************************/ + + export namespace textureAnimationModule { + /** 贴图动画的播放方式 */ + export enum Animation { + } + } + +} + +/** !#en +The global main namespace of DragonBones, all classes, functions, +properties and constants of DragonBones are defined in this namespace +!#zh +DragonBones 的全局的命名空间, +与 DragonBones 相关的所有的类,函数,属性,常量都在这个命名空间中定义。 */ +declare namespace dragonBones { + /** !#en + The Armature Display of DragonBones
+
+ Armature Display has a reference to a DragonBonesAsset and stores the state for ArmatureDisplay instance, + which consists of the current pose's bone SRT, slot colors, and which slot attachments are visible.
+ Multiple Armature Display can use the same DragonBonesAsset which includes all animations, skins, and attachments.
+ !#zh + DragonBones 骨骼动画
+
+ Armature Display 具有对骨骼数据的引用并且存储了骨骼实例的状态, + 它由当前的骨骼动作,slot 颜色,和可见的 slot attachments 组成。
+ 多个 Armature Display 可以使用相同的骨骼数据,其中包括所有的动画,皮肤和 attachments。
*/ + export class ArmatureDisplay extends cc.RenderComponent { + /** !#en + The DragonBones data contains the armatures information (bind pose bones, slots, draw order, + attachments, skins, etc) and animations but does not hold any state.
+ Multiple ArmatureDisplay can share the same DragonBones data. + !#zh + 骨骼数据包含了骨骼信息(绑定骨骼动作,slots,渲染顺序, + attachments,皮肤等等)和动画但不持有任何状态。
+ 多个 ArmatureDisplay 可以共用相同的骨骼数据。 */ + dragonAsset: DragonBonesAsset; + /** !#en + The atlas asset for the DragonBones. + !#zh + 骨骼数据所需的 Atlas Texture 数据。 */ + dragonAtlasAsset: DragonBonesAtlasAsset; + /** !#en The name of current armature. + !#zh 当前的 Armature 名称。 */ + armatureName: string; + /** !#en The name of current playing animation. + !#zh 当前播放的动画名称。 */ + animationName: string; + _defaultArmatureIndex: number; + /** !#en The time scale of this armature. + !#zh 当前骨骼中所有动画的时间缩放率。 */ + timeScale: number; + /** !#en The play times of the default animation. + -1 means using the value of config file; + 0 means repeat for ever + >0 means repeat times + !#zh 播放默认动画的循环次数 + -1 表示使用配置文件中的默认值; + 0 表示无限循环 + >0 表示循环次数 */ + playTimes: number; + /** !#en Indicates whether to enable premultiplied alpha. + You should disable this option when image's transparent area appears to have opaque pixels, + or enable this option when image's half transparent area appears to be darken. + !#zh 是否启用贴图预乘。 + 当图片的透明区域出现色块时需要关闭该选项,当图片的半透明区域颜色变黑时需要启用该选项。 */ + premultipliedAlpha: boolean; + /** !#en Indicates whether open debug bones. + !#zh 是否显示 bone 的 debug 信息。 */ + debugBones: boolean; + /** !#en Enabled batch model, if skeleton is complex, do not enable batch, or will lower performance. + !#zh 开启合批,如果渲染大量相同纹理,且结构简单的骨骼动画,开启合批可以降低drawcall,否则请不要开启,cpu消耗会上升。 */ + enableBatch: boolean; + /** + !#en + The key of dragonbones cache data, which is regard as 'dragonbonesName', when you want to change dragonbones cloth. + !#zh + 缓存龙骨数据的key值,换装的时会使用到该值,作为dragonbonesName使用 + + @example + ```js + let factory = dragonBones.CCFactory.getInstance(); + let needChangeSlot = needChangeArmature.armature().getSlot("changeSlotName"); + factory.replaceSlotDisplay(toChangeArmature.getArmatureKey(), "armatureName", "slotName", "displayName", needChangeSlot); + ``` + */ + getArmatureKey(): string; + /** + !#en + It's best to set cache mode before set property 'dragonAsset', or will waste some cpu time. + If set the mode in editor, then no need to worry about order problem. + !#zh + 若想切换渲染模式,最好在设置'dragonAsset'之前,先设置好渲染模式,否则有运行时开销。 + 若在编辑中设置渲染模式,则无需担心设置次序的问题。 + @param cacheMode cacheMode + + @example + ```js + armatureDisplay.setAnimationCacheMode(dragonBones.ArmatureDisplay.AnimationCacheMode.SHARED_CACHE); + ``` + */ + setAnimationCacheMode(cacheMode: ArmatureDisplay.AnimationCacheMode): void; + /** + !#en Whether in cached mode. + !#zh 当前是否处于缓存模式。 + */ + isAnimationCached(): boolean; + /** + !#en + Play the specified animation. + Parameter animName specify the animation name. + Parameter playTimes specify the repeat times of the animation. + -1 means use the value of the config file. + 0 means play the animation for ever. + >0 means repeat times. + !#zh + 播放指定的动画. + animName 指定播放动画的名称。 + playTimes 指定播放动画的次数。 + -1 为使用配置文件中的次数。 + 0 为无限循环播放。 + >0 为动画的重复次数。 + @param animName animName + @param playTimes playTimes + */ + playAnimation(animName: string, playTimes: number): dragonBones.AnimationState; + /** + !#en + Updating an animation cache to calculate all frame data in the animation is a cost in + performance due to calculating all data in a single frame. + To update the cache, use the invalidAnimationCache method with high performance. + !#zh + 更新某个动画缓存, 预计算动画中所有帧数据,由于在单帧计算所有数据,所以较消耗性能。 + 若想更新缓存,可使用 invalidAnimationCache 方法,具有较高性能。 + @param animName animName + */ + updateAnimationCache(animName: string): void; + /** + !#en + Invalidates the animation cache, which is then recomputed on each frame.. + !#zh + 使动画缓存失效,之后会在每帧重新计算。 + */ + invalidAnimationCache(): void; + /** + !#en + Get the all armature names in the DragonBones Data. + !#zh + 获取 DragonBones 数据中所有的 armature 名称 + */ + getArmatureNames(): any[]; + /** + !#en + Get the all animation names of specified armature. + !#zh + 获取指定的 armature 的所有动画名称。 + @param armatureName armatureName + */ + getAnimationNames(armatureName: string): any[]; + /** + !#en + Add event listener for the DragonBones Event, the same to addEventListener. + !#zh + 添加 DragonBones 事件监听器,与 addEventListener 作用相同。 + @param type A string representing the event type to listen for. + @param listener The callback that will be invoked when the event is dispatched. + @param target The target (this object) to invoke the callback, can be null + */ + on(type: string, listener: (event: cc.Event) => void, target?: any): void; + /** + !#en + Remove the event listener for the DragonBones Event, the same to removeEventListener. + !#zh + 移除 DragonBones 事件监听器,与 removeEventListener 作用相同。 + @param type A string representing the event type to listen for. + @param listener listener + @param target target + */ + off(type: string, listener?: Function, target?: any): void; + /** + !#en + Add DragonBones one-time event listener, the callback will remove itself after the first time it is triggered. + !#zh + 添加 DragonBones 一次性事件监听器,回调会在第一时间被触发后删除自身。 + @param type A string representing the event type to listen for. + @param listener The callback that will be invoked when the event is dispatched. + @param target The target (this object) to invoke the callback, can be null + */ + once(type: string, listener: (event: cc.Event) => void, target?: any): void; + /** + !#en + Add event listener for the DragonBones Event. + !#zh + 添加 DragonBones 事件监听器。 + @param type A string representing the event type to listen for. + @param listener The callback that will be invoked when the event is dispatched. + @param target The target (this object) to invoke the callback, can be null + */ + addEventListener(type: string, listener: (event: cc.Event) => void, target?: any): void; + /** + !#en + Remove the event listener for the DragonBones Event. + !#zh + 移除 DragonBones 事件监听器。 + @param type A string representing the event type to listen for. + @param listener listener + @param target target + */ + removeEventListener(type: string, listener?: Function, target?: any): void; + /** + !#en + Build the armature for specified name. + !#zh + 构建指定名称的 armature 对象 + @param armatureName armatureName + @param node node + */ + buildArmature(armatureName: string, node: cc.Node): ArmatureDisplay; + /** + !#en + Get the current armature object of the ArmatureDisplay. + !#zh + 获取 ArmatureDisplay 当前使用的 Armature 对象 + */ + armature(): any; + } + /** DragonBones factory */ + export class CCFactory extends BaseFactory { + /** + + + @example + ```js + let factory = dragonBones.CCFactory.getInstance(); + ``` + */ + static getInstance(): CCFactory; + } + /** !#en The skeleton data of dragonBones. + !#zh dragonBones 的 骨骼数据。 */ + export class DragonBonesAsset extends cc.Asset { + /** !#en See http://developer.egret.com/cn/github/egret-docs/DB/dbLibs/dataFormat/index.html + !#zh 可查看 DragonBones 官方文档 http://developer.egret.com/cn/github/egret-docs/DB/dbLibs/dataFormat/index.html */ + dragonBonesJson: string; + } + /** !#en The skeleton atlas data of dragonBones. + !#zh dragonBones 的骨骼纹理数据。 */ + export class DragonBonesAtlasAsset extends cc.Asset { + atlasJson: string; + texture: cc.Texture2D; + } + /**************************************************** + * ArmatureDisplay + *****************************************************/ + + export namespace ArmatureDisplay { + /** !#en Enum for cache mode type. + !#zh Dragonbones渲染类型 */ + export enum AnimationCacheMode { + REALTIME = 0, + SHARED_CACHE = 0, + PRIVATE_CACHE = 0, + } + } + + /**************************************************** + * dragonBones + *****************************************************/ + + export namespace dragonBones { + /** !#en Attach node tool + !#zh 挂点工具类 */ + export class AttachUtil { + /** + !#en Gets attached root node. + !#zh 获取挂接节点树的根节点 + */ + getAttachedRootNode(): cc.Node; + /** + !#en Gets attached node which you want. + !#zh 获得对应的挂点 + @param boneName boneName + */ + getAttachedNodes(boneName: string): cc.Node[]; + /** + !#en Destroy attached node which you want. + !#zh 销毁对应的挂点 + @param boneName boneName + */ + destroyAttachedNodes(boneName: string): void; + /** + !#en Traverse all bones to generate the minimum node tree containing the given bone names, NOTE that make sure the skeleton has initialized before calling this interface. + !#zh 遍历所有插槽,生成包含所有给定插槽名称的最小节点树,注意,调用该接口前请确保骨骼动画已经初始化好。 + @param boneName boneName + */ + generateAttachedNodes(boneName: string): cc.Node[]; + /** + !#en Destroy all attached node. + !#zh 销毁所有挂点 + */ + destroyAllAttachedNodes(): void; + /** + !#en Traverse all bones to generate a tree containing all bones nodes, NOTE that make sure the skeleton has initialized before calling this interface. + !#zh 遍历所有插槽,生成包含所有插槽的节点树,注意,调用该接口前请确保骨骼动画已经初始化好。 + */ + generateAllAttachedNodes(): cc.Node; + } + } + +} + +/** !#en +The global main namespace of Spine, all classes, functions, +properties and constants of Spine are defined in this namespace +!#zh +Spine 的全局的命名空间, +与 Spine 相关的所有的类,函数,属性,常量都在这个命名空间中定义。 */ +declare namespace sp { + /** !#en + The skeleton of Spine
+
+ (Skeleton has a reference to a SkeletonData and stores the state for skeleton instance, + which consists of the current pose's bone SRT, slot colors, and which slot attachments are visible.
+ Multiple skeletons can use the same SkeletonData which includes all animations, skins, and attachments.)
+ !#zh + Spine 骨骼动画
+
+ (Skeleton 具有对骨骼数据的引用并且存储了骨骼实例的状态, + 它由当前的骨骼动作,slot 颜色,和可见的 slot attachments 组成。
+ 多个 Skeleton 可以使用相同的骨骼数据,其中包括所有的动画,皮肤和 attachments。 */ + export class Skeleton extends cc.RenderComponent { + /** !#en The skeletal animation is paused? + !#zh 该骨骼动画是否暂停。 */ + paused: boolean; + /** !#en + The skeleton data contains the skeleton information (bind pose bones, slots, draw order, + attachments, skins, etc) and animations but does not hold any state.
+ Multiple skeletons can share the same skeleton data. + !#zh + 骨骼数据包含了骨骼信息(绑定骨骼动作,slots,渲染顺序, + attachments,皮肤等等)和动画但不持有任何状态。
+ 多个 Skeleton 可以共用相同的骨骼数据。 */ + skeletonData: SkeletonData; + /** !#en The name of default skin. + !#zh 默认的皮肤名称。 */ + defaultSkin: string; + /** !#en The name of default animation. + !#zh 默认的动画名称。 */ + defaultAnimation: string; + /** !#en The name of current playing animation. + !#zh 当前播放的动画名称。 */ + animation: string; + _defaultSkinIndex: number; + /** !#en TODO + !#zh 是否循环播放当前骨骼动画。 */ + loop: boolean; + /** !#en Indicates whether to enable premultiplied alpha. + You should disable this option when image's transparent area appears to have opaque pixels, + or enable this option when image's half transparent area appears to be darken. + !#zh 是否启用贴图预乘。 + 当图片的透明区域出现色块时需要关闭该选项,当图片的半透明区域颜色变黑时需要启用该选项。 */ + premultipliedAlpha: boolean; + /** !#en The time scale of this skeleton. + !#zh 当前骨骼中所有动画的时间缩放率。 */ + timeScale: number; + /** !#en Indicates whether open debug slots. + !#zh 是否显示 slot 的 debug 信息。 */ + debugSlots: boolean; + /** !#en Indicates whether open debug bones. + !#zh 是否显示 bone 的 debug 信息。 */ + debugBones: boolean; + /** !#en Indicates whether open debug mesh. + !#zh 是否显示 mesh 的 debug 信息。 */ + debugMesh: boolean; + /** !#en Enabled two color tint. + !#zh 是否启用染色效果。 */ + useTint: boolean; + /** !#en Enabled batch model, if skeleton is complex, do not enable batch, or will lower performance. + !#zh 开启合批,如果渲染大量相同纹理,且结构简单的骨骼动画,开启合批可以降低drawcall,否则请不要开启,cpu消耗会上升。 */ + enableBatch: boolean; + /** + !#en + Sets runtime skeleton data to sp.Skeleton.
+ This method is different from the `skeletonData` property. This method is passed in the raw data provided by the Spine runtime, and the skeletonData type is the asset type provided by Creator. + !#zh + 设置底层运行时用到的 SkeletonData。
+ 这个接口有别于 `skeletonData` 属性,这个接口传入的是 Spine runtime 提供的原始数据,而 skeletonData 的类型是 Creator 提供的资源类型。 + @param skeletonData skeletonData + */ + setSkeletonData(skeletonData: sp.spine.SkeletonData): void; + /** + !#en Sets slots visible range. + !#zh 设置骨骼插槽可视范围。 + @param startSlotIndex startSlotIndex + @param endSlotIndex endSlotIndex + */ + setSlotsRange(startSlotIndex: number, endSlotIndex: number): void; + /** + !#en Sets animation state data.
+ The parameter type is {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.AnimationStateData. + !#zh 设置动画状态数据。
+ 参数是 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.AnimationStateData。 + @param stateData stateData + */ + setAnimationStateData(stateData: sp.spine.AnimationStateData): void; + /** + !#en + It's best to set cache mode before set property 'dragonAsset', or will waste some cpu time. + If set the mode in editor, then no need to worry about order problem. + !#zh + 若想切换渲染模式,最好在设置'dragonAsset'之前,先设置好渲染模式,否则有运行时开销。 + 若在编辑中设置渲染模式,则无需担心设置次序的问题。 + @param cacheMode cacheMode + + @example + ```js + skeleton.setAnimationCacheMode(sp.Skeleton.AnimationCacheMode.SHARED_CACHE); + ``` + */ + setAnimationCacheMode(cacheMode: Skeleton.AnimationCacheMode): void; + /** + !#en Whether in cached mode. + !#zh 当前是否处于缓存模式。 + */ + isAnimationCached(): boolean; + /** + !#en Sets vertex effect delegate. + !#zh 设置顶点动画代理 + @param effectDelegate effectDelegate + */ + setVertexEffectDelegate(effectDelegate: VertexEffectDelegate): void; + /** + !#en Computes the world SRT from the local SRT for each bone. + !#zh 重新更新所有骨骼的世界 Transform, + 当获取 bone 的数值未更新时,即可使用该函数进行更新数值。 + + @example + ```js + var bone = spine.findBone('head'); + cc.log(bone.worldX); // return 0; + spine.updateWorldTransform(); + bone = spine.findBone('head'); + cc.log(bone.worldX); // return -23.12; + ``` + */ + updateWorldTransform(): void; + /** + !#en Sets the bones and slots to the setup pose. + !#zh 还原到起始动作 + */ + setToSetupPose(): void; + /** + !#en + Sets the bones to the setup pose, + using the values from the `BoneData` list in the `SkeletonData`. + !#zh + 设置 bone 到起始动作 + 使用 SkeletonData 中的 BoneData 列表中的值。 + */ + setBonesToSetupPose(): void; + /** + !#en + Sets the slots to the setup pose, + using the values from the `SlotData` list in the `SkeletonData`. + !#zh + 设置 slot 到起始动作。 + 使用 SkeletonData 中的 SlotData 列表中的值。 + */ + setSlotsToSetupPose(): void; + /** + !#en + Updating an animation cache to calculate all frame data in the animation is a cost in + performance due to calculating all data in a single frame. + To update the cache, use the invalidAnimationCache method with high performance. + !#zh + 更新某个动画缓存, 预计算动画中所有帧数据,由于在单帧计算所有数据,所以较消耗性能。 + 若想更新缓存,可使用 invalidAnimationCache 方法,具有较高性能。 + @param animName animName + */ + updateAnimationCache(animName: string): void; + /** + !#en + Invalidates the animation cache, which is then recomputed on each frame.. + !#zh + 使动画缓存失效,之后会在每帧重新计算。 + */ + invalidAnimationCache(): void; + /** + !#en + Finds a bone by name. + This does a string comparison for every bone.
+ Returns a {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.Bone object. + !#zh + 通过名称查找 bone。 + 这里对每个 bone 的名称进行了对比。
+ 返回一个 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.Bone 对象。 + @param boneName boneName + */ + findBone(boneName: string): sp.spine.Bone; + /** + !#en + Finds a slot by name. This does a string comparison for every slot.
+ Returns a {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.Slot object. + !#zh + 通过名称查找 slot。这里对每个 slot 的名称进行了比较。
+ 返回一个 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.Slot 对象。 + @param slotName slotName + */ + findSlot(slotName: string): sp.spine.Slot; + /** + !#en + Finds a skin by name and makes it the active skin. + This does a string comparison for every skin.
+ Note that setting the skin does not change which attachments are visible.
+ Returns a {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.Skin object. + !#zh + 按名称查找皮肤,激活该皮肤。这里对每个皮肤的名称进行了比较。
+ 注意:设置皮肤不会改变 attachment 的可见性。
+ 返回一个 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.Skin 对象。 + @param skinName skinName + */ + setSkin(skinName: string): void; + /** + !#en + Returns the attachment for the slot and attachment name. + The skeleton looks first in its skin, then in the skeleton data’s default skin.
+ Returns a {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.Attachment object. + !#zh + 通过 slot 和 attachment 的名称获取 attachment。Skeleton 优先查找它的皮肤,然后才是 Skeleton Data 中默认的皮肤。
+ 返回一个 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.Attachment 对象。 + @param slotName slotName + @param attachmentName attachmentName + */ + getAttachment(slotName: string, attachmentName: string): sp.spine.Attachment; + /** + !#en + Sets the attachment for the slot and attachment name. + The skeleton looks first in its skin, then in the skeleton data’s default skin. + !#zh + 通过 slot 和 attachment 的名字来设置 attachment。 + Skeleton 优先查找它的皮肤,然后才是 Skeleton Data 中默认的皮肤。 + @param slotName slotName + @param attachmentName attachmentName + */ + setAttachment(slotName: string, attachmentName: string): void; + /** + Return the renderer of attachment. + @param regionAttachment regionAttachment + */ + getTextureAtlas(regionAttachment: sp.spine.RegionAttachment|spine.BoundingBoxAttachment): sp.spine.TextureAtlasRegion; + /** + !#en + Mix applies all keyframe values, + interpolated for the specified time and mixed with the current values. + !#zh 为所有关键帧设定混合及混合时间(从当前值开始差值)。 + @param fromAnimation fromAnimation + @param toAnimation toAnimation + @param duration duration + */ + setMix(fromAnimation: string, toAnimation: string, duration: number): void; + /** + !#en Set the current animation. Any queued animations are cleared.
+ Returns a {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.TrackEntry object. + !#zh 设置当前动画。队列中的任何的动画将被清除。
+ 返回一个 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.TrackEntry 对象。 + @param trackIndex trackIndex + @param name name + @param loop loop + */ + setAnimation(trackIndex: number, name: string, loop: boolean): sp.spine.TrackEntry; + /** + !#en Adds an animation to be played delay seconds after the current or last queued animation.
+ Returns a {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.TrackEntry object. + !#zh 添加一个动画到动画队列尾部,还可以延迟指定的秒数。
+ 返回一个 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.TrackEntry 对象。 + @param trackIndex trackIndex + @param name name + @param loop loop + @param delay delay + */ + addAnimation(trackIndex: number, name: string, loop: boolean, delay?: number): sp.spine.TrackEntry; + /** + !#en Find animation with specified name. + !#zh 查找指定名称的动画 + @param name name + */ + findAnimation(name: string): sp.spine.Animation; + /** + !#en Returns track entry by trackIndex.
+ Returns a {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.TrackEntry object. + !#zh 通过 track 索引获取 TrackEntry。
+ 返回一个 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.TrackEntry 对象。 + @param trackIndex trackIndex + */ + getCurrent(trackIndex: any): sp.spine.TrackEntry; + /** + !#en Clears all tracks of animation state. + !#zh 清除所有 track 的动画状态。 + */ + clearTracks(): void; + /** + !#en Clears track of animation state by trackIndex. + !#zh 清除出指定 track 的动画状态。 + @param trackIndex trackIndex + */ + clearTrack(trackIndex: number): void; + /** + !#en Set the start event listener. + !#zh 用来设置开始播放动画的事件监听。 + @param listener listener + */ + setStartListener(listener: Function): void; + /** + !#en Set the interrupt event listener. + !#zh 用来设置动画被打断的事件监听。 + @param listener listener + */ + setInterruptListener(listener: Function): void; + /** + !#en Set the end event listener. + !#zh 用来设置动画播放完后的事件监听。 + @param listener listener + */ + setEndListener(listener: Function): void; + /** + !#en Set the dispose event listener. + !#zh 用来设置动画将被销毁的事件监听。 + @param listener listener + */ + setDisposeListener(listener: Function): void; + /** + !#en Set the complete event listener. + !#zh 用来设置动画播放一次循环结束后的事件监听。 + @param listener listener + */ + setCompleteListener(listener: Function): void; + /** + !#en Set the animation event listener. + !#zh 用来设置动画播放过程中帧事件的监听。 + @param listener listener + */ + setEventListener(listener: Function): void; + /** + !#en Set the start event listener for specified TrackEntry. + !#zh 用来为指定的 TrackEntry 设置动画开始播放的事件监听。 + @param entry entry + @param listener listener + */ + setTrackStartListener(entry: sp.spine.TrackEntry, listener: Function): void; + /** + !#en Set the interrupt event listener for specified TrackEntry. + !#zh 用来为指定的 TrackEntry 设置动画被打断的事件监听。 + @param entry entry + @param listener listener + */ + setTrackInterruptListener(entry: sp.spine.TrackEntry, listener: Function): void; + /** + !#en Set the end event listener for specified TrackEntry. + !#zh 用来为指定的 TrackEntry 设置动画播放结束的事件监听。 + @param entry entry + @param listener listener + */ + setTrackEndListener(entry: sp.spine.TrackEntry, listener: Function): void; + /** + !#en Set the dispose event listener for specified TrackEntry. + !#zh 用来为指定的 TrackEntry 设置动画即将被销毁的事件监听。 + @param entry entry + @param listener listener + */ + setTrackDisposeListener(entry: sp.spine.TrackEntry, listener: Function): void; + /** + !#en Set the complete event listener for specified TrackEntry. + !#zh 用来为指定的 TrackEntry 设置动画一次循环播放结束的事件监听。 + @param entry entry + @param listener listener + */ + setTrackCompleteListener(entry: sp.spine.TrackEntry, listener: (entry: sp.spine.TrackEntry, loopCount: number) => void): void; + /** + !#en Set the event listener for specified TrackEntry. + !#zh 用来为指定的 TrackEntry 设置动画帧事件的监听。 + @param entry entry + @param listener listener + */ + setTrackEventListener(entry: sp.spine.TrackEntry, listener: Function): void; + /** + !#en Get the animation state object + !#zh 获取动画状态 + */ + getState(): sp.spine.AnimationState; + } + /** !#en The event type of spine skeleton animation. + !#zh 骨骼动画事件类型。 */ + export enum AnimationEventType { + START = 0, + END = 0, + COMPLETE = 0, + EVENT = 0, + } + /** !#en The skeleton data of spine. + !#zh Spine 的 骨骼数据。 */ + export class SkeletonData extends cc.Asset { + /** !#en See http://en.esotericsoftware.com/spine-json-format + !#zh 可查看 Spine 官方文档 http://zh.esotericsoftware.com/spine-json-format */ + skeletonJson: any; + atlasText: string; + textures: cc.Texture2D[]; + /** !#en + A scale can be specified on the JSON or binary loader which will scale the bone positions, + image sizes, and animation translations. + This can be useful when using different sized images than were used when designing the skeleton + in Spine. For example, if using images that are half the size than were used in Spine, + a scale of 0.5 can be used. This is commonly used for games that can run with either low or high + resolution texture atlases. + see http://en.esotericsoftware.com/spine-using-runtimes#Scaling + !#zh 可查看 Spine 官方文档: http://zh.esotericsoftware.com/spine-using-runtimes#Scaling */ + scale: number; + /** + !#en Get the included SkeletonData used in spine runtime.
+ Returns a {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.SkeletonData object. + !#zh 获取 Spine Runtime 使用的 SkeletonData。
+ 返回一个 {{#crossLinkModule "sp.spine"}}sp.spine{{/crossLinkModule}}.SkeletonData 对象。 + @param quiet quiet + */ + getRuntimeData(quiet?: boolean): sp.spine.SkeletonData; + } + /** !#en + The delegate of spine vertex effect + !#zh + Spine 顶点动画代理 */ + export class VertexEffectDelegate { + /** + !#en Clears vertex effect. + !#zh 清空顶点效果 + */ + clear(): void; + /** + !#en Inits delegate with jitter effect + !#zh 设置顶点抖动效果 + @param jitterX jitterX + @param jitterY jitterY + */ + initJitter(jitterX: number, jitterY: number): void; + /** + !#en Inits delegate with swirl effect + !#zh 设置顶点漩涡效果 + @param radius radius + @param power power + */ + initSwirlWithPow(radius: number, power: number): sp.spine.JitterEffect; + /** + !#en Inits delegate with swirl effect + !#zh 设置顶点漩涡效果 + @param radius radius + @param power power + */ + initSwirlWithPowOut(radius: number, power: number): sp.spine.SwirlEffect; + /** + !#en Gets jitter vertex effect + !#zh 获取顶点抖动效果 + */ + getJitterVertexEffect(): sp.spine.JitterEffect; + /** + !#en Gets swirl vertex effect + !#zh 获取顶点漩涡效果 + */ + getSwirlVertexEffect(): sp.spine.SwirlEffect; + /** + !#en Gets vertex effect + !#zh 获取顶点效果 + */ + getVertexEffect(): sp.spine.JitterEffect; + /** + !#en Gets effect type + !#zh 获取效果类型 + */ + getEffectType(): string; + } + /**************************************************** + * sp + *****************************************************/ + + export namespace sp { + /** !#en Attach node tool + !#zh 挂点工具类 */ + export class AttachUtil { + /** + !#en Gets attached root node. + !#zh 获取挂接节点树的根节点 + */ + getAttachedRootNode(): cc.Node; + /** + !#en Gets attached node which you want. + !#zh 获得对应的挂点 + @param boneName boneName + */ + getAttachedNodes(boneName: string): cc.Node[]; + /** + !#en Destroy attached node which you want. + !#zh 销毁对应的挂点 + @param boneName boneName + */ + destroyAttachedNodes(boneName: string): void; + /** + !#en Traverse all bones to generate the minimum node tree containing the given bone names, NOTE that make sure the skeleton has initialized before calling this interface. + !#zh 遍历所有插槽,生成包含所有给定插槽名称的最小节点树,注意,调用该接口前请确保骨骼动画已经初始化好。 + @param boneName boneName + */ + generateAttachedNodes(boneName: string): cc.Node[]; + /** + !#en Destroy all attached node. + !#zh 销毁所有挂点 + */ + destroyAllAttachedNodes(): void; + /** + !#en Traverse all bones to generate a tree containing all bones nodes, NOTE that make sure the skeleton has initialized before calling this interface. + !#zh 遍历所有插槽,生成包含所有插槽的节点树,注意,调用该接口前请确保骨骼动画已经初始化好。 + */ + generateAllAttachedNodes(): cc.Node; + } + } + + /**************************************************** + * Skeleton + *****************************************************/ + + export namespace Skeleton { + /** !#en Enum for animation cache mode type. + !#zh Spine动画缓存类型 */ + export enum AnimationCacheMode { + REALTIME = 0, + SHARED_CACHE = 0, + PRIVATE_CACHE = 0, + } + } + +} + +/** !#en +`sp.spine` is the namespace for official Spine Runtime, which officially implemented and maintained by Spine.
+Please refer to the official documentation for its detailed usage: [http://en.esotericsoftware.com/spine-using-runtimes](http://en.esotericsoftware.com/spine-using-runtimes) +!#zh +sp.spine 模块是 Spine 官方运行库的 API 入口,由 Spine 官方统一实现和维护,具体用法请参考:[http://zh.esotericsoftware.com/spine-using-runtimes](http://zh.esotericsoftware.com/spine-using-runtimes) */ +declare namespace sp.spine { +} + +/** !#en +This module controls asset's behaviors and information, include loading, releasing etc. +All member can be accessed with `cc.assetManager`. All class or enum can be accessed with `cc.AssetManager` + +!#zh +此模块管理资源的行为和信息,包括加载,释放等,所有成员能够通过 `cc.assetManager` 调用. 所有类型或枚举能通过 `cc.AssetManager` 访问 */ +declare namespace cc.AssetManager { + /** !#en + This module contains the builtin asset, it's a singleton, all member can be accessed with `cc.assetManager.builtins` + + !#zh + 此模块包含内建资源,这是一个单例,所有成员能通过 `cc.assetManager.builtins` 访问 */ + export class Builtins { + /** + !#en + Initialize + + !#zh + 初始化 + @param cb Callback when finish loading built-in assets + */ + init (cb: () => void): void; + /** + !#en + Get the built-in asset using specific type and name. + + !#zh + 通过特定的类型和名称获取内建资源 + @param type The type of asset, such as `effect` + @param name The name of asset, such as `phong` + + @example + ```js + cc.assetManaer.builtins.getBuiltin('effect', 'phone'); + ``` + */ + getBuiltin(type?: string, name?: string): cc.Asset | Cache; + /** + !#en + Clear all builtin assets + + !#zh + 清空所有内置资源 + */ + clear(): void; + } + /** !#en + A bundle contains an amount of assets(includes scene), you can load, preload, release asset which is in this bundle + + !#zh + 一个包含一定数量资源(包括场景)的包,你可以加载,预加载,释放此包内的资源 */ + export class Bundle { + /** + !#en + Create a bundle + + !#zh + 创建一个 bundle + */ + constructor(); + /** !#en + The name of this bundle + + !#zh + 此 bundle 的名称 */ + name: string; + /** !#en + The dependency of this bundle + + !#zh + 此 bundle 的依赖 */ + deps: string[]; + /** !#en + The root path of this bundle, such like 'http://example.com/bundle1' + + !#zh + 此 bundle 的根路径, 例如 'http://example.com/bundle1' */ + base: string; + /** + !#en + Get asset's info using path, only valid when asset is in bundle folder. + + !#zh + 使用 path 获取资源的配置信息 + @param path The relative path of asset, such as 'images/a' + @param type The constructor of asset, such as `cc.Texture2D` + + @example + ```js + var info = bundle.getInfoWithPath('image/a', cc.Texture2D); + ``` + */ + getInfoWithPath (path: string, type?: typeof cc.Asset): Record; + /** + !#en + Get all asset's info within specific folder + + !#zh + 获取在某个指定文件夹下的所有资源信息 + @param path The relative path of folder, such as 'images' + @param type The constructor should be used to filter paths + @param out The output array + + @example + ```js + var infos = []; + bundle.getDirWithPath('images', cc.Texture2D, infos); + ``` + */ + getDirWithPath (path: string, type: typeof cc.Asset, out: Array>): Array>; + getDirWithPath (path: string, type: typeof cc.Asset): Array>; + getDirWithPath (path: string): Array>; + /** + !#en + Get asset's info with uuid + + !#zh + 通过 uuid 获取资源信息 + @param uuid The asset's uuid + + @example + ```js + var info = bundle.getAssetInfo('fcmR3XADNLgJ1ByKhqcC5Z'); + ``` + */ + getAssetInfo (uuid: string): Record; + /** + !#en + Get scene'info with name + + !#zh + 通过场景名获取场景信息 + @param name The name of scene + + @example + ```js + var info = bundle.getSceneInfo('first.fire'); + ``` + */ + getSceneInfo(name: string): Record; + /** + !#en + Initialize this bundle with options + + !#zh + 初始化此 bundle + @param options options + */ + init(options: Record): void; + /** + !#en + Load the asset within this bundle by the path which is relative to bundle's path + + !#zh + 通过相对路径加载分包中的资源。路径是相对分包文件夹路径的相对路径 + @param paths Paths of the target assets.The path is relative to the bundle's folder, extensions must be omitted. + @param type Only asset of type will be loaded if this argument is supplied. + @param onProgress Callback invoked when progression change. + @param onComplete Callback invoked when all assets loaded. + + @example + ```js + // load the texture (${project}/assets/resources/textures/background.jpg) from resources + cc.resources.load('textures/background', cc.Texture2D, (err, texture) => console.log(err)); + + // load the audio (${project}/assets/resources/music/hit.mp3) from resources + cc.resources.load('music/hit', cc.AudioClip, (err, audio) => console.log(err)); + + // load the prefab (${project}/assets/bundle1/misc/character/cocos) from bundle1 folder + bundle1.load('misc/character/cocos', cc.Prefab, (err, prefab) => console.log(err)); + + // load the sprite frame (${project}/assets/some/xxx/bundle2/imgs/cocos.png) from bundle2 folder + bundle2.load('imgs/cocos', cc.SpriteFrame, null, (err, spriteFrame) => console.log(err)); + ``` + */ + load(paths: string, type: typeof cc.Asset, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, assets: T) => void): void; + load(paths: string[], type: typeof cc.Asset, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, assets: Array) => void): void; + load(paths: string, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, assets: T) => void): void; + load(paths: string[], onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, assets: Array) => void): void; + load(paths: string, type: typeof cc.Asset, onComplete?: (error: Error, assets: T) => void): void; + load(paths: string[], type: typeof cc.Asset, onComplete?: (error: Error, assets: Array) => void): void; + load(paths: string, onComplete?: (error: Error, assets: T) => void): void; + load(paths: string[], onComplete?: (error: Error, assets: Array) => void): void; + /** + !#en + Preload the asset within this bundle by the path which is relative to bundle's path. + After calling this method, you still need to finish loading by calling `Bundle.load`. + It will be totally fine to call `Bundle.load` at any time even if the preloading is not + yet finished + + !#zh + 通过相对路径预加载分包中的资源。路径是相对分包文件夹路径的相对路径。调用完后,你仍然需要通过 `Bundle.load` 来完成加载。 + 就算预加载还没完成,你也可以直接调用 `Bundle.load`。 + @param paths Paths of the target asset.The path is relative to bundle folder, extensions must be omitted. + @param type Only asset of type will be loaded if this argument is supplied. + @param onProgress Callback invoked when progression change. + @param onComplete Callback invoked when the resource loaded. + + @example + ```js + // preload the texture (${project}/assets/resources/textures/background.jpg) from resources + cc.resources.preload('textures/background', cc.Texture2D); + + // preload the audio (${project}/assets/resources/music/hit.mp3) from resources + cc.resources.preload('music/hit', cc.AudioClip); + // wait for while + cc.resources.load('music/hit', cc.AudioClip, (err, audioClip) => {}); + + * // preload the prefab (${project}/assets/bundle1/misc/character/cocos) from bundle1 folder + bundle1.preload('misc/character/cocos', cc.Prefab); + + // load the sprite frame of (${project}/assets/bundle2/imgs/cocos.png) from bundle2 folder + bundle2.preload('imgs/cocos', cc.SpriteFrame); + // wait for while + bundle2.load('imgs/cocos', cc.SpriteFrame, (err, spriteFrame) => {}); + ``` + */ + preload(paths: string|string[], type: typeof cc.Asset, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, items: RequestItem[]) => void): void; + preload(paths: string|string[], onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, items: RequestItem[]) => void): void; + preload(paths: string|string[], type: typeof cc.Asset, onComplete: (error: Error, items: RequestItem[]) => void): void; + preload(paths: string|string[], type: typeof cc.Asset): void; + preload(paths: string|string[], onComplete: (error: Error, items: RequestItem[]) => void): void; + preload(paths: string|string[]): void; + /** + !#en + Load all assets under a folder inside the bundle folder.
+
+ Note: All asset paths in Creator use forward slashes, paths using backslashes will not work. + + !#zh + 加载目标文件夹中的所有资源, 注意:路径中只能使用斜杠,反斜杠将停止工作 + @param dir path of the target folder.The path is relative to the bundle folder, extensions must be omitted. + @param type Only asset of type will be loaded if this argument is supplied. + @param onProgress Callback invoked when progression change. + @param onComplete A callback which is called when all assets have been loaded, or an error occurs. + + @example + ```js + // load all audios (resources/audios/) + cc.resources.loadDir('audios', cc.AudioClip, (err, audios) => {}); + + // load all textures in "resources/imgs/" + cc.resources.loadDir('imgs', cc.Texture2D, null, function (err, textures) { + var texture1 = textures[0]; + var texture2 = textures[1]; + }); + + // load all prefabs (${project}/assets/bundle1/misc/characters/) from bundle1 folder + bundle1.loadDir('misc/characters', cc.Prefab, (err, prefabs) => console.log(err)); + + // load all sprite frame (${project}/assets/some/xxx/bundle2/skills/) from bundle2 folder + bundle2.loadDir('skills', cc.SpriteFrame, null, (err, spriteFrames) => console.log(err)); + ``` + */ + loadDir(dir: string, type: typeof cc.Asset, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, assets: Array) => void): void; + loadDir(dir: string, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, assets: Array) => void): void; + loadDir(dir: string, type: typeof cc.Asset, onComplete: (error: Error, assets: Array) => void): void; + loadDir(dir: string, type: typeof cc.Asset): void; + loadDir(dir: string, onComplete: (error: Error, assets: Array) => void): void; + loadDir(dir: string): void; + /** + !#en + Preload all assets under a folder inside the bundle folder.
After calling this method, you still need to finish loading by calling `Bundle.loadDir`. + It will be totally fine to call `Bundle.loadDir` at any time even if the preloading is not yet finished + + !#zh + 预加载目标文件夹中的所有资源。调用完后,你仍然需要通过 `Bundle.loadDir` 来完成加载。 + 就算预加载还没完成,你也可以直接调用 `Bundle.loadDir`。 + @param dir path of the target folder.The path is relative to the bundle folder, extensions must be omitted. + @param type Only asset of type will be preloaded if this argument is supplied. + @param onProgress Callback invoked when progression change. + @param onComplete A callback which is called when all assets have been loaded, or an error occurs. + + @example + ```js + // preload all audios (resources/audios/) + cc.resources.preloadDir('audios', cc.AudioClip); + + // preload all textures in "resources/imgs/" + cc.resources.preloadDir('imgs', cc.Texture2D); + // wait for while + cc.resources.loadDir('imgs', cc.Texture2D, (err, textures) => {}); + + // preload all prefabs (${project}/assets/bundle1/misc/characters/) from bundle1 folder + bundle1.preloadDir('misc/characters', cc.Prefab); + + // preload all sprite frame (${project}/assets/some/xxx/bundle2/skills/) from bundle2 folder + bundle2.preloadDir('skills', cc.SpriteFrame); + // wait for while + bundle2.loadDir('skills', cc.SpriteFrame, (err, spriteFrames) => {}); + ``` + */ + preloadDir(dir: string, type: typeof cc.Asset, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, items: RequestItem[]) => void): void; + preloadDir(dir: string, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, items: RequestItem[]) => void): void; + preloadDir(dir: string, type: typeof cc.Asset, onComplete: (error: Error, items: RequestItem[]) => void): void; + preloadDir(dir: string, type: typeof cc.Asset): void; + preloadDir(dir: string, onComplete: (error: Error, items: RequestItem[]) => void): void; + preloadDir(dir: string): void; + /** + !#en + Loads the scene within this bundle by its name. + + !#zh + 通过场景名称加载分包中的场景。 + @param sceneName The name of the scene to load. + @param options Some optional parameters + @param onProgress Callback invoked when progression change. + @param onComplete callback, will be called after scene launched. + + @example + ```js + bundle1.loadScene('first', (err, sceneAsset) => cc.director.runScene(sceneAsset)); + ``` + */ + loadScene(sceneName: string, options: Record, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, sceneAsset: cc.SceneAsset) => void): void; + loadScene(sceneName: string, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error, sceneAsset: cc.SceneAsset) => void): void; + loadScene(sceneName: string, options: Record, onComplete: (error: Error, sceneAsset: cc.SceneAsset) => void): void; + loadScene(sceneName: string, onComplete: (error: Error, sceneAsset: cc.SceneAsset) => void): void; + loadScene(sceneName: string, options: Record): void; + loadScene(sceneName: string): void; + /** + !#en + Preloads the scene within this bundle by its name. After calling this method, you still need to finish loading by calling `Bundle.loadScene` or `cc.director.loadScene`. + It will be totally fine to call `Bundle.loadDir` at any time even if the preloading is not yet finished + + !#zh + 通过场景名称预加载分包中的场景.调用完后,你仍然需要通过 `Bundle.loadScene` 或 `cc.director.loadScene` 来完成加载。 + 就算预加载还没完成,你也可以直接调用 `Bundle.loadScene` 或 `cc.director.loadScene`。 + @param sceneName The name of the scene to preload. + @param options Some optional parameters + @param onProgress callback, will be called when the load progression change. + @param onComplete callback, will be called after scene loaded. + + @example + ```js + bundle1.preloadScene('first'); + // wait for a while + bundle1.loadScene('first', (err, scene) => cc.director.runScene(scene)); + ``` + */ + preloadScene(sceneName: string, options: Record, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error) => void): void; + preloadScene(sceneName: string, onProgress: (finish: number, total: number, item: RequestItem) => void, onComplete: (error: Error) => void): void; + preloadScene(sceneName: string, options: Record, onComplete: (error: Error) => void): void; + preloadScene(sceneName: string, onComplete: (error: Error) => void): void; + preloadScene(sceneName: string, options: Record): void; + preloadScene(sceneName: string): void; + /** + !#en + Get asset within this bundle by path and type.
+ After you load asset with {{#crossLink "Bundle/load:method"}}{{/crossLink}} or {{#crossLink "Bundle/loadDir:method"}}{{/crossLink}}, + you can acquire them by passing the path to this API. + + !#zh + 通过路径与类型获取资源。在你使用 {{#crossLink "Bundle/load:method"}}{{/crossLink}} 或者 {{#crossLink "Bundle/loadDir:method"}}{{/crossLink}} 之后, + 你能通过传路径通过这个 API 获取到这些资源。 + @param path The path of asset + @param type Only asset of type will be returned if this argument is supplied. + + @example + ```js + bundle1.get('music/hit', cc.AudioClip); + ``` + */ + get (path: string, type?: typeof cc.Asset): T; + /** + !#en + Release the asset loaded by {{#crossLink "Bundle/load:method"}}{{/crossLink}} or {{#crossLink "Bundle/loadDir:method"}}{{/crossLink}} and it's dependencies. + Refer to {{#crossLink "AssetManager/releaseAsset:method"}}{{/crossLink}} for detailed informations. + + !#zh + 释放通过 {{#crossLink "Bundle/load:method"}}{{/crossLink}} 或者 {{#crossLink "Bundle/loadDir:method"}}{{/crossLink}} 加载的资源。详细信息请参考 {{#crossLink "AssetManager/releaseAsset:method"}}{{/crossLink}} + @param path The path of asset + @param type Only asset of type will be released if this argument is supplied. + + @example + ```js + // release a texture which is no longer need + bundle1.release('misc/character/cocos'); + ``` + */ + release(path: string, type: typeof cc.Asset): void; + release(path: string): void; + /** + !#en + Release all assets within this bundle. Refer to {{#crossLink "AssetManager/releaseAll:method"}}{{/crossLink}} for detailed informations. + + !#zh + 释放此包中的所有资源。详细信息请参考 {{#crossLink "AssetManager/releaseAll:method"}}{{/crossLink}} + + @example + ```js + // release all asset within bundle1 + bundle1.releaseAll(); + ``` + */ + releaseAll(): void; + } + /** !#en + Cache manager is a module which controls all caches downloaded from server in non-web platform, it is a singleton + All member can be accessed with `cc.assetManager.cacheManager`. + + !#zh + 缓存管理器是一个模块,在非 WEB 平台上,用于管理所有从服务器上下载下来的缓存,这是一个单例,所有成员能通过 `cc.assetManager.cacheManager` 访问。 */ + export class CacheManager { + /** !#en + The name of cacheDir + + !#zh + 缓存目录的名称 */ + cacheDir: string; + /** !#en + Whether or not cache asset into user's storage space, this property only works on mini-game platforms + + !#zh + 是否缓存资源到用户存储空间,此属性只在小游戏平台有效 */ + cacheEnabled: boolean; + /** !#en + Whether or not auto clear cache when storage ran out, this property only works on mini-game platforms + + !#zh + 是否在存储空间满了后自动清理缓存,此属性只在小游戏平台有效 */ + autoClear: boolean; + /** !#en + The interval between caching resources, this property only works on mini-game platforms, unit: ms + + !#zh + 缓存资源的间隔时间,此属性只在小游戏平台有效,单位:ms */ + cacheInterval: number; + /** !#en + The interval between deleting resources, when you use `cleanLRU`, the resources will be deleted as this interval, unit: ms + + !#zh + 清理资源的间隔时间,当你使用 `cleanLRU` 时,资源将以此间隔被删除,单位:ms */ + deleteInterval: number; + /** !#en + List of all cached files + + !#zh + 所有缓存文件列表 */ + cachedFiles: Cache<{ bundle: string, url: string, lastTime: number }>; + /** + !#en + Get cached path with origin url + + !#zh + 通过原始 url 获取缓存后的路径 + @param originUrl originUrl + */ + getCache(originUrl: string): string; + /** + !#en + Get temporary path with origin url, this method only works on mini-game platforms + + !#zh + 通过原始 url 获取临时文件的路径,此方法只在小游戏平台有效 + @param originUrl originUrl + */ + getTemp(originUrl: string): string; + /** + !#en + Clear all caches, please use with caution, If necessary, we recommend using it before the game is launched + + !#zh + 清空所有缓存,请谨慎使用,如果必要的话,我们建议在游戏启动之前使用 + */ + clearCache(): void; + /** + !#en + Clear part of caches with LRU strategy + + !#zh + 使用 LRU 策略清空部分缓存 + */ + clearLRU(): void; + /** + !#en + Remove cache with origin url + + !#zh + 通过原始 url 移除缓存 + */ + removeCache(): void; + } + /** !#en + use to cache something + + !#zh + 用于缓存某些内容 */ + export class Cache { + /** + !#en + Create a cache + + !#zh + 创建一个 cache + @param map An object used to initialize + */ + constructor(map?: Record); + /** + !#en + Add Key-Value to cache + + !#zh + 增加键值对到缓存中 + @param key The key + @param val The value + + @example + ```js + var cache = new Cache(); + cache.add('test', null); + ``` + */ + add(key: string, val: T): T; + /** + !#en + Get the cached content by key + + !#zh + 通过 key 获取对应的 value + @param key The key + + @example + ```js + var cache = new Cache(); + var test = cache.get('test'); + ``` + */ + get(key: string): T; + /** + !#en + Check whether or not content exists by key + + !#zh + 通过 Key 判断是否存在对应的内容 + @param key The key + + @example + ```js + var cache = new Cache(); + var exist = cache.has('test'); + ``` + */ + has(key: string): boolean; + /** + !#en + Remove the cached content by key + + !#zh + 通过 Key 移除对应的内容 + @param key The key + + @example + ```js + var cache = new Cache(); + var content = cache.remove('test'); + ``` + */ + remove(key: string): T; + /** + !#en + Clear all content + + !#zh + 清除所有内容 + + @example + ```js + var cache = new Cache(); + cache.clear(); + ``` + */ + clear():void; + /** + !#en + Enumerate all content and invoke function + + !#zh + 枚举所有内容并执行方法 + @param func Function to be invoked + + @example + ```js + var cache = new Cache(); + cache.forEach((val, key) => console.log(key)); + ``` + */ + forEach(func: (val: T, key: string) => void): void; + /** + !#en + Enumerate all content to find one element which can fulfill condition + + !#zh + 枚举所有内容,找到一个可以满足条件的元素 + @param predicate The condition + + @example + ```js + var cache = new Cache(); + var val = cache.find((val, key) => key === 'test'); + ``` + */ + find(predicate: (val: T, key: string) => boolean): T; + /** !#en + The count of cached content + + !#zh + 缓存数量 */ + count: number; + /** + !#en + Destroy this cache + + !#zh + 销毁这个 cache + */ + destroy(): void; + } + /** !#en + Control asset's dependency list, it is a singleton. All member can be accessed with `cc.assetManager.dependUtil` + + !#zh + 控制资源的依赖列表,这是一个单例, 所有成员能通过 `cc.assetManager.dependUtil` 访问 */ + export class DependUtil { + /** + !#en + Get asset's native dependency. For example, Texture's native dependency is image. + + !#zh + 获取资源的原生依赖,例如 Texture 的原生依赖是图片 + @param uuid asset's uuid + + @example + ```js + var dep = dependUtil.getNativeDep('fcmR3XADNLgJ1ByKhqcC5Z'); + ``` + */ + getNativeDep(uuid: string): Record; + /** + !#en + Get asset's direct referencing non-native dependency list. For example, Material's non-native dependencies are Texture. + + !#zh + 获取资源直接引用的非原生依赖列表,例如,材质的非原生依赖是 Texture + @param uuid asset's uuid + + @example + ```js + var deps = dependUtil.getDeps('fcmR3XADNLgJ1ByKhqcC5Z'); + ``` + */ + getDeps(uuid: string): string[]; + /** + !#en + Get non-native dependency list of the loaded asset, include indirect reference. + The returned array stores the dependencies with their uuid, after retrieve dependencies, + + !#zh + 获取某个已经加载好的资源的所有非原生依赖资源列表,包括间接引用的资源,并保存在数组中返回。 + 返回的数组将仅保存依赖资源的 uuid。 + @param uuid The asset's uuid + + @example + ```js + var deps = dependUtil.getDepsRecursively('fcmR3XADNLgJ1ByKhqcC5Z'); + ``` + */ + getDepsRecursively(uuid: string): string[]; + } + /** !#en + Control all download process, it is a singleton. All member can be accessed with `cc.assetManager.downloader` , it can download several types of files: + 1. Text + 2. Image + 3. Audio + 4. Assets + 5. Scripts + + !#zh + 管理所有下载过程,downloader 是个单例,所有成员能通过 `cc.assetManager.downloader` 访问,它能下载以下几种类型的文件: + 1. 文本 + 2. 图片 + 3. 音频 + 4. 资源 + 5. 脚本 */ + export class Downloader { + /** !#en + The address of remote server + + !#zh + 远程服务器地址 */ + remoteServerAddress: string; + /** !#en + The maximum number of concurrent when downloading + + !#zh + 下载时的最大并发数 */ + maxConcurrency: number; + /** !#en + The maximum number of request can be launched per frame when downloading + + !#zh + 下载时每帧可以启动的最大请求数 */ + maxRequestsPerFrame: number; + /** !#en + The max number of retries when fail + + !#zh + 失败重试次数 */ + maxRetryCount: number; + /** !#en + Wait for while before another retry, unit: ms + + !#zh + 重试的间隔时间 */ + retryInterval: number; + /** + !#en + Register custom handler if you want to change default behavior or extend downloader to download other format file + + !#zh + 当你想修改默认行为或者拓展 downloader 来下载其他格式文件时可以注册自定义的 handler + @param type Extension likes '.jpg' or map likes {'.jpg': jpgHandler, '.png': pngHandler} + @param handler handler + + @example + ```js + downloader.register('.tga', (url, options, onComplete) => onComplete(null, null)); + downloader.register({'.tga': (url, options, onComplete) => onComplete(null, null), '.ext': (url, options, onComplete) => onComplete(null, null)}); + ``` + */ + register(type: string, handler: (url: string, options: Record, onComplete: (err: Error, content: any) => void) => void): void; + register(map: Record, onComplete: (err: Error, content: any) => void) => void>): void; + /** + !#en + Use corresponding handler to download file under limitation + + !#zh + 在限制下使用对应的 handler 来下载文件 + @param url The url should be downloaded + @param type The type indicates that which handler should be used to download, such as '.jpg' + @param options some optional paramters will be transferred to the corresponding handler. + @param onComplete callback when finishing downloading + + @example + ```js + download('http://example.com/test.tga', '.tga', {onFileProgress: (loaded, total) => console.lgo(loaded/total)}, onComplete: (err) => console.log(err)); + ``` + */ + download(id: string, url: string, type: string, options: Record, onComplete: (err: Error, content: any) => void): void; + } + /** !#en + Provide some helpful function, it is a singleton. All member can be accessed with `cc.assetManager.utils` + + !#zh + 提供一些辅助方法,helper 是一个单例, 所有成员能通过 `cc.assetManager.utils` 访问 */ + export class Helper { + /** + !#en + Decode uuid, returns the original uuid + + !#zh + 解码 uuid,返回原始 uuid + @param base64 the encoded uuid + + @example + ```js + var uuid = 'fcmR3XADNLgJ1ByKhqcC5Z'; + var originalUuid = decodeUuid(uuid); // fc991dd7-0033-4b80-9d41-c8a86a702e59 + ``` + */ + decodeUuid(base64: string): string; + /** + !#en + Extract uuid from url + + !#zh + 从 url 中提取 uuid + @param url url + + @example + ```js + var url = 'assets/main/import/fc/fc991dd7-0033-4b80-9d41-c8a86a702e59.json'; + var uuid = getUuidFromURL(url); // fc991dd7-0033-4b80-9d41-c8a86a702e59 + ``` + */ + getUuidFromURL(url: string): string; + /** + !#en + Transform uuid to url + + !#zh + 转换 uuid 为 url + @param uuid The uuid of asset + @param options Some optional parameters + + @example + ```js + // json path, 'assets/main/import/fc/fc991dd7-0033-4b80-9d41-c8a86a702e59.json'; + var url = getUrlWithUuid('fcmR3XADNLgJ1ByKhqcC5Z', {isNative: false}); + + // png path, 'assets/main/native/fc/fc991dd7-0033-4b80-9d41-c8a86a702e59.png'; + var url = getUrlWithUuid('fcmR3XADNLgJ1ByKhqcC5Z', {isNative: true, nativeExt: '.png'}); + ``` + */ + getUrlWithUuid(uuid: string, options?: Record): string; + /** + !#en + Check if the type of asset is scene + + !#zh + 检查资源类型是否是场景 + @param asset asset + */ + isScene(asset: any): boolean; + /** + !#en + Normalize url, strip './' and '/' + + !#zh + 标准化 url ,去除 './' 和 '/' + @param url url + */ + normalize(url: string): string; + } + /** !#en + Handle the packed asset, include unpacking, loading, cache and so on. It is a singleton. All member can be accessed with `cc.assetManager.packManager` + + !#zh + 处理打包资源,包括拆包,加载,缓存等等,这是一个单例, 所有成员能通过 `cc.assetManager.packManager` 访问 */ + export class PackManager { + /** + !#en + Unpack the json, revert to what it was before packing + + !#zh + 拆解 json 包,恢复为打包之前的内容 + @param pack The pack + @param json The content of pack + @param options Some optional parameters + @param onComplete Callback when finish unpacking + + @example + ```js + downloader.downloadFile('pack.json', {responseType: 'json'}, null, (err, file) => { + packManager.unpackJson(['a', 'b'], file, null, (err, data) => console.log(err)); + }); + ``` + */ + unpackJson(pack: string[], json: any, options: Record, onComplete?: (err: Error, content: any) => void): void; + /** + !#en + Register custom handler if you want to change default behavior or extend packManager to unpack other format pack + + !#zh + 当你想修改默认行为或者拓展 packManager 来拆分其他格式的包时可以注册自定义的 handler + @param type Extension likes '.bin' or map likes {'.bin': binHandler, '.ab': abHandler} + @param handler handler + + @example + ```js + packManager.register('.bin', (packUuid, file, options, onComplete) => onComplete(null, null)); + packManager.register({'.bin': (packUuid, file, options, onComplete) => onComplete(null, null), '.ab': (packUuid, file, options, onComplete) => onComplete(null, null)}); + ``` + */ + register(type: string, handler: (packUuid: string, data: any, options: Record, onComplete: (err: Error, content: any) => void) => void): void; + register(map: Record, onComplete: (err: Error, content: any) => void) => void>): void; + /** + !#en + Use corresponding handler to unpack package + + !#zh + 用对应的 handler 来进行解包 + @param pack The uuid of packed assets + @param data The packed data + @param type The type indicates that which handler should be used to download, such as '.jpg' + @param options Some optional parameter + @param onComplete callback when finishing unpacking + + @example + ```js + downloader.downloadFile('pack.json', {responseType: 'json'}, null, (err, file) => { + packManager.unpack(['2fawq123d', '1zsweq23f'], file, '.json', null, (err, data) => console.log(err)); + }); + ``` + */ + unpack(pack: string[], data: any, type: string, options: Record, onComplete?: (err: Error, data: any) => void): void; + /** + !#en + Download request item, If item is not in any package, download as usual. Otherwise, download the corresponding package and unpack it. + And then retrieve the corresponding content form it. + + !#zh + 下载请求对象,如果请求对象不在任何包内,则正常下载,否则下载对应的 package 并进行拆解,并取回包内对应的内容 + @param item Some item you want to download + @param options Some optional parameters + @param onComplete Callback when finished + + @example + ```js + var requestItem = cc.AssetManager.RequestItem.create(); + requestItem.uuid = 'fcmR3XADNLgJ1ByKhqcC5Z'; + requestItem.info = config.getAssetInfo('fcmR3XADNLgJ1ByKhqcC5Z'); + packManager.load(requestItem, null, (err, data) => console.log(err)); + ``` + */ + load(item: RequestItem, options: Record, onComplete: (err: Error, data: any) => void): void; + } + /** !#en + Parse the downloaded file, it's a singleton, all member can be accessed with `cc.assetManager.parser` + + !#zh + 解析已下载的文件,parser 是一个单例, 所有成员能通过 `cc.assetManaager.parser` 访问 */ + export class Parser { + /** + !#en + Register custom handler if you want to change default behavior or extend parser to parse other format file + + !#zh + 当你想修改默认行为或者拓展 parser 来解析其他格式文件时可以注册自定义的handler + @param type Extension likes '.jpg' or map likes {'.jpg': jpgHandler, '.png': pngHandler} + @param handler The corresponding handler + + @example + ```js + parser.register('.tga', (file, options, onComplete) => onComplete(null, null)); + parser.register({'.tga': (file, options, onComplete) => onComplete(null, null), '.ext': (file, options, onComplete) => onComplete(null, null)}); + ``` + */ + register(type: string, handler: (file: any, options: Record, onComplete: (err: Error, data: any) => void) => void): void; + register(map: Record, onComplete: (err: Error, data: any) => void) => void>): void; + /** + !#en + Use corresponding handler to parse file + + !#zh + 使用对应的handler来解析文件 + @param id The id of file + @param file File + @param type The corresponding type of file, likes '.jpg'. + @param options Some optional paramters will be transferred to the corresponding handler. + @param onComplete callback when finishing downloading + + @example + ```js + downloader.downloadFile('test.jpg', {responseType: 'blob'}, null, (err, file) => { + parser.parse('test.jpg', file, '.jpg', null, (err, img) => console.log(err)); + }); + ``` + */ + parse(id: string, file: any, type: string, options: Record, onComplete: (err: Error, content: any) => void): void; + } + /** !#en + Pipeline can execute the task for some effect. + + !#zh + 管线能执行任务达到某个效果 */ + export class Pipeline { + /** !#en + The id of pipeline + + !#zh + 管线的 id */ + id: number; + /** !#en + The name of pipeline + + !#zh + 管线的名字 */ + name: string; + /** !#en + All pipes of pipeline + + !#zh + 所有的管道 */ + pipes: Function[]; + /** + !#en + Create a new pipeline + + !#zh + 创建一个管线 + @param name The name of pipeline + @param funcs The array of pipe, every pipe must be function which take two parameters, the first is a `Task` flowed in pipeline, the second is complete callback + + @example + ```js + var pipeline = new Pipeline('download', [ + (task, done) => { + var url = task.input; + cc.assetManager.downloader.downloadFile(url, null, null, (err, result) => { + task.output = result; + done(err); + }); + }, + (task, done) => { + var text = task.input; + var json = JSON.stringify(text); + task.output = json; + done(); + } + ]); + ``` + */ + constructor(name: string, funcs: Array<(task: Task, done?: (err: Error) => void) => void>); + /** + !#en + At specific point insert a new pipe to pipeline + + !#zh + 在某个特定的点为管线插入一个新的 pipe + @param func The new pipe + @param index The specific point you want to insert at. + + @example + ```js + var pipeline = new Pipeline('test', []); + pipeline.insert((task, done) => { + // do something + done(); + }, 0); + ``` + */ + insert(func: (task: Task, callback?: (err: Error) => void) => void, index: number): Pipeline; + /** + !#en + Append a new pipe to the pipeline + + !#zh + 添加一个管道到管线中 + @param func The new pipe + + @example + ```js + var pipeline = new Pipeline('test', []); + pipeline.append((task, done) => { + // do something + done(); + }); + ``` + */ + append(func: (task: Task, callback?: (err: Error) => void) => void): Pipeline; + /** + !#en + Remove pipe which at specific point + + !#zh + 移除特定位置的管道 + @param index The specific point + + @example + ```js + var pipeline = new Pipeline('test', (task, done) => { + // do something + done(); + }); + pipeline.remove(0); + ``` + */ + remove(index: number): Pipeline; + /** + !#en + Execute task synchronously + + !#zh + 同步执行任务 + @param task The task will be executed + + @example + ```js + var pipeline = new Pipeline('sync', [(task) => { + let input = task.input; + task.output = doSomething(task.input); + }]); + + var task = new Task({input: 'test'}); + console.log(pipeline.sync(task)); + ``` + */ + sync(task: Task): any; + /** + !#en + Execute task asynchronously + + !#zh + 异步执行任务 + @param task The task will be executed + + @example + ```js + var pipeline = new Pipeline('sync', [(task, done) => { + let input = task.input; + task.output = doSomething(task.input); + done(); + }]); + var task = new Task({input: 'test', onComplete: (err, result) => console.log(result)}); + pipeline.async(task); + ``` + */ + async(task: Task): void; + } + /** !#en + A collection of information about a request + + !#zh + 请求的相关信息集合 */ + export class RequestItem { + /** !#en + The uuid of request + + !#zh + 请求资源的uuid */ + uuid: string; + /** !#en + The final url of request + + !#zh + 请求的最终url */ + url: string; + /** !#en + The extension name of asset + + !#zh + 资源的扩展名 */ + ext: string; + /** !#en + The content of asset + + !#zh + 资源的内容 */ + content: any; + /** !#en + The file of asset + + !#zh + 资源的文件 */ + file: any; + /** !#en + The information of asset + + !#zh + 资源的相关信息 */ + info: any; + /** !#en + Whether or not it is native asset + + !#zh + 资源是否是原生资源 */ + isNative: boolean; + /** !#en + Custom options + + !#zh + 自定义参数 */ + options: any; + /** + !#en + Create a request item + + !#zh + 创建一个 request item + */ + constructor(); + /** !#en + The id of request, combined from uuid and isNative + + !#zh + 请求的 id, 由 uuid 和 isNative 组合而成 */ + id: string; + /** + !#en + Recycle this for reuse + + !#zh + 回收 requestItem 用于复用 + */ + recycle(): void; + /** + !#en + Create a new request item from pool + + !#zh + 从对象池中创建 requestItem + */ + static create(): RequestItem; + } + /** !#en + Task is used to run in the pipeline for some effect + + !#zh + 任务用于在管线中运行以达成某种效果 */ + export class Task { + /** !#en + The id of task + + !#zh + 任务id */ + id: number; + /** !#en + The callback when task is completed + + !#zh + 完成回调 */ + onComplete: Function; + /** !#en + The callback of progression + + !#zh + 进度回调 */ + onProgress: Function; + /** !#en + The callback when something goes wrong + + !#zh + 错误回调 */ + onError: Function; + /** !#en + The source of task + + !#zh + 任务的源 */ + source: any; + /** !#en + The output of task + + !#zh + 任务的输出 */ + output: any; + /** !#en + The input of task + + !#zh + 任务的输入 */ + input: any; + /** !#en + The progression of task + + !#zh + 任务的进度 */ + progress: any; + /** !#en + Custom options + + !#zh + 自定义参数 */ + options: any; + /** + !#en + Create a new Task + + !#zh + 创建一个任务 + @param options Some optional paramters + */ + constructor(options?: {onComplete?: (err: Error, result: any) => void, onError?: () => void, onProgress?: Function, input: any, progress?: any, options?: Record}); + /** + !#en + Set paramters of this task + + !#zh + 设置任务的参数 + @param options Some optional paramters + + @example + ```js + var task = new Task(); + task.set({input: ['test'], onComplete: (err, result) => console.log(err), onProgress: (finish, total) => console.log(finish / total)}); + ``` + */ + set(options?: {onComplete?: (err: Error, result: any) => void, onError?: () => void, onProgress?: Function, input: any, progress?: any, options?: Record}): void; + /** + !#en + Dispatch event + + !#zh + 发布事件 + @param event The event name + @param param1 Parameter 1 + @param param2 Parameter 2 + @param param3 Parameter 3 + @param param4 Parameter 4 + + @example + ```js + var task = Task.create(); + Task.onComplete = (msg) => console.log(msg); + Task.dispatch('complete', 'hello world'); + ``` + */ + dispatch(event: string, param1?: any, param2?: any, param3?: any, param4?: any): void; + /** + !#en + Recycle this for reuse + + !#zh + 回收 task 用于复用 + */ + recycle(): void; + /** !#en + Whether or not this task is completed + + !#zh + 此任务是否已经完成 */ + isFinish: boolean; + /** + !#en + Create a new task from pool + + !#zh + 从对象池中创建 task + @param options Some optional paramters + */ + static create(options?: {onComplete?: (err: Error, result: any) => void, onError?: () => void, onProgress?: Function, input: any, progress?: any, options?: Record}): Task; + } + /** !#en + The builtin bundles + + !#zh + 内置 bundle */ + export enum BuiltinBundleName { + RESOURCES = 0, + INTERNAL = 0, + MAIN = 0, + START_SCENE = 0, + } +} + +/** Some helpful utilities */ +declare namespace cc.geomUtils { + /** + !#en + the distance between a point and a plane + !#zh + 计算点和平面之间的距离。 + @param point point + @param plane plane + */ + export function point_plane(point: cc.Vec3, plane: cc.Plane): number; + /** + !#en + the closest point on plane to a given point + !#zh + 计算平面上最接近给定点的点。 + @param out Closest point + @param point Given point + @param plane plane + */ + export function pt_point_plane(out: cc.Vec3, point: cc.Vec3, plane: cc.Plane): cc.Vec3; + /** + !#en + the closest point on aabb to a given point + !#zh + 计算 aabb 上最接近给定点的点。 + @param out Closest point. + @param point Given point. + @param aabb Align the axis around the box. + */ + export function pt_point_aabb(out: cc.Vec3, point: cc.Vec3, aabb: cc.Aabb): cc.Vec3; + /** + !#en + the closest point on obb to a given point + !#zh + 计算 obb 上最接近给定点的点。 + @param out Closest point + @param point Given point + @param obb Direction box + */ + export function pt_point_obb(out: cc.Vec3, point: cc.Vec3, obb: cc.Obb): cc.Vec3; +} + +/** !#en Some JavaScript decorators which can be accessed with "cc._decorator". +!#zh 一些 JavaScript 装饰器,目前可以通过 "cc._decorator" 来访问。 +(这些 API 仍不完全稳定,有可能随着 JavaScript 装饰器的标准实现而调整) */ +declare namespace cc._decorator { + /** + !#en + Declare the standard [ES6 Class](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes) + as CCClass, please see [Class](../../../manual/en/scripting/class.html) for details. + !#zh + 将标准写法的 [ES6 Class](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes) 声明为 CCClass,具体用法请参阅[类型定义](../../../manual/zh/scripting/class.html)。 + @param name The class name used for serialization. + + @example + ```js + const {ccclass} = cc._decorator; + + // define a CCClass, omit the name + @ccclass + class NewScript extends cc.Component { + // ... + } + + // define a CCClass with a name + @ccclass('LoginData') + class LoginData { + // ... + } + ``` + */ + export function ccclass(name?: string): Function; + export function ccclass(_class?: Function): void; + /** + !#en + Declare property for [CCClass](../../../manual/en/scripting/reference/attributes.html). + !#zh + 定义 [CCClass](../../../manual/zh/scripting/reference/attributes.html) 所用的属性。 + @param options an object with some property attributes + + @example + ```js + const {ccclass, property} = cc._decorator; + + @ccclass + class NewScript extends cc.Component { + @property({ + type: cc.Node + }) + targetNode1 = null; + + @property(cc.Node) + targetNode2 = null; + + @property(cc.Button) + targetButton = null; + + @property + _width = 100; + + @property + get width () { + return this._width; + } + + @property + set width (value) { + this._width = value; + } + + @property + offset = new cc.Vec2(100, 100); + + @property(cc.Vec2) + offsets = []; + + @property(cc.SpriteFrame) + frame = null; + } + + // above is equivalent to (上面的代码相当于): + + var NewScript = cc.Class({ + properties: { + targetNode1: { + default: null, + type: cc.Node + }, + + targetNode2: { + default: null, + type: cc.Node + }, + + targetButton: { + default: null, + type: cc.Button + }, + + _width: 100, + + width: { + get () { + return this._width; + }, + set (value) { + this._width = value; + } + }, + + offset: new cc.Vec2(100, 100) + + offsets: { + default: [], + type: cc.Vec2 + } + + frame: { + default: null, + type: cc.SpriteFrame + }, + } + }); + ``` + */ + export function property(options?: {type?: any; visible?: boolean|(() => boolean); displayName?: string; tooltip?: string; multiline?: boolean; readonly?: boolean; min?: number; max?: number; step?: number; range?: number[]; slide?: boolean; serializable?: boolean; formerlySerializedAs?: string; editorOnly?: boolean; override?: boolean; animatable?: boolean} | any[]|Function|cc.ValueType|number|string|boolean): Function; + export function property(_target: Object, _key: any, _desc?: any): void; + /** + !#en + Makes a CCClass that inherit from component execute in edit mode.
+ By default, all components are only executed in play mode, + which means they will not have their callback functions executed while the Editor is in edit mode. + !#zh + 允许继承自 Component 的 CCClass 在编辑器里执行。
+ 默认情况下,所有 Component 都只会在运行时才会执行,也就是说它们的生命周期回调不会在编辑器里触发。 + + @example + ```js + const {ccclass, executeInEditMode} = cc._decorator; + + @ccclass + @executeInEditMode + class NewScript extends cc.Component { + // ... + } + ``` + */ + export function executeInEditMode(): Function; + export function executeInEditMode(_class: Function): void; + /** + !#en + Automatically add required component as a dependency for the CCClass that inherit from component. + !#zh + 为声明为 CCClass 的组件添加依赖的其它组件。当组件添加到节点上时,如果依赖的组件不存在,引擎将会自动将依赖组件添加到同一个节点,防止脚本出错。该设置在运行时同样有效。 + @param requiredComponent requiredComponent + + @example + ```js + const {ccclass, requireComponent} = cc._decorator; + + @ccclass + @requireComponent(cc.Sprite) + class SpriteCtrl extends cc.Component { + // ... + } + ``` + */ + export function requireComponent(requiredComponent: typeof cc.Component): Function; + /** + !#en + The menu path to register a component to the editors "Component" menu. Eg. "Rendering/CameraCtrl". + !#zh + 将当前组件添加到组件菜单中,方便用户查找。例如 "Rendering/CameraCtrl"。 + @param path The path is the menu represented like a pathname. + For example the menu could be "Rendering/CameraCtrl". + + @example + ```js + const {ccclass, menu} = cc._decorator; + + @ccclass + @menu("Rendering/CameraCtrl") + class NewScript extends cc.Component { + // ... + } + ``` + */ + export function menu(path: string): Function; + /** + !#en + The execution order of lifecycle methods for Component. + Those less than 0 will execute before while those greater than 0 will execute after. + The order will only affect onLoad, onEnable, start, update and lateUpdate while onDisable and onDestroy will not be affected. + !#zh + 设置脚本生命周期方法调用的优先级。优先级小于 0 的组件将会优先执行,优先级大于 0 的组件将会延后执行。优先级仅会影响 onLoad, onEnable, start, update 和 lateUpdate,而 onDisable 和 onDestroy 不受影响。 + @param order The execution order of lifecycle methods for Component. Those less than 0 will execute before while those greater than 0 will execute after. + + @example + ```js + const {ccclass, executionOrder} = cc._decorator; + + @ccclass + @executionOrder(1) + class CameraCtrl extends cc.Component { + // ... + } + ``` + */ + export function executionOrder(order: number): Function; + /** + !#en + Prevents Component of the same type (or subtype) to be added more than once to a Node. + !#zh + 防止多个相同类型(或子类型)的组件被添加到同一个节点。 + + @example + ```js + const {ccclass, disallowMultiple} = cc._decorator; + + @ccclass + @disallowMultiple + class CameraCtrl extends cc.Component { + // ... + } + ``` + */ + export function disallowMultiple(): Function; + export function disallowMultiple(_class: Function): void; + /** + !#en + If specified, the editor's scene view will keep updating this node in 60 fps when it is selected, otherwise, it will update only if necessary.
+ This property is only available if executeInEditMode is true. + !#zh + 当指定了 "executeInEditMode" 以后,playOnFocus 可以在选中当前组件所在的节点时,提高编辑器的场景刷新频率到 60 FPS,否则场景就只会在必要的时候进行重绘。 + + @example + ```js + const {ccclass, playOnFocus, executeInEditMode} = cc._decorator; + + @ccclass + @executeInEditMode + @playOnFocus + class CameraCtrl extends cc.Component { + // ... + } + ``` + */ + export function playOnFocus(): Function; + export function playOnFocus(_class: Function): void; + /** + !#en + Specifying the url of the custom html to draw the component in **Properties**. + !#zh + 自定义当前组件在 **属性检查器** 中渲染时所用的网页 url。 + @param url url + + @example + ```js + const {ccclass, inspector} = cc._decorator; + + @ccclass + @inspector("packages://inspector/inspectors/comps/camera-ctrl.js") + class NewScript extends cc.Component { + // ... + } + ``` + */ + export function inspector(path: string): Function; + /** + !#en + The custom documentation URL. + !#zh + 指定当前组件的帮助文档的 url,设置过后,在 **属性检查器** 中就会出现一个帮助图标,用户点击将打开指定的网页。 + @param url url + + @example + ```js + const {ccclass, help} = cc._decorator; + + @ccclass + @help("app://docs/html/components/spine.html") + class NewScript extends cc.Component { + // ... + } + ``` + */ + export function help(path: string): Function; + /** + NOTE:
+ The old mixins implemented in cc.Class(ES5) behaves exact the same as multiple inheritance. + But since ES6, class constructor can't be function-called and class methods become non-enumerable, + so we can not mix in ES6 Classes.
+ See:
+ [https://esdiscuss.org/topic/traits-are-now-impossible-in-es6-until-es7-since-rev32](https://esdiscuss.org/topic/traits-are-now-impossible-in-es6-until-es7-since-rev32)
+ One possible solution (but IDE unfriendly):
+ [http://justinfagnani.com/2015/12/21/real-mixins-with-javascript-classes](http://justinfagnani.com/2015/12/21/real-mixins-with-javascript-classes/)
+
+ NOTE:
+ You must manually call mixins constructor, this is different from cc.Class(ES5). + @param ctor constructors to mix, only support ES5 constructors or classes defined by using `cc.Class`, + not support ES6 Classes. + + @example + ```js + const {ccclass, mixins} = cc._decorator; + + class Animal { ... } + + const Fly = cc.Class({ + constructor () { ... } + }); + + @ccclass + @mixins(cc.EventTarget, Fly) + class Bird extends Animal { + constructor () { + super(); + + // You must manually call mixins constructor, this is different from cc.Class(ES5) + cc.EventTarget.call(this); + Fly.call(this); + } + // ... + } + ``` + */ + export function mixins(ctor: Function, ...rest: Function[]): Function; +} + +/** !#en This module provides some JavaScript utilities. All members can be accessed with `cc.js`. +!#zh 这个模块封装了 JavaScript 相关的一些实用函数,你可以通过 `cc.js` 来访问这个模块。 */ +declare namespace cc.js { + /** + Check the obj whether is number or not + If a number is created by using 'new Number(10086)', the typeof it will be "object"... + Then you can use this function if you care about this case. + @param obj obj + */ + export function isNumber(obj: any): boolean; + /** + Check the obj whether is string or not. + If a string is created by using 'new String("blabla")', the typeof it will be "object"... + Then you can use this function if you care about this case. + @param obj obj + */ + export function isString(obj: any): boolean; + /** + Copy all properties not defined in obj from arguments[1...n] + @param obj object to extend its properties + @param sourceObj source object to copy properties from + */ + export function addon(obj: any, ...sourceObj: any[]): any; + /** + copy all properties from arguments[1...n] to obj + @param obj obj + @param sourceObj sourceObj + */ + export function mixin(obj: any, ...sourceObj: any[]): any; + /** + Derive the class from the supplied base class. + Both classes are just native javascript constructors, not created by cc.Class, so + usually you will want to inherit using {{#crossLink "cc/Class:method"}}cc.Class {{/crossLink}} instead. + @param cls cls + @param base the baseclass to inherit + */ + export function extend(cls: Function, base: Function): Function; + /** + Get super class + @param ctor the constructor of subclass + */ + export function getSuper(ctor: Function): Function; + /** + Checks whether subclass is child of superclass or equals to superclass + @param subclass subclass + @param superclass superclass + */ + export function isChildClassOf(subclass: Function, superclass: Function): boolean; + /** + Removes all enumerable properties from object + @param obj obj + */ + export function clear(obj: any): void; + /** + Checks whether obj is an empty object + @param obj obj + */ + export function isEmptyObject(obj: any): boolean; + /** + Get property descriptor in object and all its ancestors + @param obj obj + @param name name + */ + export function getPropertyDescriptor(obj: any, name: string): any; + /** + Define value, just help to call Object.defineProperty.
+ The configurable will be true. + @param obj obj + @param prop prop + @param value value + @param writable writable + @param enumerable enumerable + */ + export function value(obj: any, prop: string, value: any, writable?: boolean, enumerable?: boolean): void; + /** + Define get set accessor, just help to call Object.defineProperty(...) + @param obj obj + @param prop prop + @param getter getter + @param setter setter + @param enumerable enumerable + @param configurable configurable + */ + export function getset(obj: any, prop: string, getter: Function, setter?: Function, enumerable?: boolean, configurable?: boolean): void; + /** + Define get accessor, just help to call Object.defineProperty(...) + @param obj obj + @param prop prop + @param getter getter + @param enumerable enumerable + @param configurable configurable + */ + export function get(obj: any, prop: string, getter: Function, enumerable?: boolean, configurable?: boolean): void; + /** + Define set accessor, just help to call Object.defineProperty(...) + @param obj obj + @param prop prop + @param setter setter + @param enumerable enumerable + @param configurable configurable + */ + export function set(obj: any, prop: string, setter: Function, enumerable?: boolean, configurable?: boolean): void; + /** + Get class name of the object, if object is just a {} (and which class named 'Object'), it will return "". + (modified from the code from this stackoverflow post) + @param objOrCtor instance or constructor + */ + export function getClassName(objOrCtor: any|Function): string; + /** !#en All classes registered in the engine, indexed by ID. + !#zh 引擎中已注册的所有类型,通过 ID 进行索引。 */ + export var _registeredClassIds: any; + /** !#en All classes registered in the engine, indexed by name. + !#zh 引擎中已注册的所有类型,通过名称进行索引。 */ + export var _registeredClassNames: any; + /** + Register the class by specified name manually + @param className className + @param constructor constructor + */ + export function setClassName(className: string, constructor: Function): void; + /** + Unregister a class from fireball. + + If you dont need a registered class anymore, you should unregister the class so that Fireball will not keep its reference anymore. + Please note that its still your responsibility to free other references to the class. + @param constructor the class you will want to unregister, any number of classes can be added + */ + export function unregisterClass(...constructor: Function[]): void; + /** + Get the registered class by name + @param classname classname + */ + export function getClassByName(classname: string): Function; + /** + Defines a polyfill field for deprecated codes. + @param obj YourObject or YourClass.prototype + @param obsoleted "OldParam" or "YourClass.OldParam" + @param newExpr "NewParam" or "YourClass.NewParam" + @param writable writable + */ + export function obsolete(obj: any, obsoleted: string, newExpr: string, writable?: boolean): void; + /** + Defines all polyfill fields for obsoleted codes corresponding to the enumerable properties of props. + @param obj YourObject or YourClass.prototype + @param objName "YourObject" or "YourClass" + @param props props + @param writable writable + */ + export function obsoletes(obj: any, objName: any, props: any, writable?: boolean): void; + /** + A string tool to construct a string with format string. + @param msg A JavaScript string containing zero or more substitution strings (%s). + @param subst JavaScript objects with which to replace substitution strings within msg. This gives you additional control over the format of the output. + + @example + ```js + cc.js.formatStr("a: %s, b: %s", a, b); + cc.js.formatStr(a, b, c); + ``` + */ + export function formatStr(msg: string|any, ...subst: any[]): string; + /** + !#en + A simple wrapper of `Object.create(null)` which ensures the return object have no prototype (and thus no inherited members). So we can skip `hasOwnProperty` calls on property lookups. It is a worthwhile optimization than the `{}` literal when `hasOwnProperty` calls are necessary. + !#zh + 该方法是对 `Object.create(null)` 的简单封装。`Object.create(null)` 用于创建无 prototype (也就无继承)的空对象。这样我们在该对象上查找属性时,就不用进行 `hasOwnProperty` 判断。在需要频繁判断 `hasOwnProperty` 时,使用这个方法性能会比 `{}` 更高。 + @param forceDictMode Apply the delete operator to newly created map object. This causes V8 to put the object in "dictionary mode" and disables creation of hidden classes which are very expensive for objects that are constantly changing shape. + */ + export function createMap(forceDictMode?: boolean): any; + /** undefined */ + export class array { + /** + Removes the array item at the specified index. + @param array array + @param index index + */ + static removeAt(array: any[], index: number): void; + /** + Removes the array item at the specified index. + It's faster but the order of the array will be changed. + @param array array + @param index index + */ + static fastRemoveAt(array: any[], index: number): void; + /** + Removes the first occurrence of a specific object from the array. + @param array array + @param value value + */ + static remove(array: any[], value: any): boolean; + /** + Removes the first occurrence of a specific object from the array. + It's faster but the order of the array will be changed. + @param array array + @param value value + */ + static fastRemove(array: any[], value: number): void; + /** + Verify array's Type + @param array array + @param type type + */ + static verifyType(array: any[], type: Function): boolean; + /** + Removes from array all values in minusArr. For each Value in minusArr, the first matching instance in array will be removed. + @param array Source Array + @param minusArr minus Array + */ + static removeArray(array: any[], minusArr: any[]): void; + /** + Inserts some objects at index + @param array array + @param addObjs addObjs + @param index index + */ + static appendObjectsAt(array: any[], addObjs: any[], index: number): any[]; + /** + Determines whether the array contains a specific value. + @param array array + @param value value + */ + static contains(array: any[], value: any): boolean; + /** + Copy an array's item to a new array (its performance is better than Array.slice) + @param array array + */ + static copy(array: any[]): any[]; + } + /** !#en + A fixed-length object pool designed for general type.
+ The implementation of this object pool is very simple, + it can helps you to improve your game performance for objects which need frequent release and recreate operations
+ !#zh + 长度固定的对象缓存池,可以用来缓存各种对象类型。
+ 这个对象池的实现非常精简,它可以帮助您提高游戏性能,适用于优化对象的反复创建和销毁。 */ + export class Pool { + /** + !#en + Constructor for creating an object pool for the specific object type. + You can pass a callback argument for process the cleanup logic when the object is recycled. + !#zh + 使用构造函数来创建一个指定对象类型的对象池,您可以传递一个回调函数,用于处理对象回收时的清理逻辑。 + @param cleanupFunc the callback method used to process the cleanup logic when the object is recycled. + @param size initializes the length of the array + */ + constructor(cleanupFunc: (obj: any) => void, size: number); + constructor(size: number); + /** + !#en + Get and initialize an object from pool. This method defaults to null and requires the user to implement it. + !#zh + 获取并初始化对象池中的对象。这个方法默认为空,需要用户自己实现。 + @param params parameters to used to initialize the object + */ + get(...params: any[]): any; + /** !#en + The current number of available objects, the default is 0, it will gradually increase with the recycle of the object, + the maximum will not exceed the size specified when the constructor is called. + !#zh + 当前可用对象数量,一开始默认是 0,随着对象的回收会逐渐增大,最大不会超过调用构造函数时指定的 size。 */ + count: number; + /** + !#en + Get an object from pool, if no available object in the pool, null will be returned. + !#zh + 获取对象池中的对象,如果对象池没有可用对象,则返回空。 + */ + _get(): any; + /** + !#en Put an object into the pool. + !#zh 向对象池返还一个不再需要的对象。 + */ + put(): void; + /** + !#en Resize the pool. + !#zh 设置对象池容量。 + */ + resize(): void; + } +} + +/** !#en A basic module for creating vertex data for 3D objects. You can access this module by `cc.primitive`. +!#zh 一个创建 3D 物体顶点数据的基础模块,你可以通过 `cc.primitive` 来访问这个模块。 */ +declare namespace cc.primitive { + /** + !#en Create box vertex data + !#zh 创建长方体顶点数据 + @param width width + @param height height + @param length length + @param opts opts + */ + export function box(width: number, height: number, length: number, opts: {widthSegments: number; heightSegments: number; lengthSegments: number; }): cc.VertexData; + /** + !#en Create cone vertex data + !#zh 创建圆锥体顶点数据 + @param radius radius + @param height height + @param opts opts + */ + export function cone(radius: number, height: number, opts: {radialSegments: number; heightSegments: number; capped: boolean; arc: number; }): cc.VertexData; + /** + !#en Create cylinder vertex data + !#zh 创建圆柱体顶点数据 + @param radiusTop radiusTop + @param radiusBottom radiusBottom + @param height height + @param opts opts + */ + export function cylinder(radiusTop: number, radiusBottom: number, height: number, opts: {radialSegments: number; heightSegments: number; capped: boolean; arc: number; }): cc.VertexData; + /** + !#en Create plane vertex data + !#zh 创建平台顶点数据 + @param width width + @param length length + @param opts opts + */ + export function plane(width: number, length: number, opts: {widthSegments: number; lengthSegments: number; }): cc.VertexData; + /** + !#en Create quad vertex data + !#zh 创建面片顶点数据 + */ + export function quad(): cc.VertexData; + /** + !#en Create sphere vertex data + !#zh 创建球体顶点数据 + @param radius radius + @param opts opts + */ + export function sphere(radius: number, opts: {segments: number; }): cc.VertexData; + /** + !#en Create torus vertex data + !#zh 创建圆环顶点数据 + @param radius radius + @param tube tube + @param opts opts + */ + export function torus(radius: number, tube: number, opts: {radialSegments: number; tubularSegments: number; arc: number; }): cc.VertexData; + /** + !#en Create capsule vertex data + !#zh 创建胶囊体顶点数据 + @param radiusTop radiusTop + @param radiusBottom radiusBottom + @param height height + @param opts opts + */ + export function capsule(radiusTop: number, radiusBottom: number, height: number, opts: {sides: number; heightSegments: number; capped: boolean; arc: number; }): cc.VertexData; + /** + !#en Create polyhedron vertex data + !#zh 创建多面体顶点数据 + @param type type + @param Size Size + @param opts opts + */ + export function polyhedron(type: cc.primitive.PolyhedronType, Size: number, opts: {sizeX: number; sizeY: number; sizeZ: number; }): cc.VertexData; +} + +declare let CC_JSB: boolean +declare let CC_NATIVERENDERER: boolean +declare let CC_EDITOR: boolean +declare let CC_PREVIEW: boolean +declare let CC_TEST: boolean +declare let CC_DEBUG: boolean + +declare let cc: { + // polyfills: { + // destroyObject? (object: any): void; + // }; + [x: string]: any; +} + +declare let Editor: any; + +// https://medium.com/dailyjs/typescript-create-a-condition-based-subset-types-9d902cea5b8c +type FlagExcludedType = { [Key in keyof Base]: Base[Key] extends Type ? never : Key }; +type AllowedNames = FlagExcludedType[keyof Base]; +type KeyPartial = { [P in K]?: T[P] }; +type OmitType = KeyPartial>; +type ConstructorType = OmitType; + +declare interface IWritableArrayLike { + readonly length: number; + [index: number]: T; +} + +declare let module: { + exports: object +} + + +declare interface Math { + sign(v: number); +} + +declare interface Object { + assign(target: {}, source: {}); +} + + +type FloatArray = Float64Array | Float32Array; + +interface IColorLike { + r: number; + g: number; + b: number; + a: number; + _val: number; + +} + +interface IMat3Like { + m: FloatArray +} + +interface IMat4Like { + m: FloatArray +} + +interface IQuatLike { + x: number; + y: number; + z: number; + w: number; +} + +interface IRectLike { + x: number; + y: number; + width: number; + height: number; +} + +interface ISizeLike { + width: number; + height: number; +} + +interface IVec2Like { + x: number; + y: number; +} + +interface IVec3Like { + x: number; + y: number; + z: number; +} + +interface IVec4Like { + x: number; + y: number; + z: number; + w: number; +} +declare namespace dragonBones { + /** + * @internal + * @private + */ + const webAssemblyModule: { + HEAP16: Int16Array; + _malloc(byteSize: number): number; + _free(pointer: number): void; + setDataBinary(data: DragonBonesData, binaryPointer: number, intBytesLength: number, floatBytesLength: number, frameIntBytesLength: number, frameFloatBytesLength: number, frameBytesLength: number, timelineBytesLength: number): void; + }; +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + const enum BinaryOffset { + WeigthBoneCount = 0, + WeigthFloatOffset = 1, + WeigthBoneIndices = 2, + MeshVertexCount = 0, + MeshTriangleCount = 1, + MeshFloatOffset = 2, + MeshWeightOffset = 3, + MeshVertexIndices = 4, + TimelineScale = 0, + TimelineOffset = 1, + TimelineKeyFrameCount = 2, + TimelineFrameValueCount = 3, + TimelineFrameValueOffset = 4, + TimelineFrameOffset = 5, + FramePosition = 0, + FrameTweenType = 1, + FrameTweenEasingOrCurveSampleCount = 2, + FrameCurveSamples = 3, + DeformMeshOffset = 0, + DeformCount = 1, + DeformValueCount = 2, + DeformValueOffset = 3, + DeformFloatOffset = 4, + } + /** + * @internal + * @private + */ + const enum ArmatureType { + Armature = 0, + MovieClip = 1, + Stage = 2, + } + /** + * @internal + * @private + */ + const enum BoneType { + Bone = 0, + Surface = 1, + } + /** + * @private + */ + const enum DisplayType { + Image = 0, + Armature = 1, + Mesh = 2, + BoundingBox = 3, + } + /** + * - Bounding box type. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 边界框类型。 + * @version DragonBones 5.0 + * @language zh_CN + */ + const enum BoundingBoxType { + Rectangle = 0, + Ellipse = 1, + Polygon = 2, + } + /** + * @internal + * @private + */ + const enum ActionType { + Play = 0, + Frame = 10, + Sound = 11, + } + /** + * @internal + * @private + */ + const enum BlendMode { + Normal = 0, + Add = 1, + Alpha = 2, + Darken = 3, + Difference = 4, + Erase = 5, + HardLight = 6, + Invert = 7, + Layer = 8, + Lighten = 9, + Multiply = 10, + Overlay = 11, + Screen = 12, + Subtract = 13, + } + /** + * @internal + * @private + */ + const enum TweenType { + None = 0, + Line = 1, + Curve = 2, + QuadIn = 3, + QuadOut = 4, + QuadInOut = 5, + } + /** + * @internal + * @private + */ + const enum TimelineType { + Action = 0, + ZOrder = 1, + BoneAll = 10, + BoneTranslate = 11, + BoneRotate = 12, + BoneScale = 13, + Surface = 50, + SlotDisplay = 20, + SlotColor = 21, + SlotFFD = 22, + IKConstraint = 30, + AnimationTime = 40, + AnimationWeight = 41, + } + /** + * - Offset mode. + * @version DragonBones 5.5 + * @language en_US + */ + /** + * - 偏移模式。 + * @version DragonBones 5.5 + * @language zh_CN + */ + const enum OffsetMode { + None = 0, + Additive = 1, + Override = 2, + } + /** + * - Animation fade out mode. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画淡出模式。 + * @version DragonBones 4.5 + * @language zh_CN + */ + const enum AnimationFadeOutMode { + /** + * - Do not fade out of any animation states. + * @language en_US + */ + /** + * - 不淡出任何的动画状态。 + * @language zh_CN + */ + None = 0, + /** + * - Fade out the animation states of the same layer. + * @language en_US + */ + /** + * - 淡出同层的动画状态。 + * @language zh_CN + */ + SameLayer = 1, + /** + * - Fade out the animation states of the same group. + * @language en_US + */ + /** + * - 淡出同组的动画状态。 + * @language zh_CN + */ + SameGroup = 2, + /** + * - Fade out the animation states of the same layer and group. + * @language en_US + */ + /** + * - 淡出同层并且同组的动画状态。 + * @language zh_CN + */ + SameLayerAndGroup = 3, + /** + * - Fade out of all animation states. + * @language en_US + */ + /** + * - 淡出所有的动画状态。 + * @language zh_CN + */ + All = 4, + /** + * - Does not replace the animation state with the same name. + * @language en_US + */ + /** + * - 不替换同名的动画状态。 + * @language zh_CN + */ + Single = 5, + } + /** + * @private + */ + interface Map { + [key: string]: T; + } + /** + * @private + */ + class DragonBones { + static readonly VERSION: string; + static yDown: boolean; + static debug: boolean; + static debugDraw: boolean; + static webAssembly: boolean; + private readonly _clock; + private readonly _events; + private readonly _objects; + private _eventManager; + constructor(eventManager: IEventDispatcher); + advanceTime(passedTime: number): void; + bufferEvent(value: EventObject): void; + bufferObject(object: BaseObject): void; + readonly clock: WorldClock; + readonly eventManager: IEventDispatcher; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The BaseObject is the base class for all objects in the DragonBones framework. + * All BaseObject instances are cached to the object pool to reduce the performance consumption of frequent requests for memory or memory recovery. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 基础对象,通常 DragonBones 的对象都继承自该类。 + * 所有基础对象的实例都会缓存到对象池,以减少频繁申请内存或内存回收的性能消耗。 + * @version DragonBones 4.5 + * @language zh_CN + */ + abstract class BaseObject { + private static _hashCode; + private static _defaultMaxCount; + private static readonly _maxCountMap; + private static readonly _poolsMap; + private static _returnObject(object); + static toString(): string; + /** + * - Set the maximum cache count of the specify object pool. + * @param objectConstructor - The specify class. (Set all object pools max cache count if not set) + * @param maxCount - Max count. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 设置特定对象池的最大缓存数量。 + * @param objectConstructor - 特定的类。 (不设置则设置所有对象池的最大缓存数量) + * @param maxCount - 最大缓存数量。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static setMaxCount(objectConstructor: (typeof BaseObject) | null, maxCount: number): void; + /** + * - Clear the cached instances of a specify object pool. + * @param objectConstructor - Specify class. (Clear all cached instances if not set) + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 清除特定对象池的缓存实例。 + * @param objectConstructor - 特定的类。 (不设置则清除所有缓存的实例) + * @version DragonBones 4.5 + * @language zh_CN + */ + static clearPool(objectConstructor?: (typeof BaseObject) | null): void; + /** + * - Get an instance of the specify class from object pool. + * @param objectConstructor - The specify class. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 从对象池中获取特定类的实例。 + * @param objectConstructor - 特定的类。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static borrowObject(objectConstructor: { + new (): T; + }): T; + /** + * - A unique identification number assigned to the object. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 分配给此实例的唯一标识号。 + * @version DragonBones 4.5 + * @language zh_CN + */ + readonly hashCode: number; + private _isInPool; + /** + * @private + */ + protected abstract _onClear(): void; + /** + * - Clear the object and return it back to object pool。 + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 清除该实例的所有数据并将其返还对象池。 + * @version DragonBones 4.5 + * @language zh_CN + */ + returnToPool(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - 2D Transform matrix. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 2D 转换矩阵。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class Matrix { + /** + * - The value that affects the positioning of pixels along the x axis when scaling or rotating an image. + * @default 1.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 缩放或旋转图像时影响像素沿 x 轴定位的值。 + * @default 1.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + a: number; + /** + * - The value that affects the positioning of pixels along the y axis when rotating or skewing an image. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 旋转或倾斜图像时影响像素沿 y 轴定位的值。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + b: number; + /** + * - The value that affects the positioning of pixels along the x axis when rotating or skewing an image. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 旋转或倾斜图像时影响像素沿 x 轴定位的值。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + c: number; + /** + * - The value that affects the positioning of pixels along the y axis when scaling or rotating an image. + * @default 1.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 缩放或旋转图像时影响像素沿 y 轴定位的值。 + * @default 1.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + d: number; + /** + * - The distance by which to translate each point along the x axis. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 沿 x 轴平移每个点的距离。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + tx: number; + /** + * - The distance by which to translate each point along the y axis. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 沿 y 轴平移每个点的距离。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + ty: number; + /** + * @private + */ + constructor(a?: number, b?: number, c?: number, d?: number, tx?: number, ty?: number); + toString(): string; + /** + * @private + */ + copyFrom(value: Matrix): Matrix; + /** + * @private + */ + copyFromArray(value: Array, offset?: number): Matrix; + /** + * - Convert to unit matrix. + * The resulting matrix has the following properties: a=1, b=0, c=0, d=1, tx=0, ty=0. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 转换为单位矩阵。 + * 该矩阵具有以下属性:a=1、b=0、c=0、d=1、tx=0、ty=0。 + * @version DragonBones 3.0 + * @language zh_CN + */ + identity(): Matrix; + /** + * - Multiplies the current matrix with another matrix. + * @param value - The matrix that needs to be multiplied. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 将当前矩阵与另一个矩阵相乘。 + * @param value - 需要相乘的矩阵。 + * @version DragonBones 3.0 + * @language zh_CN + */ + concat(value: Matrix): Matrix; + /** + * - Convert to inverse matrix. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 转换为逆矩阵。 + * @version DragonBones 3.0 + * @language zh_CN + */ + invert(): Matrix; + /** + * - Apply a matrix transformation to a specific point. + * @param x - X coordinate. + * @param y - Y coordinate. + * @param result - The point after the transformation is applied. + * @param delta - Whether to ignore tx, ty's conversion to point. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 将矩阵转换应用于特定点。 + * @param x - 横坐标。 + * @param y - 纵坐标。 + * @param result - 应用转换之后的点。 + * @param delta - 是否忽略 tx,ty 对点的转换。 + * @version DragonBones 3.0 + * @language zh_CN + */ + transformPoint(x: number, y: number, result: { + x: number; + y: number; + }, delta?: boolean): void; + /** + * @private + */ + transformRectangle(rectangle: { + x: number; + y: number; + width: number; + height: number; + }, delta?: boolean): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - 2D Transform. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 2D 变换。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class Transform { + /** + * @private + */ + static readonly PI: number; + /** + * @private + */ + static readonly PI_D: number; + /** + * @private + */ + static readonly PI_H: number; + /** + * @private + */ + static readonly PI_Q: number; + /** + * @private + */ + static readonly RAD_DEG: number; + /** + * @private + */ + static readonly DEG_RAD: number; + /** + * @private + */ + static normalizeRadian(value: number): number; + /** + * - Horizontal translate. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 水平位移。 + * @version DragonBones 3.0 + * @language zh_CN + */ + x: number; + /** + * - Vertical translate. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 垂直位移。 + * @version DragonBones 3.0 + * @language zh_CN + */ + y: number; + /** + * - Skew. (In radians) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 倾斜。 (以弧度为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + skew: number; + /** + * - rotation. (In radians) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 旋转。 (以弧度为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + rotation: number; + /** + * - Horizontal Scaling. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 水平缩放。 + * @version DragonBones 3.0 + * @language zh_CN + */ + scaleX: number; + /** + * - Vertical scaling. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 垂直缩放。 + * @version DragonBones 3.0 + * @language zh_CN + */ + scaleY: number; + /** + * @private + */ + constructor(x?: number, y?: number, skew?: number, rotation?: number, scaleX?: number, scaleY?: number); + toString(): string; + /** + * @private + */ + copyFrom(value: Transform): Transform; + /** + * @private + */ + identity(): Transform; + /** + * @private + */ + add(value: Transform): Transform; + /** + * @private + */ + minus(value: Transform): Transform; + /** + * @private + */ + fromMatrix(matrix: Matrix): Transform; + /** + * @private + */ + toMatrix(matrix: Matrix): Transform; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + class ColorTransform { + alphaMultiplier: number; + redMultiplier: number; + greenMultiplier: number; + blueMultiplier: number; + alphaOffset: number; + redOffset: number; + greenOffset: number; + blueOffset: number; + constructor(alphaMultiplier?: number, redMultiplier?: number, greenMultiplier?: number, blueMultiplier?: number, alphaOffset?: number, redOffset?: number, greenOffset?: number, blueOffset?: number); + copyFrom(value: ColorTransform): void; + identity(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The Point object represents a location in a two-dimensional coordinate system. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - Point 对象表示二维坐标系统中的某个位置。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class Point { + /** + * - The horizontal coordinate. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 该点的水平坐标。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + x: number; + /** + * - The vertical coordinate. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 该点的垂直坐标。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + y: number; + /** + * - Creates a new point. If you pass no parameters to this method, a point is created at (0,0). + * @param x - The horizontal coordinate. + * @param y - The vertical coordinate. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 创建一个 egret.Point 对象.若不传入任何参数,将会创建一个位于(0,0)位置的点。 + * @param x - 该对象的x属性值,默认为 0.0。 + * @param y - 该对象的y属性值,默认为 0.0。 + * @version DragonBones 3.0 + * @language zh_CN + */ + constructor(x?: number, y?: number); + /** + * @private + */ + copyFrom(value: Point): void; + /** + * @private + */ + clear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - A Rectangle object is an area defined by its position, as indicated by its top-left corner point (x, y) and by its + * width and its height.
+ * The x, y, width, and height properties of the Rectangle class are independent of each other; changing the value of + * one property has no effect on the others. However, the right and bottom properties are integrally related to those + * four properties. For example, if you change the value of the right property, the value of the width property changes; + * if you change the bottom property, the value of the height property changes. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - Rectangle 对象是按其位置(由它左上角的点 (x, y) 确定)以及宽度和高度定义的区域。
+ * Rectangle 类的 x、y、width 和 height 属性相互独立;更改一个属性的值不会影响其他属性。 + * 但是,right 和 bottom 属性与这四个属性是整体相关的。例如,如果更改 right 属性的值,则 width + * 属性的值将发生变化;如果更改 bottom 属性,则 height 属性的值将发生变化。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class Rectangle { + /** + * - The x coordinate of the top-left corner of the rectangle. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 矩形左上角的 x 坐标。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + x: number; + /** + * - The y coordinate of the top-left corner of the rectangle. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 矩形左上角的 y 坐标。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + y: number; + /** + * - The width of the rectangle, in pixels. + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 矩形的宽度(以像素为单位)。 + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + width: number; + /** + * - 矩形的高度(以像素为单位)。 + * @default 0.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - The height of the rectangle, in pixels. + * @default 0.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + height: number; + /** + * @private + */ + constructor(x?: number, y?: number, width?: number, height?: number); + /** + * @private + */ + copyFrom(value: Rectangle): void; + /** + * @private + */ + clear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The user custom data. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 用户自定义数据。 + * @version DragonBones 5.0 + * @language zh_CN + */ + class UserData extends BaseObject { + static toString(): string; + /** + * - The custom int numbers. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 自定义整数。 + * @version DragonBones 5.0 + * @language zh_CN + */ + readonly ints: Array; + /** + * - The custom float numbers. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 自定义浮点数。 + * @version DragonBones 5.0 + * @language zh_CN + */ + readonly floats: Array; + /** + * - The custom strings. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 自定义字符串。 + * @version DragonBones 5.0 + * @language zh_CN + */ + readonly strings: Array; + /** + * @inheritDoc + */ + protected _onClear(): void; + /** + * @internal + * @private + */ + addInt(value: number): void; + /** + * @internal + * @private + */ + addFloat(value: number): void; + /** + * @internal + * @private + */ + addString(value: string): void; + /** + * - Get the custom int number. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 获取自定义整数。 + * @version DragonBones 5.0 + * @language zh_CN + */ + getInt(index?: number): number; + /** + * - Get the custom float number. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 获取自定义浮点数。 + * @version DragonBones 5.0 + * @language zh_CN + */ + getFloat(index?: number): number; + /** + * - Get the custom string. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 获取自定义字符串。 + * @version DragonBones 5.0 + * @language zh_CN + */ + getString(index?: number): string; + } + /** + * @internal + * @private + */ + class ActionData extends BaseObject { + static toString(): string; + type: ActionType; + name: string; + bone: BoneData | null; + slot: SlotData | null; + data: UserData | null; + protected _onClear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The DragonBones data. + * A DragonBones data contains multiple armature data. + * @see dragonBones.ArmatureData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 龙骨数据。 + * 一个龙骨数据包含多个骨架数据。 + * @see dragonBones.ArmatureData + * @version DragonBones 3.0 + * @language zh_CN + */ + class DragonBonesData extends BaseObject { + static toString(): string; + /** + * @private + */ + autoSearch: boolean; + /** + * - The animation frame rate. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画帧频。 + * @version DragonBones 3.0 + * @language zh_CN + */ + frameRate: number; + /** + * - The data version. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 数据版本。 + * @version DragonBones 3.0 + * @language zh_CN + */ + version: string; + /** + * - The DragonBones data name. + * The name is consistent with the DragonBones project name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 龙骨数据名称。 + * 该名称与龙骨项目名保持一致。 + * @version DragonBones 3.0 + * @language zh_CN + */ + name: string; + /** + * @private + */ + stage: ArmatureData | null; + /** + * @internal + * @private + */ + readonly frameIndices: Array; + /** + * @internal + * @private + */ + readonly cachedFrames: Array; + /** + * - All armature data names. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 所有的骨架数据名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly armatureNames: Array; + /** + * @private + */ + readonly armatures: Map; + /** + * @internal + * @private + */ + binary: ArrayBuffer; + /** + * @internal + * @private + */ + intArray: Int16Array; + /** + * @internal + * @private + */ + floatArray: Float32Array; + /** + * @internal + * @private + */ + frameIntArray: Int16Array; + /** + * @internal + * @private + */ + frameFloatArray: Float32Array; + /** + * @internal + * @private + */ + frameArray: Int16Array; + /** + * @internal + * @private + */ + timelineArray: Uint16Array; + /** + * @private + */ + userData: UserData | null; + /** + * @inheritDoc + */ + protected _onClear(): void; + /** + * @internal + * @private + */ + addArmature(value: ArmatureData): void; + /** + * - Get a specific armature data. + * @param name - The armature data name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定的骨架数据。 + * @param name - 骨架数据名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + getArmature(name: string): ArmatureData | null; + /** + * - Deprecated, please refer to {@link #dragonBones.BaseFactory#removeDragonBonesData()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #dragonBones.BaseFactory#removeDragonBonesData()}。 + * @deprecated + * @language zh_CN + */ + dispose(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The armature data. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨架数据。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class ArmatureData extends BaseObject { + static toString(): string; + /** + * @private + */ + type: ArmatureType; + /** + * - The animation frame rate. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画帧率。 + * @version DragonBones 3.0 + * @language zh_CN + */ + frameRate: number; + /** + * @private + */ + cacheFrameRate: number; + /** + * @private + */ + scale: number; + /** + * - The armature name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨架名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + name: string; + /** + * @private + */ + readonly aabb: Rectangle; + /** + * - The names of all the animation data. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 所有的动画数据名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly animationNames: Array; + /** + * @private + */ + readonly sortedBones: Array; + /** + * @private + */ + readonly sortedSlots: Array; + /** + * @private + */ + readonly defaultActions: Array; + /** + * @private + */ + readonly actions: Array; + /** + * @private + */ + readonly bones: Map; + /** + * @private + */ + readonly slots: Map; + /** + * @private + */ + readonly constraints: Map; + /** + * @private + */ + readonly skins: Map; + /** + * @private + */ + readonly animations: Map; + /** + * - The default skin data. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 默认插槽数据。 + * @version DragonBones 4.5 + * @language zh_CN + */ + defaultSkin: SkinData | null; + /** + * - The default animation data. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 默认动画数据。 + * @version DragonBones 4.5 + * @language zh_CN + */ + defaultAnimation: AnimationData | null; + /** + * @private + */ + canvas: CanvasData | null; + /** + * @private + */ + userData: UserData | null; + /** + * @private + */ + parent: DragonBonesData; + /** + * @inheritDoc + */ + protected _onClear(): void; + /** + * @internal + * @private + */ + sortBones(): void; + /** + * @internal + * @private + */ + cacheFrames(frameRate: number): void; + /** + * @internal + * @private + */ + setCacheFrame(globalTransformMatrix: Matrix, transform: Transform): number; + /** + * @internal + * @private + */ + getCacheFrame(globalTransformMatrix: Matrix, transform: Transform, arrayOffset: number): void; + /** + * @internal + * @private + */ + addBone(value: BoneData): void; + /** + * @internal + * @private + */ + addSlot(value: SlotData): void; + /** + * @internal + * @private + */ + addConstraint(value: ConstraintData): void; + /** + * @internal + * @private + */ + addSkin(value: SkinData): void; + /** + * @internal + * @private + */ + addAnimation(value: AnimationData): void; + /** + * @internal + * @private + */ + addAction(value: ActionData, isDefault: boolean): void; + /** + * - Get a specific done data. + * @param name - The bone name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定的骨骼数据。 + * @param name - 骨骼名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + getBone(name: string): BoneData | null; + /** + * - Get a specific slot data. + * @param name - The slot name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定的插槽数据。 + * @param name - 插槽名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + getSlot(name: string): SlotData | null; + /** + * @private + */ + getConstraint(name: string): ConstraintData | null; + /** + * - Get a specific skin data. + * @param name - The skin name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定皮肤数据。 + * @param name - 皮肤名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + getSkin(name: string): SkinData | null; + /** + * @internal + * @private + */ + getMesh(skinName: string, slotName: string, meshName: string): MeshDisplayData | null; + /** + * - Get a specific animation data. + * @param name - The animation name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定的动画数据。 + * @param name - 动画名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + getAnimation(name: string): AnimationData | null; + } + /** + * - The bone data. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨骼数据。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class BoneData extends BaseObject { + static toString(): string; + /** + * @private + */ + inheritTranslation: boolean; + /** + * @private + */ + inheritRotation: boolean; + /** + * @private + */ + inheritScale: boolean; + /** + * @private + */ + inheritReflection: boolean; + /** + * @private + */ + type: BoneType; + /** + * - The bone length. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨骼长度。 + * @version DragonBones 3.0 + * @language zh_CN + */ + length: number; + /** + * - The bone name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨骼名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + name: string; + /** + * @private + */ + readonly transform: Transform; + /** + * @private + */ + userData: UserData | null; + /** + * - The parent bone data. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 父骨骼数据。 + * @version DragonBones 3.0 + * @language zh_CN + */ + parent: BoneData | null; + /** + * @inheritDoc + */ + protected _onClear(): void; + } + /** + * @internal + * @private + */ + class SurfaceData extends BoneData { + static toString(): string; + segmentX: number; + segmentY: number; + readonly vertices: Array; + /** + * @inheritDoc + */ + protected _onClear(): void; + } + /** + * - The slot data. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 插槽数据。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class SlotData extends BaseObject { + /** + * @internal + * @private + */ + static readonly DEFAULT_COLOR: ColorTransform; + /** + * @internal + * @private + */ + static createColor(): ColorTransform; + static toString(): string; + /** + * @private + */ + blendMode: BlendMode; + /** + * @private + */ + displayIndex: number; + /** + * @private + */ + zOrder: number; + /** + * - The slot name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 插槽名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + name: string; + /** + * @private + */ + color: ColorTransform; + /** + * @private + */ + userData: UserData | null; + /** + * - The parent bone data. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 父骨骼数据。 + * @version DragonBones 3.0 + * @language zh_CN + */ + parent: BoneData; + /** + * @inheritDoc + */ + protected _onClear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + abstract class ConstraintData extends BaseObject { + order: number; + name: string; + target: BoneData; + root: BoneData; + bone: BoneData | null; + protected _onClear(): void; + } + /** + * @internal + * @private + */ + class IKConstraintData extends ConstraintData { + static toString(): string; + scaleEnabled: boolean; + bendPositive: boolean; + weight: number; + protected _onClear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + class CanvasData extends BaseObject { + static toString(): string; + hasBackground: boolean; + color: number; + x: number; + y: number; + width: number; + height: number; + protected _onClear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The skin data, typically a armature data instance contains at least one skinData. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 皮肤数据,通常一个骨架数据至少包含一个皮肤数据。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class SkinData extends BaseObject { + static toString(): string; + /** + * - The skin name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 皮肤名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + name: string; + /** + * @private + */ + readonly displays: Map>; + /** + * @private + */ + parent: ArmatureData; + /** + * @inheritDoc + */ + protected _onClear(): void; + /** + * @internal + * @private + */ + addDisplay(slotName: string, value: DisplayData | null): void; + /** + * @private + */ + getDisplay(slotName: string, displayName: string): DisplayData | null; + /** + * @private + */ + getDisplays(slotName: string): Array | null; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + abstract class DisplayData extends BaseObject { + type: DisplayType; + name: string; + path: string; + parent: SkinData; + readonly transform: Transform; + protected _onClear(): void; + } + /** + * @internal + * @private + */ + class ImageDisplayData extends DisplayData { + static toString(): string; + readonly pivot: Point; + texture: TextureData | null; + protected _onClear(): void; + } + /** + * @internal + * @private + */ + class ArmatureDisplayData extends DisplayData { + static toString(): string; + inheritAnimation: boolean; + readonly actions: Array; + armature: ArmatureData | null; + protected _onClear(): void; + /** + * @private + */ + addAction(value: ActionData): void; + } + /** + * @internal + * @private + */ + class MeshDisplayData extends DisplayData { + static toString(): string; + inheritDeform: boolean; + offset: number; + weight: WeightData | null; + glue: GlueData | null; + texture: TextureData | null; + protected _onClear(): void; + } + /** + * @internal + * @private + */ + class BoundingBoxDisplayData extends DisplayData { + static toString(): string; + boundingBox: BoundingBoxData | null; + protected _onClear(): void; + } + /** + * @internal + * @private + */ + class WeightData extends BaseObject { + static toString(): string; + count: number; + offset: number; + readonly bones: Array; + protected _onClear(): void; + addBone(value: BoneData): void; + } + /** + * @internal + * @private + */ + class GlueData extends BaseObject { + static toString(): string; + readonly weights: Array; + readonly meshes: Array; + protected _onClear(): void; + addMesh(value: MeshDisplayData | null): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The base class of bounding box data. + * @see dragonBones.RectangleData + * @see dragonBones.EllipseData + * @see dragonBones.PolygonData + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 边界框数据基类。 + * @see dragonBones.RectangleData + * @see dragonBones.EllipseData + * @see dragonBones.PolygonData + * @version DragonBones 5.0 + * @language zh_CN + */ + abstract class BoundingBoxData extends BaseObject { + /** + * - The bounding box type. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 边界框类型。 + * @version DragonBones 5.0 + * @language zh_CN + */ + type: BoundingBoxType; + /** + * @private + */ + color: number; + /** + * @private + */ + width: number; + /** + * @private + */ + height: number; + /** + * @private + */ + protected _onClear(): void; + /** + * - Check whether the bounding box contains a specific point. (Local coordinate system) + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 检查边界框是否包含特定点。(本地坐标系) + * @version DragonBones 5.0 + * @language zh_CN + */ + abstract containsPoint(pX: number, pY: number): boolean; + /** + * - Check whether the bounding box intersects a specific segment. (Local coordinate system) + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 检查边界框是否与特定线段相交。(本地坐标系) + * @version DragonBones 5.0 + * @language zh_CN + */ + abstract intersectsSegment(xA: number, yA: number, xB: number, yB: number, intersectionPointA: { + x: number; + y: number; + } | null, intersectionPointB: { + x: number; + y: number; + } | null, normalRadians: { + x: number; + y: number; + } | null): number; + } + /** + * - The rectangle bounding box data. + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 矩形边界框数据。 + * @version DragonBones 5.1 + * @language zh_CN + */ + class RectangleBoundingBoxData extends BoundingBoxData { + static toString(): string; + /** + * - Compute the bit code for a point (x, y) using the clip rectangle + */ + private static _computeOutCode(x, y, xMin, yMin, xMax, yMax); + /** + * @private + */ + static rectangleIntersectsSegment(xA: number, yA: number, xB: number, yB: number, xMin: number, yMin: number, xMax: number, yMax: number, intersectionPointA?: { + x: number; + y: number; + } | null, intersectionPointB?: { + x: number; + y: number; + } | null, normalRadians?: { + x: number; + y: number; + } | null): number; + /** + * @inheritDoc + * @private + */ + protected _onClear(): void; + /** + * @inheritDoc + */ + containsPoint(pX: number, pY: number): boolean; + /** + * @inheritDoc + */ + intersectsSegment(xA: number, yA: number, xB: number, yB: number, intersectionPointA?: { + x: number; + y: number; + } | null, intersectionPointB?: { + x: number; + y: number; + } | null, normalRadians?: { + x: number; + y: number; + } | null): number; + } + /** + * - The ellipse bounding box data. + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 椭圆边界框数据。 + * @version DragonBones 5.1 + * @language zh_CN + */ + class EllipseBoundingBoxData extends BoundingBoxData { + static toString(): string; + /** + * @private + */ + static ellipseIntersectsSegment(xA: number, yA: number, xB: number, yB: number, xC: number, yC: number, widthH: number, heightH: number, intersectionPointA?: { + x: number; + y: number; + } | null, intersectionPointB?: { + x: number; + y: number; + } | null, normalRadians?: { + x: number; + y: number; + } | null): number; + /** + * @inheritDoc + * @private + */ + protected _onClear(): void; + /** + * @inheritDoc + */ + containsPoint(pX: number, pY: number): boolean; + /** + * @inheritDoc + */ + intersectsSegment(xA: number, yA: number, xB: number, yB: number, intersectionPointA?: { + x: number; + y: number; + } | null, intersectionPointB?: { + x: number; + y: number; + } | null, normalRadians?: { + x: number; + y: number; + } | null): number; + } + /** + * - The polygon bounding box data. + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 多边形边界框数据。 + * @version DragonBones 5.1 + * @language zh_CN + */ + class PolygonBoundingBoxData extends BoundingBoxData { + static toString(): string; + /** + * @private + */ + static polygonIntersectsSegment(xA: number, yA: number, xB: number, yB: number, vertices: Array, intersectionPointA?: { + x: number; + y: number; + } | null, intersectionPointB?: { + x: number; + y: number; + } | null, normalRadians?: { + x: number; + y: number; + } | null): number; + /** + * @private + */ + x: number; + /** + * @private + */ + y: number; + /** + * - The polygon vertices. + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 多边形顶点。 + * @version DragonBones 5.1 + * @language zh_CN + */ + readonly vertices: Array; + /** + * @private + */ + weight: WeightData | null; + /** + * @inheritDoc + * @private + */ + protected _onClear(): void; + /** + * @inheritDoc + */ + containsPoint(pX: number, pY: number): boolean; + /** + * @inheritDoc + */ + intersectsSegment(xA: number, yA: number, xB: number, yB: number, intersectionPointA?: { + x: number; + y: number; + } | null, intersectionPointB?: { + x: number; + y: number; + } | null, normalRadians?: { + x: number; + y: number; + } | null): number; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The animation data. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画数据。 + * @version DragonBones 3.0 + * @language zh_CN + */ + class AnimationData extends BaseObject { + static toString(): string; + /** + * - FrameIntArray. + * @internal + * @private + */ + frameIntOffset: number; + /** + * - FrameFloatArray. + * @internal + * @private + */ + frameFloatOffset: number; + /** + * - FrameArray. + * @internal + * @private + */ + frameOffset: number; + /** + * - The frame count of the animation. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画的帧数。 + * @version DragonBones 3.0 + * @language zh_CN + */ + frameCount: number; + /** + * - The play times of the animation. [0: Loop play, [1~N]: Play N times] + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画的播放次数。 [0: 无限循环播放, [1~N]: 循环播放 N 次] + * @version DragonBones 3.0 + * @language zh_CN + */ + playTimes: number; + /** + * - The duration of the animation. (In seconds) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画的持续时间。 (以秒为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + duration: number; + /** + * @private + */ + scale: number; + /** + * - The fade in time of the animation. (In seconds) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画的淡入时间。 (以秒为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + fadeInTime: number; + /** + * @private + */ + cacheFrameRate: number; + /** + * - The animation name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + name: string; + /** + * @private + */ + readonly cachedFrames: Array; + /** + * @private + */ + readonly boneTimelines: Map>; + /** + * @private + */ + readonly surfaceTimelines: Map>; + /** + * @private + */ + readonly slotTimelines: Map>; + /** + * @private + */ + readonly constraintTimelines: Map>; + /** + * @private + */ + readonly animationTimelines: Map>; + /** + * @private + */ + readonly boneCachedFrameIndices: Map>; + /** + * @private + */ + readonly slotCachedFrameIndices: Map>; + /** + * @private + */ + actionTimeline: TimelineData | null; + /** + * @private + */ + zOrderTimeline: TimelineData | null; + /** + * @private + */ + parent: ArmatureData; + /** + * @inheritDoc + */ + protected _onClear(): void; + /** + * @internal + * @private + */ + cacheFrames(frameRate: number): void; + /** + * @private + */ + addBoneTimeline(bone: BoneData, timeline: TimelineData): void; + /** + * @private + */ + addSurfaceTimeline(surface: SurfaceData, timeline: TimelineData): void; + /** + * @private + */ + addSlotTimeline(slot: SlotData, timeline: TimelineData): void; + /** + * @private + */ + addConstraintTimeline(constraint: ConstraintData, timeline: TimelineData): void; + /** + * @private + */ + addAnimationTimeline(name: string, timeline: TimelineData): void; + /** + * @private + */ + getBoneTimelines(name: string): Array | null; + /** + * @private + */ + getSurfaceTimelines(name: string): Array | null; + /** + * @private + */ + getSlotTimelines(name: string): Array | null; + /** + * @private + */ + getConstraintTimelines(name: string): Array | null; + /** + * @private + */ + getAnimationTimelines(name: string): Array | null; + /** + * @private + */ + getBoneCachedFrameIndices(name: string): Array | null; + /** + * @private + */ + getSlotCachedFrameIndices(name: string): Array | null; + } + /** + * @internal + * @private + */ + class TimelineData extends BaseObject { + static toString(): string; + type: TimelineType; + offset: number; + frameIndicesOffset: number; + protected _onClear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The animation config is used to describe all the information needed to play an animation state. + * The API is still in the experimental phase and may encounter bugs or stability or compatibility issues when used. + * @see dragonBones.AnimationState + * @beta + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 动画配置用来描述播放一个动画状态所需要的全部信息。 + * 该 API 仍在实验阶段,使用时可能遭遇 bug 或稳定性或兼容性问题。 + * @see dragonBones.AnimationState + * @beta + * @version DragonBones 5.0 + * @language zh_CN + */ + class AnimationConfig extends BaseObject { + static toString(): string; + /** + * @private + */ + pauseFadeOut: boolean; + /** + * - Fade out the pattern of other animation states when the animation state is fade in. + * This property is typically used to specify the substitution of multiple animation states blend. + * @default dragonBones.AnimationFadeOutMode.All + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 淡入动画状态时淡出其他动画状态的模式。 + * 该属性通常用来指定多个动画状态混合时的相互替换关系。 + * @default dragonBones.AnimationFadeOutMode.All + * @version DragonBones 5.0 + * @language zh_CN + */ + fadeOutMode: AnimationFadeOutMode; + /** + * @private + */ + fadeOutTweenType: TweenType; + /** + * @private + */ + fadeOutTime: number; + /** + * @private + */ + pauseFadeIn: boolean; + /** + * @private + */ + actionEnabled: boolean; + /** + * @private + */ + additiveBlending: boolean; + /** + * - Whether the animation state has control over the display property of the slots. + * Sometimes blend a animation state does not want it to control the display properties of the slots, + * especially if other animation state are controlling the display properties of the slots. + * @default true + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 动画状态是否对插槽的显示对象属性有控制权。 + * 有时混合一个动画状态并不希望其控制插槽的显示对象属性, + * 尤其是其他动画状态正在控制这些插槽的显示对象属性时。 + * @default true + * @version DragonBones 5.0 + * @language zh_CN + */ + displayControl: boolean; + /** + * - Whether to reset the objects without animation to the armature pose when the animation state is start to play. + * This property should usually be set to false when blend multiple animation states. + * @default true + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 开始播放动画状态时是否将没有动画的对象重置为骨架初始值。 + * 通常在混合多个动画状态时应该将该属性设置为 false。 + * @default true + * @version DragonBones 5.1 + * @language zh_CN + */ + resetToPose: boolean; + /** + * @private + */ + fadeInTweenType: TweenType; + /** + * - The play times. [0: Loop play, [1~N]: Play N times] + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 播放次数。 [0: 无限循环播放, [1~N]: 循环播放 N 次] + * @version DragonBones 3.0 + * @language zh_CN + */ + playTimes: number; + /** + * - The blend layer. + * High layer animation state will get the blend weight first. + * When the blend weight is assigned more than 1, the remaining animation states will no longer get the weight assigned. + * @readonly + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 混合图层。 + * 图层高的动画状态会优先获取混合权重。 + * 当混合权重分配超过 1 时,剩余的动画状态将不再获得权重分配。 + * @readonly + * @version DragonBones 5.0 + * @language zh_CN + */ + layer: number; + /** + * - The start time of play. (In seconds) + * @default 0.0 + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 播放的开始时间。 (以秒为单位) + * @default 0.0 + * @version DragonBones 5.0 + * @language zh_CN + */ + position: number; + /** + * - The duration of play. + * [-1: Use the default value of the animation data, 0: Stop play, (0~N]: The duration] (In seconds) + * @default -1.0 + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 播放的持续时间。 + * [-1: 使用动画数据默认值, 0: 动画停止, (0~N]: 持续时间] (以秒为单位) + * @default -1.0 + * @version DragonBones 5.0 + * @language zh_CN + */ + duration: number; + /** + * - The play speed. + * The value is an overlay relationship with {@link dragonBones.Animation#timeScale}. + * [(-N~0): Reverse play, 0: Stop play, (0~1): Slow play, 1: Normal play, (1~N): Fast play] + * @default 1.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 播放速度。 + * 该值与 {@link dragonBones.Animation#timeScale} 是叠加关系。 + * [(-N~0): 倒转播放, 0: 停止播放, (0~1): 慢速播放, 1: 正常播放, (1~N): 快速播放] + * @default 1.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + timeScale: number; + /** + * - The blend weight. + * @default 1.0 + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 混合权重。 + * @default 1.0 + * @version DragonBones 5.0 + * @language zh_CN + */ + weight: number; + /** + * - The fade in time. + * [-1: Use the default value of the animation data, [0~N]: The fade in time] (In seconds) + * @default -1.0 + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 淡入时间。 + * [-1: 使用动画数据默认值, [0~N]: 淡入时间] (以秒为单位) + * @default -1.0 + * @version DragonBones 5.0 + * @language zh_CN + */ + fadeInTime: number; + /** + * - The auto fade out time when the animation state play completed. + * [-1: Do not fade out automatically, [0~N]: The fade out time] (In seconds) + * @default -1.0 + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 动画状态播放完成后的自动淡出时间。 + * [-1: 不自动淡出, [0~N]: 淡出时间] (以秒为单位) + * @default -1.0 + * @version DragonBones 5.0 + * @language zh_CN + */ + autoFadeOutTime: number; + /** + * - The name of the animation state. (Can be different from the name of the animation data) + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 动画状态名称。 (可以不同于动画数据) + * @version DragonBones 5.0 + * @language zh_CN + */ + name: string; + /** + * - The animation data name. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 动画数据名称。 + * @version DragonBones 5.0 + * @language zh_CN + */ + animation: string; + /** + * - The blend group name of the animation state. + * This property is typically used to specify the substitution of multiple animation states blend. + * @readonly + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 混合组名称。 + * 该属性通常用来指定多个动画状态混合时的相互替换关系。 + * @readonly + * @version DragonBones 5.0 + * @language zh_CN + */ + group: string; + /** + * @private + */ + readonly boneMask: Array; + /** + * @private + */ + protected _onClear(): void; + /** + * @private + */ + clear(): void; + /** + * @private + */ + copyFrom(value: AnimationConfig): void; + /** + * @private + */ + containsBoneMask(name: string): boolean; + /** + * @private + */ + addBoneMask(armature: Armature, name: string, recursive?: boolean): void; + /** + * @private + */ + removeBoneMask(armature: Armature, name: string, recursive?: boolean): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The texture atlas data. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 贴图集数据。 + * @version DragonBones 3.0 + * @language zh_CN + */ + abstract class TextureAtlasData extends BaseObject { + /** + * @private + */ + autoSearch: boolean; + /** + * @private + */ + width: number; + /** + * @private + */ + height: number; + /** + * @private + */ + scale: number; + /** + * - The texture atlas name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 贴图集名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + name: string; + /** + * - The image path of the texture atlas. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 贴图集图片路径。 + * @version DragonBones 3.0 + * @language zh_CN + */ + imagePath: string; + /** + * @private + */ + readonly textures: Map; + /** + * @inheritDoc + */ + protected _onClear(): void; + /** + * @private + */ + copyFrom(value: TextureAtlasData): void; + /** + * @internal + * @private + */ + abstract createTexture(): TextureData; + /** + * @internal + * @private + */ + addTexture(value: TextureData): void; + /** + * @private + */ + getTexture(name: string): TextureData | null; + } + /** + * @internal + * @private + */ + abstract class TextureData extends BaseObject { + static createRectangle(): Rectangle; + rotated: boolean; + name: string; + readonly region: Rectangle; + parent: TextureAtlasData; + frame: Rectangle | null; + protected _onClear(): void; + copyFrom(value: TextureData): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The armature proxy interface, the docking engine needs to implement it concretely. + * @see dragonBones.Armature + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 骨架代理接口,对接的引擎需要对其进行具体实现。 + * @see dragonBones.Armature + * @version DragonBones 5.0 + * @language zh_CN + */ + interface IArmatureProxy extends IEventDispatcher { + /** + * @internal + * @private + */ + dbInit(armature: Armature): void; + /** + * @internal + * @private + */ + dbClear(): void; + /** + * @internal + * @private + */ + dbUpdate(): void; + /** + * - Dispose the instance and the Armature instance. (The Armature instance will return to the object pool) + * @example + *
+         *     removeChild(armatureDisplay);
+         *     armatureDisplay.dispose();
+         * 
+ * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 释放该实例和骨架。 (骨架会回收到对象池) + * @example + *
+         *     removeChild(armatureDisplay);
+         *     armatureDisplay.dispose();
+         * 
+ * @version DragonBones 4.5 + * @language zh_CN + */ + dispose(disposeProxy: boolean): void; + /** + * - The armature. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 骨架。 + * @version DragonBones 4.5 + * @language zh_CN + */ + readonly armature: Armature; + /** + * - The animation player. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画播放器。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly animation: Animation; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - Armature is the core of the skeleton animation system. + * @see dragonBones.ArmatureData + * @see dragonBones.Bone + * @see dragonBones.Slot + * @see dragonBones.Animation + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨架是骨骼动画系统的核心。 + * @see dragonBones.ArmatureData + * @see dragonBones.Bone + * @see dragonBones.Slot + * @see dragonBones.Animation + * @version DragonBones 3.0 + * @language zh_CN + */ + class Armature extends BaseObject implements IAnimatable { + static toString(): string; + private static _onSortSlots(a, b); + /** + * - Whether to inherit the animation control of the parent armature. + * True to try to have the child armature play an animation with the same name when the parent armature play the animation. + * @default true + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 是否继承父骨架的动画控制。 + * 如果该值为 true,当父骨架播放动画时,会尝试让子骨架播放同名动画。 + * @default true + * @version DragonBones 4.5 + * @language zh_CN + */ + inheritAnimation: boolean; + /** + * @private + */ + userData: any; + private _lockUpdate; + private _bonesDirty; + private _slotsDirty; + private _zOrderDirty; + private _flipX; + private _flipY; + /** + * @internal + * @private + */ + _cacheFrameIndex: number; + private readonly _bones; + private readonly _slots; + /** + * @internal + * @private + */ + readonly _glueSlots: Array; + /** + * @internal + * @private + */ + readonly _constraints: Array; + private readonly _actions; + /** + * @internal + * @private + */ + _armatureData: ArmatureData; + private _animation; + private _proxy; + private _display; + /** + * @internal + * @private + */ + _replaceTextureAtlasData: TextureAtlasData | null; + private _replacedTexture; + /** + * @internal + * @private + */ + _dragonBones: DragonBones; + private _clock; + /** + * @internal + * @private + */ + _parent: Slot | null; + /** + * @private + */ + protected _onClear(): void; + private _sortBones(); + private _sortSlots(); + /** + * @internal + * @private + */ + _sortZOrder(slotIndices: Array | Int16Array | null, offset: number): void; + /** + * @internal + * @private + */ + _addBoneToBoneList(value: Bone): void; + /** + * @internal + * @private + */ + _removeBoneFromBoneList(value: Bone): void; + /** + * @internal + * @private + */ + _addSlotToSlotList(value: Slot): void; + /** + * @internal + * @private + */ + _removeSlotFromSlotList(value: Slot): void; + /** + * @internal + * @private + */ + _bufferAction(action: ActionData, append: boolean): void; + /** + * - Dispose the armature. (Return to the object pool) + * @example + *
+         *     removeChild(armature.display);
+         *     armature.dispose();
+         * 
+ * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 释放骨架。 (回收到对象池) + * @example + *
+         *     removeChild(armature.display);
+         *     armature.dispose();
+         * 
+ * @version DragonBones 3.0 + * @language zh_CN + */ + dispose(): void; + /** + * @internal + * @private + */ + init(armatureData: ArmatureData, proxy: IArmatureProxy, display: any, dragonBones: DragonBones): void; + /** + * @inheritDoc + */ + advanceTime(passedTime: number): void; + /** + * - Forces a specific bone or its owning slot to update the transform or display property in the next frame. + * @param boneName - The bone name. (If not set, all bones will be update) + * @param updateSlot - Whether to update the bone's slots. (Default: false) + * @see dragonBones.Bone#invalidUpdate() + * @see dragonBones.Slot#invalidUpdate() + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 强制特定骨骼或其拥有的插槽在下一帧更新变换或显示属性。 + * @param boneName - 骨骼名称。 (如果未设置,将更新所有骨骼) + * @param updateSlot - 是否更新骨骼的插槽。 (默认: false) + * @see dragonBones.Bone#invalidUpdate() + * @see dragonBones.Slot#invalidUpdate() + * @version DragonBones 3.0 + * @language zh_CN + */ + invalidUpdate(boneName?: string | null, updateSlot?: boolean): void; + /** + * - Check whether a specific point is inside a custom bounding box in a slot. + * The coordinate system of the point is the inner coordinate system of the armature. + * Custom bounding boxes need to be customized in Dragonbones Pro. + * @param x - The horizontal coordinate of the point. + * @param y - The vertical coordinate of the point. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 检查特定点是否在某个插槽的自定义边界框内。 + * 点的坐标系为骨架内坐标系。 + * 自定义边界框需要在 DragonBones Pro 中自定义。 + * @param x - 点的水平坐标。 + * @param y - 点的垂直坐标。 + * @version DragonBones 5.0 + * @language zh_CN + */ + containsPoint(x: number, y: number): Slot | null; + /** + * - Check whether a specific segment intersects a custom bounding box for a slot in the armature. + * The coordinate system of the segment and intersection is the inner coordinate system of the armature. + * Custom bounding boxes need to be customized in Dragonbones Pro. + * @param xA - The horizontal coordinate of the beginning of the segment. + * @param yA - The vertical coordinate of the beginning of the segment. + * @param xB - The horizontal coordinate of the end point of the segment. + * @param yB - The vertical coordinate of the end point of the segment. + * @param intersectionPointA - The first intersection at which a line segment intersects the bounding box from the beginning to the end. (If not set, the intersection point will not calculated) + * @param intersectionPointB - The first intersection at which a line segment intersects the bounding box from the end to the beginning. (If not set, the intersection point will not calculated) + * @param normalRadians - The normal radians of the tangent of the intersection boundary box. [x: Normal radian of the first intersection tangent, y: Normal radian of the second intersection tangent] (If not set, the normal will not calculated) + * @returns The slot of the first custom bounding box where the segment intersects from the start point to the end point. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 检查特定线段是否与骨架的某个插槽的自定义边界框相交。 + * 线段和交点的坐标系均为骨架内坐标系。 + * 自定义边界框需要在 DragonBones Pro 中自定义。 + * @param xA - 线段起点的水平坐标。 + * @param yA - 线段起点的垂直坐标。 + * @param xB - 线段终点的水平坐标。 + * @param yB - 线段终点的垂直坐标。 + * @param intersectionPointA - 线段从起点到终点与边界框相交的第一个交点。 (如果未设置,则不计算交点) + * @param intersectionPointB - 线段从终点到起点与边界框相交的第一个交点。 (如果未设置,则不计算交点) + * @param normalRadians - 交点边界框切线的法线弧度。 [x: 第一个交点切线的法线弧度, y: 第二个交点切线的法线弧度] (如果未设置,则不计算法线) + * @returns 线段从起点到终点相交的第一个自定义边界框的插槽。 + * @version DragonBones 5.0 + * @language zh_CN + */ + intersectsSegment(xA: number, yA: number, xB: number, yB: number, intersectionPointA?: { + x: number; + y: number; + } | null, intersectionPointB?: { + x: number; + y: number; + } | null, normalRadians?: { + x: number; + y: number; + } | null): Slot | null; + /** + * - Get a specific bone. + * @param name - The bone name. + * @see dragonBones.Bone + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定的骨骼。 + * @param name - 骨骼名称。 + * @see dragonBones.Bone + * @version DragonBones 3.0 + * @language zh_CN + */ + getBone(name: string): Bone | null; + /** + * - Get a specific bone by the display. + * @param display - The display object. + * @see dragonBones.Bone + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 通过显示对象获取特定的骨骼。 + * @param display - 显示对象。 + * @see dragonBones.Bone + * @version DragonBones 3.0 + * @language zh_CN + */ + getBoneByDisplay(display: any): Bone | null; + /** + * - Get a specific slot. + * @param name - The slot name. + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定的插槽。 + * @param name - 插槽名称。 + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language zh_CN + */ + getSlot(name: string): Slot | null; + /** + * - Get a specific slot by the display. + * @param display - The display object. + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 通过显示对象获取特定的插槽。 + * @param display - 显示对象。 + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language zh_CN + */ + getSlotByDisplay(display: any): Slot | null; + /** + * @deprecated + */ + addBone(value: Bone, parentName: string): void; + /** + * @deprecated + */ + addSlot(value: Slot, parentName: string): void; + /** + * @private + */ + addConstraint(value: Constraint): void; + /** + * @deprecated + */ + removeBone(value: Bone): void; + /** + * @deprecated + */ + removeSlot(value: Slot): void; + /** + * - Get all bones. + * @see dragonBones.Bone + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取所有的骨骼。 + * @see dragonBones.Bone + * @version DragonBones 3.0 + * @language zh_CN + */ + getBones(): Array; + /** + * - Get all slots. + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取所有的插槽。 + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language zh_CN + */ + getSlots(): Array; + /** + * - Whether to flip the armature horizontally. + * @version DragonBones 5.5 + * @language en_US + */ + /** + * - 是否将骨架水平翻转。 + * @version DragonBones 5.5 + * @language zh_CN + */ + flipX: boolean; + /** + * - Whether to flip the armature vertically. + * @version DragonBones 5.5 + * @language en_US + */ + /** + * - 是否将骨架垂直翻转。 + * @version DragonBones 5.5 + * @language zh_CN + */ + flipY: boolean; + /** + * - The animation cache frame rate, which turns on the animation cache when the set value is greater than 0. + * There is a certain amount of memory overhead to improve performance by caching animation data in memory. + * The frame rate should not be set too high, usually with the frame rate of the animation is similar and lower than the program running frame rate. + * When the animation cache is turned on, some features will fail, such as the offset property of bone. + * @example + *
+         *     armature.cacheFrameRate = 24;
+         * 
+ * @see dragonBones.DragonBonesData#frameRate + * @see dragonBones.ArmatureData#frameRate + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画缓存帧率,当设置的值大于 0 的时,将会开启动画缓存。 + * 通过将动画数据缓存在内存中来提高运行性能,会有一定的内存开销。 + * 帧率不宜设置的过高,通常跟动画的帧率相当且低于程序运行的帧率。 + * 开启动画缓存后,某些功能将会失效,比如骨骼的 offset 属性等。 + * @example + *
+         *     armature.cacheFrameRate = 24;
+         * 
+ * @see dragonBones.DragonBonesData#frameRate + * @see dragonBones.ArmatureData#frameRate + * @version DragonBones 4.5 + * @language zh_CN + */ + cacheFrameRate: number; + /** + * - The armature name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨架名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly name: string; + /** + * - The armature data. + * @see dragonBones.ArmatureData + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 骨架数据。 + * @see dragonBones.ArmatureData + * @version DragonBones 4.5 + * @language zh_CN + */ + readonly armatureData: ArmatureData; + /** + * - The animation player. + * @see dragonBones.Animation + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画播放器。 + * @see dragonBones.Animation + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly animation: Animation; + /** + * @pivate + */ + readonly proxy: IArmatureProxy; + /** + * - The EventDispatcher instance of the armature. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 该骨架的 EventDispatcher 实例。 + * @version DragonBones 4.5 + * @language zh_CN + */ + readonly eventDispatcher: IEventDispatcher; + /** + * - The display container. + * The display of the slot is displayed as the parent. + * Depending on the rendering engine, the type will be different, usually the DisplayObjectContainer type. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 显示容器实例。 + * 插槽的显示对象都会以此显示容器为父级。 + * 根据渲染引擎的不同,类型会不同,通常是 DisplayObjectContainer 类型。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly display: any; + /** + * @private + */ + replacedTexture: any; + /** + * @inheritDoc + */ + clock: WorldClock | null; + /** + * - Get the parent slot which the armature belongs to. + * @see dragonBones.Slot + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 该骨架所属的父插槽。 + * @see dragonBones.Slot + * @version DragonBones 4.5 + * @language zh_CN + */ + readonly parent: Slot | null; + /** + * @deprecated + * @private + */ + replaceTexture(texture: any): void; + /** + * - Deprecated, please refer to {@link #eventDispatcher}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #eventDispatcher}。 + * @deprecated + * @language zh_CN + */ + hasEventListener(type: EventStringType): boolean; + /** + * - Deprecated, please refer to {@link #eventDispatcher}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #eventDispatcher}。 + * @deprecated + * @language zh_CN + */ + addEventListener(type: EventStringType, listener: Function, target: any): void; + /** + * - Deprecated, please refer to {@link #eventDispatcher}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #eventDispatcher}。 + * @deprecated + * @language zh_CN + */ + removeEventListener(type: EventStringType, listener: Function, target: any): void; + /** + * - Deprecated, please refer to {@link #cacheFrameRate}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #cacheFrameRate}。 + * @deprecated + * @language zh_CN + */ + enableAnimationCache(frameRate: number): void; + /** + * - Deprecated, please refer to {@link #display}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #display}。 + * @deprecated + * @language zh_CN + */ + getDisplay(): any; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The base class of the transform object. + * @see dragonBones.Transform + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 变换对象的基类。 + * @see dragonBones.Transform + * @version DragonBones 4.5 + * @language zh_CN + */ + abstract class TransformObject extends BaseObject { + /** + * @private + */ + protected static readonly _helpMatrix: Matrix; + /** + * @private + */ + protected static readonly _helpTransform: Transform; + /** + * @private + */ + protected static readonly _helpPoint: Point; + /** + * - A matrix relative to the armature coordinate system. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 相对于骨架坐标系的矩阵。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly globalTransformMatrix: Matrix; + /** + * - A transform relative to the armature coordinate system. + * @see #updateGlobalTransform() + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 相对于骨架坐标系的变换。 + * @see #updateGlobalTransform() + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly global: Transform; + /** + * - The offset transform relative to the armature or the parent bone coordinate system. + * @see #dragonBones.Bone#invalidUpdate() + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 相对于骨架或父骨骼坐标系的偏移变换。 + * @see #dragonBones.Bone#invalidUpdate() + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly offset: Transform; + /** + * @private + */ + origin: Transform | null; + /** + * @private + */ + userData: any; + /** + * @private + */ + protected _globalDirty: boolean; + /** + * @internal + * @private + */ + _armature: Armature; + /** + * @internal + * @private + */ + _parent: Bone; + /** + * @private + */ + protected _onClear(): void; + /** + * @internal + * @private + */ + _setArmature(value: Armature | null): void; + /** + * @internal + * @private + */ + _setParent(value: Bone | null): void; + /** + * - For performance considerations, rotation or scale in the {@link #global} attribute of the bone or slot is not always properly accessible, + * some engines do not rely on these attributes to update rendering, such as Egret. + * The use of this method ensures that the access to the {@link #global} property is correctly rotation or scale. + * @example + *
+         *     bone.updateGlobalTransform();
+         *     let rotation = bone.global.rotation;
+         * 
+ * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 出于性能的考虑,骨骼或插槽的 {@link #global} 属性中的旋转或缩放并不总是正确可访问的,有些引擎并不依赖这些属性更新渲染,比如 Egret。 + * 使用此方法可以保证访问到 {@link #global} 属性中正确的旋转或缩放。 + * @example + *
+         *     bone.updateGlobalTransform();
+         *     let rotation = bone.global.rotation;
+         * 
+ * @version DragonBones 3.0 + * @language zh_CN + */ + updateGlobalTransform(): void; + /** + * - The armature to which it belongs. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 所属的骨架。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly armature: Armature; + /** + * - The parent bone to which it belongs. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 所属的父骨骼。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly parent: Bone; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - Bone is one of the most important logical units in the armature animation system, + * and is responsible for the realization of translate, rotation, scaling in the animations. + * A armature can contain multiple bones. + * @see dragonBones.BoneData + * @see dragonBones.Armature + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨骼在骨骼动画体系中是最重要的逻辑单元之一,负责动画中的平移、旋转、缩放的实现。 + * 一个骨架中可以包含多个骨骼。 + * @see dragonBones.BoneData + * @see dragonBones.Armature + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language zh_CN + */ + class Bone extends TransformObject { + static toString(): string; + /** + * - The offset mode. + * @see #offset + * @version DragonBones 5.5 + * @language en_US + */ + /** + * - 偏移模式。 + * @see #offset + * @version DragonBones 5.5 + * @language zh_CN + */ + offsetMode: OffsetMode; + /** + * @internal + * @private + */ + readonly animationPose: Transform; + /** + * @internal + * @private + */ + _transformDirty: boolean; + /** + * @internal + * @private + */ + _childrenTransformDirty: boolean; + protected _localDirty: boolean; + /** + * @internal + * @private + */ + _hasConstraint: boolean; + private _visible; + protected _cachedFrameIndex: number; + /** + * @internal + * @private + */ + readonly _blendState: BlendState; + /** + * @internal + * @private + */ + _boneData: BoneData; + /** + * @internal + * @private + */ + _cachedFrameIndices: Array | null; + /** + * @inheritDoc + */ + protected _onClear(): void; + /** + * @private + */ + protected _updateGlobalTransformMatrix(isCache: boolean): void; + /** + * @inheritDoc + */ + _setArmature(value: Armature | null): void; + /** + * @internal + * @private + */ + init(boneData: BoneData): void; + /** + * @internal + * @private + */ + update(cacheFrameIndex: number): void; + /** + * @internal + * @private + */ + updateByConstraint(): void; + /** + * - Forces the bone to update the transform in the next frame. + * When the bone is not animated or its animation state is finished, the bone will not continue to update, + * and when the skeleton must be updated for some reason, the method needs to be called explicitly. + * @example + *
+         *     let bone = armature.getBone("arm");
+         *     bone.offset.scaleX = 2.0;
+         *     bone.invalidUpdate();
+         * 
+ * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 强制骨骼在下一帧更新变换。 + * 当该骨骼没有动画状态或其动画状态播放完成时,骨骼将不在继续更新,而此时由于某些原因必须更新骨骼时,则需要显式调用该方法。 + * @example + *
+         *     let bone = armature.getBone("arm");
+         *     bone.offset.scaleX = 2.0;
+         *     bone.invalidUpdate();
+         * 
+ * @version DragonBones 3.0 + * @language zh_CN + */ + invalidUpdate(): void; + /** + * - Check whether the bone contains a specific bone or slot. + * @see dragonBones.Bone + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 检查该骨骼是否包含特定的骨骼或插槽。 + * @see dragonBones.Bone + * @see dragonBones.Slot + * @version DragonBones 3.0 + * @language zh_CN + */ + contains(value: TransformObject): boolean; + /** + * - The bone data. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 骨骼数据。 + * @version DragonBones 4.5 + * @language zh_CN + */ + readonly boneData: BoneData; + /** + * - The visible of all slots in the bone. + * @default true + * @see dragonBones.Slot#visible + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 此骨骼所有插槽的可见。 + * @default true + * @see dragonBones.Slot#visible + * @version DragonBones 3.0 + * @language zh_CN + */ + visible: boolean; + /** + * - The bone name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 骨骼名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly name: string; + /** + * - Deprecated, please refer to {@link dragonBones.Armature#getBones()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link dragonBones.Armature#getBones()}。 + * @deprecated + * @language zh_CN + */ + getBones(): Array; + /** + * - Deprecated, please refer to {@link dragonBones.Armature#getSlots()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link dragonBones.Armature#getSlots()}。 + * @deprecated + * @language zh_CN + */ + getSlots(): Array; + /** + * - Deprecated, please refer to {@link dragonBones.Armature#getSlot()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link dragonBones.Armature#getSlot()}。 + * @deprecated + * @language zh_CN + */ + readonly slot: Slot | null; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + class Surface extends Bone { + static toString(): string; + private _dX; + private _dY; + private _k; + private _kX; + private _kY; + /** + * For debug draw. + * @internal + * @private + */ + readonly _vertices: Array; + /** + * For timeline state. + * @internal + * @private + */ + readonly _deformVertices: Array; + /** + * x1, y1, x2, y2, x3, y3, x4, y4, d1X, d1Y, d2X, d2Y + */ + private readonly _hullCache; + /** + * Inside [flag, a, b, c, d, tx, ty], Outside [flag, a, b, c, d, tx, ty] + */ + private readonly _matrixCahce; + /** + * @inheritDoc + */ + protected _onClear(): void; + private _getAffineTransform(x, y, lX, lY, aX, aY, bX, bY, cX, cY, transform, matrix, isDown); + private _updateVertices(); + /** + * @private + */ + protected _updateGlobalTransformMatrix(isCache: boolean): void; + _getGlobalTransformMatrix(x: number, y: number): Matrix; + init(surfaceData: SurfaceData): void; + /** + * @internal + * @private + */ + update(cacheFrameIndex: number): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The slot attached to the armature, controls the display status and properties of the display object. + * A bone can contain multiple slots. + * A slot can contain multiple display objects, displaying only one of the display objects at a time, + * but you can toggle the display object into frame animation while the animation is playing. + * The display object can be a normal texture, or it can be a display of a child armature, a grid display object, + * and a custom other display object. + * @see dragonBones.Armature + * @see dragonBones.Bone + * @see dragonBones.SlotData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 插槽附着在骨骼上,控制显示对象的显示状态和属性。 + * 一个骨骼上可以包含多个插槽。 + * 一个插槽中可以包含多个显示对象,同一时间只能显示其中的一个显示对象,但可以在动画播放的过程中切换显示对象实现帧动画。 + * 显示对象可以是普通的图片纹理,也可以是子骨架的显示容器,网格显示对象,还可以是自定义的其他显示对象。 + * @see dragonBones.Armature + * @see dragonBones.Bone + * @see dragonBones.SlotData + * @version DragonBones 3.0 + * @language zh_CN + */ + abstract class Slot extends TransformObject { + /** + * - Displays the animated state or mixed group name controlled by the object, set to null to be controlled by all animation states. + * @default null + * @see dragonBones.AnimationState#displayControl + * @see dragonBones.AnimationState#name + * @see dragonBones.AnimationState#group + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 显示对象受到控制的动画状态或混合组名称,设置为 null 则表示受所有的动画状态控制。 + * @default null + * @see dragonBones.AnimationState#displayControl + * @see dragonBones.AnimationState#name + * @see dragonBones.AnimationState#group + * @version DragonBones 4.5 + * @language zh_CN + */ + displayController: string | null; + /** + * @private + */ + protected _displayDirty: boolean; + /** + * @private + */ + protected _zOrderDirty: boolean; + /** + * @private + */ + protected _visibleDirty: boolean; + /** + * @private + */ + protected _blendModeDirty: boolean; + /** + * @internal + * @private + */ + _colorDirty: boolean; + /** + * @internal + * @private + */ + _meshDirty: boolean; + /** + * @private + */ + protected _transformDirty: boolean; + /** + * @private + */ + protected _visible: boolean; + /** + * @private + */ + protected _blendMode: BlendMode; + /** + * @private + */ + protected _displayIndex: number; + /** + * @private + */ + protected _animationDisplayIndex: number; + /** + * @internal + * @private + */ + _zOrder: number; + /** + * @private + */ + protected _cachedFrameIndex: number; + /** + * @internal + * @private + */ + _pivotX: number; + /** + * @internal + * @private + */ + _pivotY: number; + /** + * @private + */ + protected readonly _localMatrix: Matrix; + /** + * @internal + * @private + */ + readonly _colorTransform: ColorTransform; + /** + * @internal + * @private + */ + readonly _deformVertices: Array; + /** + * @private + */ + readonly _displayDatas: Array; + /** + * @private + */ + protected readonly _displayList: Array; + /** + * @private + */ + protected readonly _meshBones: Array; + /** + * @private + */ + protected readonly _meshSlots: Array; + /** + * @internal + * @private + */ + _slotData: SlotData; + /** + * @private + */ + protected _rawDisplayDatas: Array | null; + /** + * @private + */ + protected _displayData: DisplayData | null; + /** + * @private + */ + protected _textureData: TextureData | null; + /** + * @internal + * @private + */ + _meshData: MeshDisplayData | null; + /** + * @private + */ + protected _boundingBoxData: BoundingBoxData | null; + /** + * @private + */ + protected _rawDisplay: any; + /** + * @private + */ + protected _meshDisplay: any; + /** + * @private + */ + protected _display: any; + /** + * @private + */ + protected _childArmature: Armature | null; + /** + * @internal + * @private + */ + _cachedFrameIndices: Array | null; + /** + * @inheritDoc + */ + protected _onClear(): void; + /** + * @private + */ + protected abstract _initDisplay(value: any, isRetain: boolean): void; + /** + * @private + */ + protected abstract _disposeDisplay(value: any, isRelease: boolean): void; + /** + * @private + */ + protected abstract _onUpdateDisplay(): void; + /** + * @private + */ + protected abstract _addDisplay(): void; + /** + * @private + */ + protected abstract _replaceDisplay(value: any): void; + /** + * @private + */ + protected abstract _removeDisplay(): void; + /** + * @private + */ + protected abstract _updateZOrder(): void; + /** + * @private + */ + abstract _updateVisible(): void; + /** + * @private + */ + protected abstract _updateBlendMode(): void; + /** + * @private + */ + protected abstract _updateColor(): void; + /** + * @private + */ + protected abstract _updateFrame(): void; + /** + * @private + */ + protected abstract _updateMesh(): void; + /** + * @internal + * @private + */ + abstract _updateGlueMesh(): void; + /** + * @private + */ + protected abstract _updateTransform(): void; + /** + * @private + */ + protected abstract _identityTransform(): void; + /** + * @private + */ + protected _getDefaultRawDisplayData(): DisplayData | null; + /** + * @private + */ + protected _updateDisplayData(): void; + /** + * @private + */ + protected _updateDisplay(): void; + /** + * @private + */ + protected _updateGlobalTransformMatrix(isCache: boolean): void; + /** + * @private + */ + protected _isMeshBonesUpdate(): boolean; + /** + * @inheritDoc + */ + _setArmature(value: Armature | null): void; + /** + * @internal + * @private + */ + _setDisplayIndex(value: number, isAnimation?: boolean): boolean; + /** + * @internal + * @private + */ + _setZorder(value: number): boolean; + /** + * @internal + * @private + */ + _setColor(value: ColorTransform): boolean; + /** + * @internal + * @private + */ + _setDisplayList(value: Array | null): boolean; + /** + * @internal + * @private + */ + init(slotData: SlotData, displayDatas: Array | null, rawDisplay: any, meshDisplay: any): void; + /** + * @internal + * @private + */ + update(cacheFrameIndex: number): void; + /** + * @private + */ + updateTransformAndMatrix(): void; + /** + * @private + */ + replaceDisplayData(value: DisplayData | null, displayIndex?: number): void; + /** + * - Check whether a specific point is inside a custom bounding box in the slot. + * The coordinate system of the point is the inner coordinate system of the armature. + * Custom bounding boxes need to be customized in Dragonbones Pro. + * @param x - The horizontal coordinate of the point. + * @param y - The vertical coordinate of the point. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 检查特定点是否在插槽的自定义边界框内。 + * 点的坐标系为骨架内坐标系。 + * 自定义边界框需要在 DragonBones Pro 中自定义。 + * @param x - 点的水平坐标。 + * @param y - 点的垂直坐标。 + * @version DragonBones 5.0 + * @language zh_CN + */ + containsPoint(x: number, y: number): boolean; + /** + * - Check whether a specific segment intersects a custom bounding box for the slot. + * The coordinate system of the segment and intersection is the inner coordinate system of the armature. + * Custom bounding boxes need to be customized in Dragonbones Pro. + * @param xA - The horizontal coordinate of the beginning of the segment. + * @param yA - The vertical coordinate of the beginning of the segment. + * @param xB - The horizontal coordinate of the end point of the segment. + * @param yB - The vertical coordinate of the end point of the segment. + * @param intersectionPointA - The first intersection at which a line segment intersects the bounding box from the beginning to the end. (If not set, the intersection point will not calculated) + * @param intersectionPointB - The first intersection at which a line segment intersects the bounding box from the end to the beginning. (If not set, the intersection point will not calculated) + * @param normalRadians - The normal radians of the tangent of the intersection boundary box. [x: Normal radian of the first intersection tangent, y: Normal radian of the second intersection tangent] (If not set, the normal will not calculated) + * @returns Intersection situation. [1: Disjoint and segments within the bounding box, 0: Disjoint, 1: Intersecting and having a nodal point and ending in the bounding box, 2: Intersecting and having a nodal point and starting at the bounding box, 3: Intersecting and having two intersections, N: Intersecting and having N intersections] + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 检查特定线段是否与插槽的自定义边界框相交。 + * 线段和交点的坐标系均为骨架内坐标系。 + * 自定义边界框需要在 DragonBones Pro 中自定义。 + * @param xA - 线段起点的水平坐标。 + * @param yA - 线段起点的垂直坐标。 + * @param xB - 线段终点的水平坐标。 + * @param yB - 线段终点的垂直坐标。 + * @param intersectionPointA - 线段从起点到终点与边界框相交的第一个交点。 (如果未设置,则不计算交点) + * @param intersectionPointB - 线段从终点到起点与边界框相交的第一个交点。 (如果未设置,则不计算交点) + * @param normalRadians - 交点边界框切线的法线弧度。 [x: 第一个交点切线的法线弧度, y: 第二个交点切线的法线弧度] (如果未设置,则不计算法线) + * @returns 相交的情况。 [-1: 不相交且线段在包围盒内, 0: 不相交, 1: 相交且有一个交点且终点在包围盒内, 2: 相交且有一个交点且起点在包围盒内, 3: 相交且有两个交点, N: 相交且有 N 个交点] + * @version DragonBones 5.0 + * @language zh_CN + */ + intersectsSegment(xA: number, yA: number, xB: number, yB: number, intersectionPointA?: { + x: number; + y: number; + } | null, intersectionPointB?: { + x: number; + y: number; + } | null, normalRadians?: { + x: number; + y: number; + } | null): number; + /** + * - Forces the slot to update the state of the display object in the next frame. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 强制插槽在下一帧更新显示对象的状态。 + * @version DragonBones 4.5 + * @language zh_CN + */ + invalidUpdate(): void; + /** + * - The visible of slot's display object. + * @default true + * @version DragonBones 5.6 + * @language en_US + */ + /** + * - 插槽的显示对象的可见。 + * @default true + * @version DragonBones 5.6 + * @language zh_CN + */ + visible: boolean; + /** + * - The index of the display object displayed in the display list. + * @example + *
+         *     let slot = armature.getSlot("weapon");
+         *     slot.displayIndex = 3;
+         *     slot.displayController = "none";
+         * 
+ * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 此时显示的显示对象在显示列表中的索引。 + * @example + *
+         *     let slot = armature.getSlot("weapon");
+         *     slot.displayIndex = 3;
+         *     slot.displayController = "none";
+         * 
+ * @version DragonBones 4.5 + * @language zh_CN + */ + displayIndex: number; + /** + * - The slot name. + * @see dragonBones.SlotData#name + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 插槽名称。 + * @see dragonBones.SlotData#name + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly name: string; + /** + * - Contains a display list of display objects or child armatures. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 包含显示对象或子骨架的显示列表。 + * @version DragonBones 3.0 + * @language zh_CN + */ + displayList: Array; + /** + * - The slot data. + * @see dragonBones.SlotData + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 插槽数据。 + * @see dragonBones.SlotData + * @version DragonBones 4.5 + * @language zh_CN + */ + readonly slotData: SlotData; + /** + * @private + */ + rawDisplayDatas: Array | null; + /** + * - The custom bounding box data for the slot at current time. + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 插槽此时的自定义包围盒数据。 + * @version DragonBones 5.0 + * @language zh_CN + */ + readonly boundingBoxData: BoundingBoxData | null; + /** + * @private + */ + readonly rawDisplay: any; + /** + * @private + */ + readonly meshDisplay: any; + /** + * - The display object that the slot displays at this time. + * @example + *
+         *     let slot = armature.getSlot("text");
+         *     slot.display = new yourEngine.TextField();
+         * 
+ * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 插槽此时显示的显示对象。 + * @example + *
+         *     let slot = armature.getSlot("text");
+         *     slot.display = new yourEngine.TextField();
+         * 
+ * @version DragonBones 3.0 + * @language zh_CN + */ + display: any; + /** + * - The child armature that the slot displayed at current time. + * @example + *
+         *     let slot = armature.getSlot("weapon");
+         *     slot.childArmature = factory.buildArmature("weapon_blabla", "weapon_blabla_project");
+         * 
+ * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 插槽此时显示的子骨架。 + * @example + *
+         *     let slot = armature.getSlot("weapon");
+         *     slot.childArmature = factory.buildArmature("weapon_blabla", "weapon_blabla_project");
+         * 
+ * @version DragonBones 3.0 + * @language zh_CN + */ + childArmature: Armature | null; + /** + * - Deprecated, please refer to {@link #display}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #display}。 + * @deprecated + * @language zh_CN + */ + getDisplay(): any; + /** + * - Deprecated, please refer to {@link #display}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #display}。 + * @deprecated + * @language zh_CN + */ + setDisplay(value: any): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + abstract class Constraint extends BaseObject { + protected static readonly _helpMatrix: Matrix; + protected static readonly _helpTransform: Transform; + protected static readonly _helpPoint: Point; + /** + * - For timeline state. + * @internal + */ + _constraintData: ConstraintData; + protected _armature: Armature; + /** + * - For sort bones. + * @internal + */ + _target: Bone; + /** + * - For sort bones. + * @internal + */ + _root: Bone; + protected _bone: Bone | null; + protected _onClear(): void; + abstract init(constraintData: ConstraintData, armature: Armature): void; + abstract update(): void; + abstract invalidUpdate(): void; + readonly name: string; + } + /** + * @internal + * @private + */ + class IKConstraint extends Constraint { + static toString(): string; + private _scaleEnabled; + /** + * - For timeline state. + * @internal + */ + _bendPositive: boolean; + /** + * - For timeline state. + * @internal + */ + _weight: number; + protected _onClear(): void; + private _computeA(); + private _computeB(); + init(constraintData: ConstraintData, armature: Armature): void; + update(): void; + invalidUpdate(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - Play animation interface. (Both Armature and Wordclock implement the interface) + * Any instance that implements the interface can be added to the Worldclock instance and advance time by Worldclock instance uniformly. + * @see dragonBones.WorldClock + * @see dragonBones.Armature + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 播放动画接口。 (Armature 和 WordClock 都实现了该接口) + * 任何实现了此接口的实例都可以添加到 WorldClock 实例中,由 WorldClock 实例统一更新时间。 + * @see dragonBones.WorldClock + * @see dragonBones.Armature + * @version DragonBones 3.0 + * @language zh_CN + */ + interface IAnimatable { + /** + * - Advance time. + * @param passedTime - Passed time. (In seconds) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 更新时间。 + * @param passedTime - 前进的时间。 (以秒为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + advanceTime(passedTime: number): void; + /** + * - The Wordclock instance to which the current belongs. + * @example + *
+         *     armature.clock = factory.clock; // Add armature to clock.
+         *     armature.clock = null; // Remove armature from clock.
+         * 
+ * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 当前所属的 WordClock 实例。 + * @example + *
+         *     armature.clock = factory.clock; // 将骨架添加到时钟。
+         *     armature.clock = null; // 将骨架从时钟移除。
+         * 
+ * @version DragonBones 5.0 + * @language zh_CN + */ + clock: WorldClock | null; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - Worldclock provides clock support for animations, advance time for each IAnimatable object added to the instance. + * @see dragonBones.IAnimateble + * @see dragonBones.Armature + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - WorldClock 对动画提供时钟支持,为每个加入到该实例的 IAnimatable 对象更新时间。 + * @see dragonBones.IAnimateble + * @see dragonBones.Armature + * @version DragonBones 3.0 + * @language zh_CN + */ + class WorldClock implements IAnimatable { + /** + * - Current time. (In seconds) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 当前的时间。 (以秒为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + time: number; + /** + * - The play speed, used to control animation speed-shift play. + * [0: Stop play, (0~1): Slow play, 1: Normal play, (1~N): Fast play] + * @default 1.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 播放速度,用于控制动画变速播放。 + * [0: 停止播放, (0~1): 慢速播放, 1: 正常播放, (1~N): 快速播放] + * @default 1.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + timeScale: number; + private readonly _animatebles; + private _clock; + /** + * - Creating a Worldclock instance. Typically, you do not need to create Worldclock instance. + * When multiple Worldclock instances are running at different speeds, can achieving some specific animation effects, such as bullet time. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 创建一个 WorldClock 实例。通常并不需要创建 WorldClock 实例。 + * 当多个 WorldClock 实例使用不同的速度运行时,可以实现一些特殊的动画效果,比如子弹时间等。 + * @version DragonBones 3.0 + * @language zh_CN + */ + constructor(time?: number); + /** + * - Advance time for all IAnimatable instances. + * @param passedTime - Passed time. [-1: Automatically calculates the time difference between the current frame and the previous frame, [0~N): Passed time] (In seconds) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 为所有的 IAnimatable 实例更新时间。 + * @param passedTime - 前进的时间。 [-1: 自动计算当前帧与上一帧的时间差, [0~N): 前进的时间] (以秒为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + advanceTime(passedTime: number): void; + /** + * - Check whether contains a specific instance of IAnimatable. + * @param value - The IAnimatable instance. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 检查是否包含特定的 IAnimatable 实例。 + * @param value - IAnimatable 实例。 + * @version DragonBones 3.0 + * @language zh_CN + */ + contains(value: IAnimatable): boolean; + /** + * - Add IAnimatable instance. + * @param value - The IAnimatable instance. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 添加 IAnimatable 实例。 + * @param value - IAnimatable 实例。 + * @version DragonBones 3.0 + * @language zh_CN + */ + add(value: IAnimatable): void; + /** + * - Removes a specified IAnimatable instance. + * @param value - The IAnimatable instance. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 移除特定的 IAnimatable 实例。 + * @param value - IAnimatable 实例。 + * @version DragonBones 3.0 + * @language zh_CN + */ + remove(value: IAnimatable): void; + /** + * - Clear all IAnimatable instances. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 清除所有的 IAnimatable 实例。 + * @version DragonBones 3.0 + * @language zh_CN + */ + clear(): void; + /** + * @inheritDoc + */ + clock: WorldClock | null; + /** + * - Deprecated, please refer to {@link dragonBones.BaseFactory#clock}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link dragonBones.BaseFactory#clock}。 + * @deprecated + * @language zh_CN + */ + static readonly clock: WorldClock; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The animation player is used to play the animation data and manage the animation states. + * @see dragonBones.AnimationData + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画播放器用来播放动画数据和管理动画状态。 + * @see dragonBones.AnimationData + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language zh_CN + */ + class Animation extends BaseObject { + static toString(): string; + /** + * - The play speed of all animations. [0: Stop, (0~1): Slow, 1: Normal, (1~N): Fast] + * @default 1.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 所有动画的播放速度。 [0: 停止播放, (0~1): 慢速播放, 1: 正常播放, (1~N): 快速播放] + * @default 1.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + timeScale: number; + private _lockUpdate; + private _animationDirty; + private _inheritTimeScale; + private readonly _animationNames; + private readonly _animationStates; + private readonly _animations; + private _armature; + private _animationConfig; + private _lastAnimationState; + /** + * @private + */ + protected _onClear(): void; + private _fadeOut(animationConfig); + /** + * @internal + * @private + */ + init(armature: Armature): void; + /** + * @internal + * @private + */ + advanceTime(passedTime: number): void; + /** + * - Clear all animations states. + * @see dragonBones.AnimationState + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 清除所有的动画状态。 + * @see dragonBones.AnimationState + * @version DragonBones 4.5 + * @language zh_CN + */ + reset(): void; + /** + * - Pause a specific animation state. + * @param animationName - The name of animation state. (If not set, it will pause all animations) + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 暂停指定动画状态的播放。 + * @param animationName - 动画状态名称。 (如果未设置,则暂停所有动画) + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language zh_CN + */ + stop(animationName?: string | null): void; + /** + * - Play animation with a specific animation config. + * The API is still in the experimental phase and may encounter bugs or stability or compatibility issues when used. + * @param animationConfig - The animation config. + * @returns The playing animation state. + * @see dragonBones.AnimationConfig + * @beta + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 通过指定的动画配置来播放动画。 + * 该 API 仍在实验阶段,使用时可能遭遇 bug 或稳定性或兼容性问题。 + * @param animationConfig - 动画配置。 + * @returns 播放的动画状态。 + * @see dragonBones.AnimationConfig + * @beta + * @version DragonBones 5.0 + * @language zh_CN + */ + playConfig(animationConfig: AnimationConfig): AnimationState | null; + /** + * - Play a specific animation. + * @param animationName - The name of animation data. (If not set, The default animation will be played, or resume the animation playing from pause status, or replay the last playing animation) + * @param playTimes - Playing repeat times. [-1: Use default value of the animation data, 0: No end loop playing, [1~N]: Repeat N times] (default: -1) + * @returns The playing animation state. + * @example + *
+         *     armature.animation.play("walk");
+         * 
+ * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 播放指定动画。 + * @param animationName - 动画数据名称。 (如果未设置,则播放默认动画,或将暂停状态切换为播放状态,或重新播放之前播放的动画) + * @param playTimes - 循环播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1) + * @returns 播放的动画状态。 + * @example + *
+         *     armature.animation.play("walk");
+         * 
+ * @version DragonBones 3.0 + * @language zh_CN + */ + play(animationName?: string | null, playTimes?: number): AnimationState | null; + /** + * - Fade in a specific animation. + * @param animationName - The name of animation data. + * @param fadeInTime - The fade in time. [-1: Use the default value of animation data, [0~N]: The fade in time (In seconds)] (Default: -1) + * @param playTimes - playing repeat times. [-1: Use the default value of animation data, 0: No end loop playing, [1~N]: Repeat N times] (Default: -1) + * @param layer - The blending layer, the animation states in high level layer will get the blending weights with high priority, when the total blending weights are more than 1.0, there will be no more weights can be allocated to the other animation states. (Default: 0) + * @param group - The blending group name, it is typically used to specify the substitution of multiple animation states blending. (Default: null) + * @param fadeOutMode - The fade out mode, which is typically used to specify alternate mode of multiple animation states blending. (Default: AnimationFadeOutMode.SameLayerAndGroup) + * @returns The playing animation state. + * @example + *
+         *     armature.animation.fadeIn("walk", 0.3, 0, 0, "normalGroup").resetToPose = false;
+         *     armature.animation.fadeIn("attack", 0.3, 1, 0, "attackGroup").resetToPose = false;
+         * 
+ * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 淡入播放指定的动画。 + * @param animationName - 动画数据名称。 + * @param fadeInTime - 淡入时间。 [-1: 使用动画数据默认值, [0~N]: 淡入时间 (以秒为单位)] (默认: -1) + * @param playTimes - 播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1) + * @param layer - 混合图层,图层高的动画状态会优先获取混合权重,当混合权重分配总和超过 1.0 时,剩余的动画状态将不能再获得权重分配。 (默认: 0) + * @param group - 混合组名称,该属性通常用来指定多个动画状态混合时的相互替换关系。 (默认: null) + * @param fadeOutMode - 淡出模式,该属性通常用来指定多个动画状态混合时的相互替换模式。 (默认: AnimationFadeOutMode.SameLayerAndGroup) + * @returns 播放的动画状态。 + * @example + *
+         *     armature.animation.fadeIn("walk", 0.3, 0, 0, "normalGroup").resetToPose = false;
+         *     armature.animation.fadeIn("attack", 0.3, 1, 0, "attackGroup").resetToPose = false;
+         * 
+ * @version DragonBones 4.5 + * @language zh_CN + */ + fadeIn(animationName: string, fadeInTime?: number, playTimes?: number, layer?: number, group?: string | null, fadeOutMode?: AnimationFadeOutMode): AnimationState | null; + /** + * - Play a specific animation from the specific time. + * @param animationName - The name of animation data. + * @param time - The start time point of playing. (In seconds) + * @param playTimes - Playing repeat times. [-1: Use the default value of animation data, 0: No end loop playing, [1~N]: Repeat N times] (Default: -1) + * @returns The played animation state. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 从指定时间开始播放指定的动画。 + * @param animationName - 动画数据名称。 + * @param time - 播放开始的时间。 (以秒为单位) + * @param playTimes - 循环播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1) + * @returns 播放的动画状态。 + * @version DragonBones 4.5 + * @language zh_CN + */ + gotoAndPlayByTime(animationName: string, time?: number, playTimes?: number): AnimationState | null; + /** + * - Play a specific animation from the specific frame. + * @param animationName - The name of animation data. + * @param frame - The start frame of playing. + * @param playTimes - Playing repeat times. [-1: Use the default value of animation data, 0: No end loop playing, [1~N]: Repeat N times] (Default: -1) + * @returns The played animation state. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 从指定帧开始播放指定的动画。 + * @param animationName - 动画数据名称。 + * @param frame - 播放开始的帧数。 + * @param playTimes - 播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1) + * @returns 播放的动画状态。 + * @version DragonBones 4.5 + * @language zh_CN + */ + gotoAndPlayByFrame(animationName: string, frame?: number, playTimes?: number): AnimationState | null; + /** + * - Play a specific animation from the specific progress. + * @param animationName - The name of animation data. + * @param progress - The start progress value of playing. + * @param playTimes - Playing repeat times. [-1: Use the default value of animation data, 0: No end loop playing, [1~N]: Repeat N times] (Default: -1) + * @returns The played animation state. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 从指定进度开始播放指定的动画。 + * @param animationName - 动画数据名称。 + * @param progress - 开始播放的进度。 + * @param playTimes - 播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1) + * @returns 播放的动画状态。 + * @version DragonBones 4.5 + * @language zh_CN + */ + gotoAndPlayByProgress(animationName: string, progress?: number, playTimes?: number): AnimationState | null; + /** + * - Stop a specific animation at the specific time. + * @param animationName - The name of animation data. + * @param time - The stop time. (In seconds) + * @returns The played animation state. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 在指定时间停止指定动画播放 + * @param animationName - 动画数据名称。 + * @param time - 停止的时间。 (以秒为单位) + * @returns 播放的动画状态。 + * @version DragonBones 4.5 + * @language zh_CN + */ + gotoAndStopByTime(animationName: string, time?: number): AnimationState | null; + /** + * - Stop a specific animation at the specific frame. + * @param animationName - The name of animation data. + * @param frame - The stop frame. + * @returns The played animation state. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 在指定帧停止指定动画的播放 + * @param animationName - 动画数据名称。 + * @param frame - 停止的帧数。 + * @returns 播放的动画状态。 + * @version DragonBones 4.5 + * @language zh_CN + */ + gotoAndStopByFrame(animationName: string, frame?: number): AnimationState | null; + /** + * - Stop a specific animation at the specific progress. + * @param animationName - The name of animation data. + * @param progress - The stop progress value. + * @returns The played animation state. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 在指定的进度停止指定的动画播放。 + * @param animationName - 动画数据名称。 + * @param progress - 停止进度。 + * @returns 播放的动画状态。 + * @version DragonBones 4.5 + * @language zh_CN + */ + gotoAndStopByProgress(animationName: string, progress?: number): AnimationState | null; + /** + * - Get a specific animation state. + * @param animationName - The name of animation state. + * @example + *
+         *     armature.animation.play("walk");
+         *     let walkState = armature.animation.getState("walk");
+         *     walkState.timeScale = 0.5;
+         * 
+ * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取指定的动画状态 + * @param animationName - 动画状态名称。 + * @example + *
+         *     armature.animation.play("walk");
+         *     let walkState = armature.animation.getState("walk");
+         *     walkState.timeScale = 0.5;
+         * 
+ * @version DragonBones 3.0 + * @language zh_CN + */ + getState(animationName: string): AnimationState | null; + /** + * - Check whether a specific animation data is included. + * @param animationName - The name of animation data. + * @see dragonBones.AnimationData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 检查是否包含指定的动画数据 + * @param animationName - 动画数据名称。 + * @see dragonBones.AnimationData + * @version DragonBones 3.0 + * @language zh_CN + */ + hasAnimation(animationName: string): boolean; + /** + * - Get all the animation states. + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 获取所有的动画状态 + * @version DragonBones 5.1 + * @language zh_CN + */ + getStates(): Array; + /** + * - Check whether there is an animation state is playing + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 检查是否有动画状态正在播放 + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly isPlaying: boolean; + /** + * - Check whether all the animation states' playing were finished. + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 检查是否所有的动画状态均已播放完毕。 + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly isCompleted: boolean; + /** + * - The name of the last playing animation state. + * @see #lastAnimationState + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 上一个播放的动画状态名称 + * @see #lastAnimationState + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly lastAnimationName: string; + /** + * - The name of all animation data + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 所有动画数据的名称 + * @version DragonBones 4.5 + * @language zh_CN + */ + readonly animationNames: Array; + /** + * - All animation data. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 所有的动画数据。 + * @version DragonBones 4.5 + * @language zh_CN + */ + animations: Map; + /** + * - An AnimationConfig instance that can be used quickly. + * @see dragonBones.AnimationConfig + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 一个可以快速使用的动画配置实例。 + * @see dragonBones.AnimationConfig + * @version DragonBones 5.0 + * @language zh_CN + */ + readonly animationConfig: AnimationConfig; + /** + * - The last playing animation state + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 上一个播放的动画状态 + * @see dragonBones.AnimationState + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly lastAnimationState: AnimationState | null; + /** + * - Deprecated, please refer to {@link #play()} {@link #fadeIn()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #play()} {@link #fadeIn()}。 + * @deprecated + * @language zh_CN + */ + gotoAndPlay(animationName: string, fadeInTime?: number, duration?: number, playTimes?: number, layer?: number, group?: string | null, fadeOutMode?: AnimationFadeOutMode, pauseFadeOut?: boolean, pauseFadeIn?: boolean): AnimationState | null; + /** + * - Deprecated, please refer to {@link #gotoAndStopByTime()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #gotoAndStopByTime()}。 + * @deprecated + * @language zh_CN + */ + gotoAndStop(animationName: string, time?: number): AnimationState | null; + /** + * - Deprecated, please refer to {@link #animationNames}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #animationNames}。 + * @deprecated + * @language zh_CN + */ + readonly animationList: Array; + /** + * - Deprecated, please refer to {@link #animationNames}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #animationNames}。 + * @deprecated + * @language zh_CN + */ + readonly animationDataList: Array; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The animation state is generated when the animation data is played. + * @see dragonBones.Animation + * @see dragonBones.AnimationData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画状态由播放动画数据时产生。 + * @see dragonBones.Animation + * @see dragonBones.AnimationData + * @version DragonBones 3.0 + * @language zh_CN + */ + class AnimationState extends BaseObject { + static toString(): string; + /** + * @private + */ + actionEnabled: boolean; + /** + * @private + */ + additiveBlending: boolean; + /** + * - Whether the animation state has control over the display object properties of the slots. + * Sometimes blend a animation state does not want it to control the display object properties of the slots, + * especially if other animation state are controlling the display object properties of the slots. + * @default true + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 动画状态是否对插槽的显示对象属性有控制权。 + * 有时混合一个动画状态并不希望其控制插槽的显示对象属性, + * 尤其是其他动画状态正在控制这些插槽的显示对象属性时。 + * @default true + * @version DragonBones 5.0 + * @language zh_CN + */ + displayControl: boolean; + /** + * - Whether to reset the objects without animation to the armature pose when the animation state is start to play. + * This property should usually be set to false when blend multiple animation states. + * @default true + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 开始播放动画状态时是否将没有动画的对象重置为骨架初始值。 + * 通常在混合多个动画状态时应该将该属性设置为 false。 + * @default true + * @version DragonBones 5.1 + * @language zh_CN + */ + resetToPose: boolean; + /** + * - The play times. [0: Loop play, [1~N]: Play N times] + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 播放次数。 [0: 无限循环播放, [1~N]: 循环播放 N 次] + * @version DragonBones 3.0 + * @language zh_CN + */ + playTimes: number; + /** + * - The blend layer. + * High layer animation state will get the blend weight first. + * When the blend weight is assigned more than 1, the remaining animation states will no longer get the weight assigned. + * @readonly + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 混合图层。 + * 图层高的动画状态会优先获取混合权重。 + * 当混合权重分配超过 1 时,剩余的动画状态将不再获得权重分配。 + * @readonly + * @version DragonBones 5.0 + * @language zh_CN + */ + layer: number; + /** + * - The play speed. + * The value is an overlay relationship with {@link dragonBones.Animation#timeScale}. + * [(-N~0): Reverse play, 0: Stop play, (0~1): Slow play, 1: Normal play, (1~N): Fast play] + * @default 1.0 + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 播放速度。 + * 该值与 {@link dragonBones.Animation#timeScale} 是叠加关系。 + * [(-N~0): 倒转播放, 0: 停止播放, (0~1): 慢速播放, 1: 正常播放, (1~N): 快速播放] + * @default 1.0 + * @version DragonBones 3.0 + * @language zh_CN + */ + timeScale: number; + /** + * - The blend weight. + * @default 1.0 + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 混合权重。 + * @default 1.0 + * @version DragonBones 5.0 + * @language zh_CN + */ + weight: number; + /** + * - The auto fade out time when the animation state play completed. + * [-1: Do not fade out automatically, [0~N]: The fade out time] (In seconds) + * @default -1.0 + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 动画状态播放完成后的自动淡出时间。 + * [-1: 不自动淡出, [0~N]: 淡出时间] (以秒为单位) + * @default -1.0 + * @version DragonBones 5.0 + * @language zh_CN + */ + autoFadeOutTime: number; + /** + * @private + */ + fadeTotalTime: number; + /** + * - The name of the animation state. (Can be different from the name of the animation data) + * @readonly + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 动画状态名称。 (可以不同于动画数据) + * @readonly + * @version DragonBones 5.0 + * @language zh_CN + */ + name: string; + /** + * - The blend group name of the animation state. + * This property is typically used to specify the substitution of multiple animation states blend. + * @readonly + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 混合组名称。 + * 该属性通常用来指定多个动画状态混合时的相互替换关系。 + * @readonly + * @version DragonBones 5.0 + * @language zh_CN + */ + group: string; + private _timelineDirty; + /** + * - xx: Play Enabled, Fade Play Enabled + * @internal + * @private + */ + _playheadState: number; + /** + * -1: Fade in, 0: Fade complete, 1: Fade out; + * @internal + * @private + */ + _fadeState: number; + /** + * -1: Fade start, 0: Fading, 1: Fade complete; + * @internal + * @private + */ + _subFadeState: number; + /** + * @internal + * @private + */ + _position: number; + /** + * @internal + * @private + */ + _duration: number; + private _fadeTime; + private _time; + /** + * @internal + * @private + */ + _fadeProgress: number; + /** + * @internal + * @private + */ + _weightResult: number; + /** + * @internal + * @private + */ + readonly _blendState: BlendState; + private readonly _boneMask; + private readonly _boneTimelines; + private readonly _surfaceTimelines; + private readonly _slotTimelines; + private readonly _constraintTimelines; + private readonly _animationTimelines; + private readonly _poseTimelines; + private readonly _bonePoses; + /** + * @internal + * @private + */ + _animationData: AnimationData; + private _armature; + /** + * @internal + * @private + */ + _actionTimeline: ActionTimelineState; + private _zOrderTimeline; + /** + * @internal + * @private + */ + _parent: AnimationState; + /** + * @private + */ + protected _onClear(): void; + private _updateTimelines(); + private _updateBoneAndSlotTimelines(); + private _advanceFadeTime(passedTime); + /** + * @internal + * @private + */ + init(armature: Armature, animationData: AnimationData, animationConfig: AnimationConfig): void; + /** + * @internal + * @private + */ + advanceTime(passedTime: number, cacheFrameRate: number): void; + /** + * - Continue play. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 继续播放。 + * @version DragonBones 3.0 + * @language zh_CN + */ + play(): void; + /** + * - Stop play. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 暂停播放。 + * @version DragonBones 3.0 + * @language zh_CN + */ + stop(): void; + /** + * - Fade out the animation state. + * @param fadeOutTime - The fade out time. (In seconds) + * @param pausePlayhead - Whether to pause the animation playing when fade out. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 淡出动画状态。 + * @param fadeOutTime - 淡出时间。 (以秒为单位) + * @param pausePlayhead - 淡出时是否暂停播放。 + * @version DragonBones 3.0 + * @language zh_CN + */ + fadeOut(fadeOutTime: number, pausePlayhead?: boolean): void; + /** + * - Check if a specific bone mask is included. + * @param name - The bone name. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 检查是否包含特定骨骼遮罩。 + * @param name - 骨骼名称。 + * @version DragonBones 3.0 + * @language zh_CN + */ + containsBoneMask(name: string): boolean; + /** + * - Add a specific bone mask. + * @param name - The bone name. + * @param recursive - Whether or not to add a mask to the bone's sub-bone. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 添加特定的骨骼遮罩。 + * @param name - 骨骼名称。 + * @param recursive - 是否为该骨骼的子骨骼添加遮罩。 + * @version DragonBones 3.0 + * @language zh_CN + */ + addBoneMask(name: string, recursive?: boolean): void; + /** + * - Remove the mask of a specific bone. + * @param name - The bone name. + * @param recursive - Whether to remove the bone's sub-bone mask. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 删除特定骨骼的遮罩。 + * @param name - 骨骼名称。 + * @param recursive - 是否删除该骨骼的子骨骼遮罩。 + * @version DragonBones 3.0 + * @language zh_CN + */ + removeBoneMask(name: string, recursive?: boolean): void; + /** + * - Remove all bone masks. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 删除所有骨骼遮罩。 + * @version DragonBones 3.0 + * @language zh_CN + */ + removeAllBoneMask(): void; + /** + * - Whether the animation state is fading in. + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 是否正在淡入。 + * @version DragonBones 5.1 + * @language zh_CN + */ + readonly isFadeIn: boolean; + /** + * - Whether the animation state is fading out. + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 是否正在淡出。 + * @version DragonBones 5.1 + * @language zh_CN + */ + readonly isFadeOut: boolean; + /** + * - Whether the animation state is fade completed. + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 是否淡入或淡出完毕。 + * @version DragonBones 5.1 + * @language zh_CN + */ + readonly isFadeComplete: boolean; + /** + * - Whether the animation state is playing. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 是否正在播放。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly isPlaying: boolean; + /** + * - Whether the animation state is play completed. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 是否播放完毕。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly isCompleted: boolean; + /** + * - The times has been played. + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 已经循环播放的次数。 + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly currentPlayTimes: number; + /** + * - The total time. (In seconds) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 总播放时间。 (以秒为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly totalTime: number; + /** + * - The time is currently playing. (In seconds) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 当前播放的时间。 (以秒为单位) + * @version DragonBones 3.0 + * @language zh_CN + */ + currentTime: number; + /** + * - The animation data. + * @see dragonBones.AnimationData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 动画数据。 + * @see dragonBones.AnimationData + * @version DragonBones 3.0 + * @language zh_CN + */ + readonly animationData: AnimationData; + } + /** + * @internal + * @private + */ + class BonePose extends BaseObject { + static toString(): string; + readonly current: Transform; + readonly delta: Transform; + readonly result: Transform; + protected _onClear(): void; + } + /** + * @internal + * @private + */ + class BlendState { + dirty: boolean; + layer: number; + leftWeight: number; + layerWeight: number; + blendWeight: number; + update(weight: number, layer: number): number; + clear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + const enum TweenState { + None = 0, + Once = 1, + Always = 2, + } + /** + * @internal + * @private + */ + abstract class TimelineState extends BaseObject { + playState: number; + currentPlayTimes: number; + currentTime: number; + protected _tweenState: TweenState; + protected _frameRate: number; + protected _frameValueOffset: number; + protected _frameCount: number; + protected _frameOffset: number; + protected _frameIndex: number; + protected _frameRateR: number; + protected _position: number; + protected _duration: number; + protected _timeScale: number; + protected _timeOffset: number; + protected _dragonBonesData: DragonBonesData; + protected _animationData: AnimationData; + protected _timelineData: TimelineData | null; + protected _armature: Armature; + protected _animationState: AnimationState; + protected _actionTimeline: TimelineState; + protected _frameArray: Array | Int16Array; + protected _frameIntArray: Array | Int16Array; + protected _frameFloatArray: Array | Int16Array; + protected _timelineArray: Array | Uint16Array; + protected _frameIndices: Array; + protected _onClear(): void; + protected abstract _onArriveAtFrame(): void; + protected abstract _onUpdateFrame(): void; + protected _setCurrentTime(passedTime: number): boolean; + init(armature: Armature, animationState: AnimationState, timelineData: TimelineData | null): void; + fadeOut(): void; + update(passedTime: number): void; + } + /** + * @internal + * @private + */ + abstract class TweenTimelineState extends TimelineState { + private static _getEasingValue(tweenType, progress, easing); + private static _getEasingCurveValue(progress, samples, count, offset); + protected _tweenType: TweenType; + protected _curveCount: number; + protected _framePosition: number; + protected _frameDurationR: number; + protected _tweenProgress: number; + protected _tweenEasing: number; + protected _onClear(): void; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + } + /** + * @internal + * @private + */ + abstract class BoneTimelineState extends TweenTimelineState { + bone: Bone; + bonePose: BonePose; + protected _onClear(): void; + blend(state: number): void; + } + /** + * @internal + * @private + */ + abstract class SlotTimelineState extends TweenTimelineState { + slot: Slot; + protected _onClear(): void; + } + /** + * @internal + * @private + */ + abstract class ConstraintTimelineState extends TweenTimelineState { + constraint: Constraint; + protected _onClear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + class ActionTimelineState extends TimelineState { + static toString(): string; + private _onCrossFrame(frameIndex); + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + update(passedTime: number): void; + setCurrentTime(value: number): void; + } + /** + * @internal + * @private + */ + class ZOrderTimelineState extends TimelineState { + static toString(): string; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + } + /** + * @internal + * @private + */ + class BoneAllTimelineState extends BoneTimelineState { + static toString(): string; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + fadeOut(): void; + } + /** + * @internal + * @private + */ + class BoneTranslateTimelineState extends BoneTimelineState { + static toString(): string; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + } + /** + * @internal + * @private + */ + class BoneRotateTimelineState extends BoneTimelineState { + static toString(): string; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + fadeOut(): void; + } + /** + * @internal + * @private + */ + class BoneScaleTimelineState extends BoneTimelineState { + static toString(): string; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + } + /** + * @internal + * @private + */ + class SurfaceTimelineState extends TweenTimelineState { + static toString(): string; + surface: Surface; + private _frameFloatOffset; + private _valueCount; + private _deformCount; + private _valueOffset; + private readonly _current; + private readonly _delta; + private readonly _result; + protected _onClear(): void; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + init(armature: Armature, animationState: AnimationState, timelineData: TimelineData | null): void; + blend(state: number): void; + } + /** + * @internal + * @private + */ + class SlotDislayTimelineState extends SlotTimelineState { + static toString(): string; + protected _onArriveAtFrame(): void; + } + /** + * @internal + * @private + */ + class SlotColorTimelineState extends SlotTimelineState { + static toString(): string; + private _dirty; + private readonly _current; + private readonly _delta; + private readonly _result; + protected _onClear(): void; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + fadeOut(): void; + update(passedTime: number): void; + } + /** + * @internal + * @private + */ + class SlotFFDTimelineState extends SlotTimelineState { + static toString(): string; + meshOffset: number; + private _dirty; + private _frameFloatOffset; + private _valueCount; + private _deformCount; + private _valueOffset; + private readonly _current; + private readonly _delta; + private readonly _result; + protected _onClear(): void; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + init(armature: Armature, animationState: AnimationState, timelineData: TimelineData | null): void; + fadeOut(): void; + update(passedTime: number): void; + } + /** + * @internal + * @private + */ + class IKConstraintTimelineState extends ConstraintTimelineState { + static toString(): string; + private _current; + private _delta; + protected _onClear(): void; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + } + /** + * @internal + * @private + */ + class AnimationTimelineState extends TweenTimelineState { + static toString(): string; + animationState: AnimationState; + private readonly _floats; + protected _onClear(): void; + protected _onArriveAtFrame(): void; + protected _onUpdateFrame(): void; + blend(state: number): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - The properties of the object carry basic information about an event, + * which are passed as parameter or parameter's parameter to event listeners when an event occurs. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 事件对象,包含有关事件的基本信息,当发生事件时,该实例将作为参数或参数的参数传递给事件侦听器。 + * @version DragonBones 4.5 + * @language zh_CN + */ + class EventObject extends BaseObject { + /** + * - Animation start play. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画开始播放。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly START: string; + /** + * - Animation loop play complete once. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画循环播放完成一次。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly LOOP_COMPLETE: string; + /** + * - Animation play complete. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画播放完成。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly COMPLETE: string; + /** + * - Animation fade in start. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画淡入开始。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly FADE_IN: string; + /** + * - Animation fade in complete. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画淡入完成。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly FADE_IN_COMPLETE: string; + /** + * - Animation fade out start. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画淡出开始。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly FADE_OUT: string; + /** + * - Animation fade out complete. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画淡出完成。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly FADE_OUT_COMPLETE: string; + /** + * - Animation frame event. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画帧事件。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly FRAME_EVENT: string; + /** + * - Animation frame sound event. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 动画帧声音事件。 + * @version DragonBones 4.5 + * @language zh_CN + */ + static readonly SOUND_EVENT: string; + static toString(): string; + /** + * - If is a frame event, the value is used to describe the time that the event was in the animation timeline. (In seconds) + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 如果是帧事件,此值用来描述该事件在动画时间轴中所处的时间。(以秒为单位) + * @version DragonBones 4.5 + * @language zh_CN + */ + time: number; + /** + * - The event type。 + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 事件类型。 + * @version DragonBones 4.5 + * @language zh_CN + */ + type: EventStringType; + /** + * - The event name. (The frame event name or the frame sound name) + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 事件名称。 (帧事件的名称或帧声音的名称) + * @version DragonBones 4.5 + * @language zh_CN + */ + name: string; + /** + * - The armature that dispatch the event. + * @see dragonBones.Armature + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 发出该事件的骨架。 + * @see dragonBones.Armature + * @version DragonBones 4.5 + * @language zh_CN + */ + armature: Armature; + /** + * - The bone that dispatch the event. + * @see dragonBones.Bone + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 发出该事件的骨骼。 + * @see dragonBones.Bone + * @version DragonBones 4.5 + * @language zh_CN + */ + bone: Bone | null; + /** + * - The slot that dispatch the event. + * @see dragonBones.Slot + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 发出该事件的插槽。 + * @see dragonBones.Slot + * @version DragonBones 4.5 + * @language zh_CN + */ + slot: Slot | null; + /** + * - The animation state that dispatch the event. + * @see dragonBones.AnimationState + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 发出该事件的动画状态。 + * @see dragonBones.AnimationState + * @version DragonBones 4.5 + * @language zh_CN + */ + animationState: AnimationState; + /** + * - The custom data. + * @see dragonBones.CustomData + * @version DragonBones 5.0 + * @language en_US + */ + /** + * - 自定义数据。 + * @see dragonBones.CustomData + * @version DragonBones 5.0 + * @language zh_CN + */ + data: UserData | null; + /** + * @private + */ + protected _onClear(): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @private + */ + type EventStringType = string | "start" | "loopComplete" | "complete" | "fadeIn" | "fadeInComplete" | "fadeOut" | "fadeOutComplete" | "frameEvent" | "soundEvent"; + /** + * - The event dispatcher interface. + * Dragonbones event dispatch usually relies on docking engine to implement, which defines the event method to be implemented when docking the engine. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 事件派发接口。 + * DragonBones 的事件派发通常依赖于对接的引擎来实现,该接口定义了对接引擎时需要实现的事件方法。 + * @version DragonBones 4.5 + * @language zh_CN + */ + interface IEventDispatcher { + /** + * - Checks whether the object has any listeners registered for a specific type of event。 + * @param type - Event type. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 检查是否为特定的事件类型注册了任何侦听器。 + * @param type - 事件类型。 + * @version DragonBones 4.5 + * @language zh_CN + */ + hasDBEventListener(type: EventStringType): boolean; + /** + * - Dispatches an event into the event flow. + * @param type - Event type. + * @param eventObject - Event object. + * @see dragonBones.EventObject + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 分派特定的事件到事件流中。 + * @param type - 事件类型。 + * @param eventObject - 事件数据。 + * @see dragonBones.EventObject + * @version DragonBones 4.5 + * @language zh_CN + */ + dispatchDBEvent(type: EventStringType, eventObject: EventObject): void; + /** + * - Add an event listener object so that the listener receives notification of an event. + * @param type - Event type. + * @param listener - Event listener. + * @param thisObject - The listener function's "this". + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 添加特定事件类型的事件侦听器,以使侦听器能够接收事件通知。 + * @param type - 事件类型。 + * @param listener - 事件侦听器。 + * @param thisObject - 侦听函数绑定的 this 对象。 + * @version DragonBones 4.5 + * @language zh_CN + */ + addDBEventListener(type: EventStringType, listener: Function, thisObject: any): void; + /** + * - Removes a listener from the object. + * @param type - Event type. + * @param listener - Event listener. + * @param thisObject - The listener function's "this". + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 删除特定事件类型的侦听器。 + * @param type - 事件类型。 + * @param listener - 事件侦听器。 + * @param thisObject - 侦听函数绑定的 this 对象。 + * @version DragonBones 4.5 + * @language zh_CN + */ + removeDBEventListener(type: EventStringType, listener: Function, thisObject: any): void; + /** + * - Deprecated, please refer to {@link #hasDBEventListener()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #hasDBEventListener()}。 + * @deprecated + * @language zh_CN + */ + hasEvent(type: EventStringType): boolean; + /** + * - Deprecated, please refer to {@link #addDBEventListener()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #addDBEventListener()}。 + * @deprecated + * @language zh_CN + */ + addEvent(type: EventStringType, listener: Function, thisObject: any): void; + /** + * - Deprecated, please refer to {@link #removeDBEventListener()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #removeDBEventListener()}。 + * @deprecated + * @language zh_CN + */ + removeEvent(type: EventStringType, listener: Function, thisObject: any): void; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + abstract class DataParser { + protected static readonly DATA_VERSION_2_3: string; + protected static readonly DATA_VERSION_3_0: string; + protected static readonly DATA_VERSION_4_0: string; + protected static readonly DATA_VERSION_4_5: string; + protected static readonly DATA_VERSION_5_0: string; + protected static readonly DATA_VERSION_5_5: string; + protected static readonly DATA_VERSION: string; + protected static readonly DATA_VERSIONS: Array; + protected static readonly TEXTURE_ATLAS: string; + protected static readonly SUB_TEXTURE: string; + protected static readonly FORMAT: string; + protected static readonly IMAGE_PATH: string; + protected static readonly WIDTH: string; + protected static readonly HEIGHT: string; + protected static readonly ROTATED: string; + protected static readonly FRAME_X: string; + protected static readonly FRAME_Y: string; + protected static readonly FRAME_WIDTH: string; + protected static readonly FRAME_HEIGHT: string; + protected static readonly DRADON_BONES: string; + protected static readonly USER_DATA: string; + protected static readonly ARMATURE: string; + protected static readonly BONE: string; + protected static readonly SURFACE: string; + protected static readonly SLOT: string; + protected static readonly CONSTRAINT: string; + protected static readonly IK: string; + protected static readonly SKIN: string; + protected static readonly DISPLAY: string; + protected static readonly ANIMATION: string; + protected static readonly Z_ORDER: string; + protected static readonly FFD: string; + protected static readonly FRAME: string; + protected static readonly TRANSLATE_FRAME: string; + protected static readonly ROTATE_FRAME: string; + protected static readonly SCALE_FRAME: string; + protected static readonly DISPLAY_FRAME: string; + protected static readonly COLOR_FRAME: string; + protected static readonly DEFAULT_ACTIONS: string; + protected static readonly ACTIONS: string; + protected static readonly EVENTS: string; + protected static readonly INTS: string; + protected static readonly FLOATS: string; + protected static readonly STRINGS: string; + protected static readonly CANVAS: string; + protected static readonly TRANSFORM: string; + protected static readonly PIVOT: string; + protected static readonly AABB: string; + protected static readonly COLOR: string; + protected static readonly VERSION: string; + protected static readonly COMPATIBLE_VERSION: string; + protected static readonly FRAME_RATE: string; + protected static readonly TYPE: string; + protected static readonly SUB_TYPE: string; + protected static readonly NAME: string; + protected static readonly PARENT: string; + protected static readonly TARGET: string; + protected static readonly STAGE: string; + protected static readonly SHARE: string; + protected static readonly PATH: string; + protected static readonly LENGTH: string; + protected static readonly DISPLAY_INDEX: string; + protected static readonly BLEND_MODE: string; + protected static readonly INHERIT_TRANSLATION: string; + protected static readonly INHERIT_ROTATION: string; + protected static readonly INHERIT_SCALE: string; + protected static readonly INHERIT_REFLECTION: string; + protected static readonly INHERIT_ANIMATION: string; + protected static readonly INHERIT_DEFORM: string; + protected static readonly SEGMENT_X: string; + protected static readonly SEGMENT_Y: string; + protected static readonly BEND_POSITIVE: string; + protected static readonly CHAIN: string; + protected static readonly WEIGHT: string; + protected static readonly FADE_IN_TIME: string; + protected static readonly PLAY_TIMES: string; + protected static readonly SCALE: string; + protected static readonly OFFSET: string; + protected static readonly POSITION: string; + protected static readonly DURATION: string; + protected static readonly TWEEN_EASING: string; + protected static readonly TWEEN_ROTATE: string; + protected static readonly TWEEN_SCALE: string; + protected static readonly CLOCK_WISE: string; + protected static readonly CURVE: string; + protected static readonly SOUND: string; + protected static readonly EVENT: string; + protected static readonly ACTION: string; + protected static readonly X: string; + protected static readonly Y: string; + protected static readonly SKEW_X: string; + protected static readonly SKEW_Y: string; + protected static readonly SCALE_X: string; + protected static readonly SCALE_Y: string; + protected static readonly VALUE: string; + protected static readonly ROTATE: string; + protected static readonly SKEW: string; + protected static readonly ALPHA_OFFSET: string; + protected static readonly RED_OFFSET: string; + protected static readonly GREEN_OFFSET: string; + protected static readonly BLUE_OFFSET: string; + protected static readonly ALPHA_MULTIPLIER: string; + protected static readonly RED_MULTIPLIER: string; + protected static readonly GREEN_MULTIPLIER: string; + protected static readonly BLUE_MULTIPLIER: string; + protected static readonly UVS: string; + protected static readonly VERTICES: string; + protected static readonly TRIANGLES: string; + protected static readonly WEIGHTS: string; + protected static readonly SLOT_POSE: string; + protected static readonly BONE_POSE: string; + protected static readonly GLUE_WEIGHTS: string; + protected static readonly GLUE_MESHES: string; + protected static readonly GOTO_AND_PLAY: string; + protected static readonly DEFAULT_NAME: string; + protected static _getArmatureType(value: string): ArmatureType; + protected static _getBoneType(value: string): BoneType; + protected static _getDisplayType(value: string): DisplayType; + protected static _getBoundingBoxType(value: string): BoundingBoxType; + protected static _getActionType(value: string): ActionType; + protected static _getBlendMode(value: string): BlendMode; + abstract parseDragonBonesData(rawData: any, scale: number): DragonBonesData | null; + abstract parseTextureAtlasData(rawData: any, textureAtlasData: TextureAtlasData, scale: number): boolean; + /** + * - Deprecated, please refer to {@link dragonBones.BaseFactory#parsetTextureAtlasData()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link dragonBones.BaseFactory#parsetTextureAtlasData()}。 + * @deprecated + * @language zh_CN + */ + static parseDragonBonesData(rawData: any): DragonBonesData | null; + /** + * - Deprecated, please refer to {@link dragonBones.BaseFactory#parsetTextureAtlasData()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link dragonBones.BaseFactory#parsetTextureAtlasData()}。 + * @deprecated + * @language zh_CN + */ + static parseTextureAtlasData(rawData: any, scale?: number): any; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + class ObjectDataParser extends DataParser { + protected static _getBoolean(rawData: any, key: string, defaultValue: boolean): boolean; + protected static _getNumber(rawData: any, key: string, defaultValue: number): number; + protected static _getString(rawData: any, key: string, defaultValue: string): string; + protected _rawTextureAtlasIndex: number; + protected readonly _rawBones: Array; + protected _data: DragonBonesData; + protected _armature: ArmatureData; + protected _bone: BoneData; + protected _surface: SurfaceData; + protected _slot: SlotData; + protected _skin: SkinData; + protected _mesh: MeshDisplayData; + protected _animation: AnimationData; + protected _timeline: TimelineData; + protected _rawTextureAtlases: Array | null; + private _defaultColorOffset; + private _prevClockwise; + private _prevRotation; + private readonly _helpMatrixA; + private readonly _helpMatrixB; + private readonly _helpTransform; + private readonly _helpColorTransform; + private readonly _helpPoint; + private readonly _helpArray; + private readonly _intArray; + private readonly _floatArray; + private readonly _frameIntArray; + private readonly _frameFloatArray; + private readonly _frameArray; + private readonly _timelineArray; + private readonly _cacheRawMeshes; + private readonly _cacheMeshes; + private readonly _actionFrames; + private readonly _weightSlotPose; + private readonly _weightBonePoses; + private readonly _cacheBones; + private readonly _slotChildActions; + private _getCurvePoint(x1, y1, x2, y2, x3, y3, x4, y4, t, result); + private _samplingEasingCurve(curve, samples); + private _parseActionDataInFrame(rawData, frameStart, bone, slot); + private _mergeActionFrame(rawData, frameStart, type, bone, slot); + protected _parseArmature(rawData: any, scale: number): ArmatureData; + protected _parseBone(rawData: any): BoneData; + protected _parseIKConstraint(rawData: any): ConstraintData | null; + protected _parseSlot(rawData: any, zOrder: number): SlotData; + protected _parseSkin(rawData: any): SkinData; + protected _parseDisplay(rawData: any): DisplayData | null; + protected _parsePivot(rawData: any, display: ImageDisplayData): void; + protected _parseMesh(rawData: any, mesh: MeshDisplayData): void; + protected _parseMeshGlue(rawData: any, mesh: MeshDisplayData): void; + protected _parseBoundingBox(rawData: any): BoundingBoxData | null; + protected _parsePolygonBoundingBox(rawData: any): PolygonBoundingBoxData; + protected _parseAnimation(rawData: any): AnimationData; + protected _parseTimeline(rawData: any, rawFrames: Array | null, framesKey: string, type: TimelineType, addIntOffset: boolean, addFloatOffset: boolean, frameValueCount: number, frameParser: (rawData: any, frameStart: number, frameCount: number) => number): TimelineData | null; + protected _parseBoneTimeline(rawData: any): void; + protected _parseSlotTimeline(rawData: any): void; + protected _parseFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseTweenFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseActionFrame(frame: ActionFrame, frameStart: number, frameCount: number): number; + protected _parseZOrderFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseBoneAllFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseBoneTranslateFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseBoneRotateFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseBoneScaleFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseSurfaceFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseSlotDisplayFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseSlotColorFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseSlotFFDFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseIKConstraintFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseAnimationFrame(rawData: any, frameStart: number, frameCount: number): number; + protected _parseActionData(rawData: any, type: ActionType, bone: BoneData | null, slot: SlotData | null): Array; + protected _parseTransform(rawData: any, transform: Transform, scale: number): void; + protected _parseColorTransform(rawData: any, color: ColorTransform): void; + protected _parseArray(rawData: any): void; + protected _modifyArray(): void; + parseDragonBonesData(rawData: any, scale?: number): DragonBonesData | null; + parseTextureAtlasData(rawData: any, textureAtlasData: TextureAtlasData, scale?: number): boolean; + private static _objectDataParserInstance; + /** + * - Deprecated, please refer to {@link dragonBones.BaseFactory#parseDragonBonesData()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link dragonBones.BaseFactory#parseDragonBonesData()}。 + * @deprecated + * @language zh_CN + */ + static getInstance(): ObjectDataParser; + } + /** + * @internal + * @private + */ + class ActionFrame { + frameStart: number; + readonly actions: Array; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * @internal + * @private + */ + class BinaryDataParser extends ObjectDataParser { + private _binaryOffset; + private _binary; + private _intArrayBuffer; + private _floatArrayBuffer; + private _frameIntArrayBuffer; + private _frameFloatArrayBuffer; + private _frameArrayBuffer; + private _timelineArrayBuffer; + private _inRange(a, min, max); + private _decodeUTF8(data); + private _getUTF16Key(value); + private _parseBinaryTimeline(type, offset, timelineData?); + protected _parseMesh(rawData: any, mesh: MeshDisplayData): void; + protected _parseAnimation(rawData: any): AnimationData; + protected _parseArray(rawData: any): void; + parseDragonBonesData(rawData: any, scale?: number): DragonBonesData | null; + private static _binaryDataParserInstance; + /** + * - Deprecated, please refer to {@link dragonBones.BaseFactory#parseDragonBonesData()}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link dragonBones.BaseFactory#parseDragonBonesData()}。 + * @deprecated + * @language zh_CN + */ + static getInstance(): BinaryDataParser; + } +} +/** + * The MIT License (MIT) + * + * Copyright (c) 2012-2017 DragonBones team and other contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +declare namespace dragonBones { + /** + * - Base class for the factory that create the armatures. (Typically only one global factory instance is required) + * The factory instance create armatures by parsed and added DragonBonesData instances and TextureAtlasData instances. + * Once the data has been parsed, it has been cached in the factory instance and does not need to be parsed again until it is cleared by the factory instance. + * @see dragonBones.DragonBonesData + * @see dragonBones.TextureAtlasData + * @see dragonBones.ArmatureData + * @see dragonBones.Armature + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 创建骨架的工厂基类。 (通常只需要一个全局工厂实例) + * 工厂通过解析并添加的 DragonBonesData 实例和 TextureAtlasData 实例来创建骨架。 + * 当数据被解析过之后,已经添加到工厂中,在没有被工厂清理之前,不需要再次解析。 + * @see dragonBones.DragonBonesData + * @see dragonBones.TextureAtlasData + * @see dragonBones.ArmatureData + * @see dragonBones.Armature + * @version DragonBones 3.0 + * @language zh_CN + */ + abstract class BaseFactory { + /** + * @private + */ + protected static _objectParser: ObjectDataParser; + /** + * @private + */ + protected static _binaryParser: BinaryDataParser; + /** + * @private + */ + autoSearch: boolean; + /** + * @private + */ + protected readonly _dragonBonesDataMap: Map; + /** + * @private + */ + protected readonly _textureAtlasDataMap: Map>; + /** + * @private + */ + protected _dragonBones: DragonBones; + /** + * @private + */ + protected _dataParser: DataParser; + /** + * - Create a factory instance. (typically only one global factory instance is required) + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 创建一个工厂实例。 (通常只需要一个全局工厂实例) + * @version DragonBones 3.0 + * @language zh_CN + */ + constructor(dataParser?: DataParser | null); + /** + * @private + */ + protected _isSupportMesh(): boolean; + /** + * @private + */ + protected _getTextureData(textureAtlasName: string, textureName: string): TextureData | null; + /** + * @private + */ + protected _fillBuildArmaturePackage(dataPackage: BuildArmaturePackage, dragonBonesName: string, armatureName: string, skinName: string, textureAtlasName: string): boolean; + /** + * @private + */ + protected _buildBones(dataPackage: BuildArmaturePackage, armature: Armature): void; + /** + * @private + */ + protected _buildSlots(dataPackage: BuildArmaturePackage, armature: Armature): void; + /** + * @private + */ + protected _buildChildArmature(dataPackage: BuildArmaturePackage | null, slot: Slot, displayData: DisplayData): Armature | null; + /** + * @private + */ + protected _getSlotDisplay(dataPackage: BuildArmaturePackage | null, displayData: DisplayData, rawDisplayData: DisplayData | null, slot: Slot): any; + /** + * @private + */ + protected abstract _buildTextureAtlasData(textureAtlasData: TextureAtlasData | null, textureAtlas: any): TextureAtlasData; + /** + * @private + */ + protected abstract _buildArmature(dataPackage: BuildArmaturePackage): Armature; + /** + * @private + */ + protected abstract _buildSlot(dataPackage: BuildArmaturePackage, slotData: SlotData, displays: Array | null, armature: Armature): Slot; + /** + * - Parse the raw data to a DragonBonesData instance and cache it to the factory. + * @param rawData - The raw data. + * @param name - Specify a cache name for the instance so that the instance can be obtained through this name. (If not set, use the instance name instead) + * @param scale - Specify a scaling value for all armatures. (Default: 1.0) + * @returns DragonBonesData instance + * @see #getDragonBonesData() + * @see #addDragonBonesData() + * @see #removeDragonBonesData() + * @see dragonBones.DragonBonesData + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 将原始数据解析为 DragonBonesData 实例,并缓存到工厂中。 + * @param rawData - 原始数据。 + * @param name - 为该实例指定一个缓存名称,以便可以通过此名称获取该实例。 (如果未设置,则使用该实例中的名称) + * @param scale - 为所有的骨架指定一个缩放值。 (默认: 1.0) + * @returns DragonBonesData 实例 + * @see #getDragonBonesData() + * @see #addDragonBonesData() + * @see #removeDragonBonesData() + * @see dragonBones.DragonBonesData + * @version DragonBones 4.5 + * @language zh_CN + */ + parseDragonBonesData(rawData: any, name?: string | null, scale?: number): DragonBonesData | null; + /** + * - Parse the raw texture atlas data and the texture atlas object to a TextureAtlasData instance and cache it to the factory. + * @param rawData - The raw texture atlas data. + * @param textureAtlas - The texture atlas object. + * @param name - Specify a cache name for the instance so that the instance can be obtained through this name. (If not set, use the instance name instead) + * @param scale - Specify a scaling value for the map set. (Default: 1.0) + * @returns TextureAtlasData instance + * @see #getTextureAtlasData() + * @see #addTextureAtlasData() + * @see #removeTextureAtlasData() + * @see dragonBones.TextureAtlasData + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 将原始贴图集数据和贴图集对象解析为 TextureAtlasData 实例,并缓存到工厂中。 + * @param rawData - 原始贴图集数据。 + * @param textureAtlas - 贴图集对象。 + * @param name - 为该实例指定一个缓存名称,以便可以通过此名称获取该实例。 (如果未设置,则使用该实例中的名称) + * @param scale - 为贴图集指定一个缩放值。 (默认: 1.0) + * @returns TextureAtlasData 实例 + * @see #getTextureAtlasData() + * @see #addTextureAtlasData() + * @see #removeTextureAtlasData() + * @see dragonBones.TextureAtlasData + * @version DragonBones 4.5 + * @language zh_CN + */ + parseTextureAtlasData(rawData: any, textureAtlas: any, name?: string | null, scale?: number): TextureAtlasData; + /** + * @private + */ + updateTextureAtlasData(name: string, textureAtlases: Array): void; + /** + * - Get a specific DragonBonesData instance. + * @param name - The DragonBonesData instance cache name. + * @returns DragonBonesData instance + * @see #parseDragonBonesData() + * @see #addDragonBonesData() + * @see #removeDragonBonesData() + * @see dragonBones.DragonBonesData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定的 DragonBonesData 实例。 + * @param name - DragonBonesData 实例的缓存名称。 + * @returns DragonBonesData 实例 + * @see #parseDragonBonesData() + * @see #addDragonBonesData() + * @see #removeDragonBonesData() + * @see dragonBones.DragonBonesData + * @version DragonBones 3.0 + * @language zh_CN + */ + getDragonBonesData(name: string): DragonBonesData | null; + /** + * - Cache a DragonBonesData instance to the factory. + * @param data - The DragonBonesData instance. + * @param name - Specify a cache name for the instance so that the instance can be obtained through this name. (if not set, use the instance name instead) + * @see #parseDragonBonesData() + * @see #getDragonBonesData() + * @see #removeDragonBonesData() + * @see dragonBones.DragonBonesData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 将 DragonBonesData 实例缓存到工厂中。 + * @param data - DragonBonesData 实例。 + * @param name - 为该实例指定一个缓存名称,以便可以通过此名称获取该实例。 (如果未设置,则使用该实例中的名称) + * @see #parseDragonBonesData() + * @see #getDragonBonesData() + * @see #removeDragonBonesData() + * @see dragonBones.DragonBonesData + * @version DragonBones 3.0 + * @language zh_CN + */ + addDragonBonesData(data: DragonBonesData, name?: string | null): void; + /** + * - Remove a DragonBonesData instance. + * @param name - The DragonBonesData instance cache name. + * @param disposeData - Whether to dispose data. (Default: true) + * @see #parseDragonBonesData() + * @see #getDragonBonesData() + * @see #addDragonBonesData() + * @see dragonBones.DragonBonesData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 移除 DragonBonesData 实例。 + * @param name - DragonBonesData 实例缓存名称。 + * @param disposeData - 是否释放数据。 (默认: true) + * @see #parseDragonBonesData() + * @see #getDragonBonesData() + * @see #addDragonBonesData() + * @see dragonBones.DragonBonesData + * @version DragonBones 3.0 + * @language zh_CN + */ + removeDragonBonesData(name: string, disposeData?: boolean): void; + /** + * - Get a list of specific TextureAtlasData instances. + * @param name - The TextureAtlasData cahce name. + * @see #parseTextureAtlasData() + * @see #addTextureAtlasData() + * @see #removeTextureAtlasData() + * @see dragonBones.TextureAtlasData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 获取特定的 TextureAtlasData 实例列表。 + * @param name - TextureAtlasData 实例缓存名称。 + * @see #parseTextureAtlasData() + * @see #addTextureAtlasData() + * @see #removeTextureAtlasData() + * @see dragonBones.TextureAtlasData + * @version DragonBones 3.0 + * @language zh_CN + */ + getTextureAtlasData(name: string): Array | null; + /** + * - Cache a TextureAtlasData instance to the factory. + * @param data - The TextureAtlasData instance. + * @param name - Specify a cache name for the instance so that the instance can be obtained through this name. (if not set, use the instance name instead) + * @see #parseTextureAtlasData() + * @see #getTextureAtlasData() + * @see #removeTextureAtlasData() + * @see dragonBones.TextureAtlasData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 将 TextureAtlasData 实例缓存到工厂中。 + * @param data - TextureAtlasData 实例。 + * @param name - 为该实例指定一个缓存名称,以便可以通过此名称获取该实例。 (如果未设置,则使用该实例中的名称) + * @see #parseTextureAtlasData() + * @see #getTextureAtlasData() + * @see #removeTextureAtlasData() + * @see dragonBones.TextureAtlasData + * @version DragonBones 3.0 + * @language zh_CN + */ + addTextureAtlasData(data: TextureAtlasData, name?: string | null): void; + /** + * - Remove a TextureAtlasData instance. + * @param name - The TextureAtlasData instance cache name. + * @param disposeData - Whether to dispose data. + * @see #parseTextureAtlasData() + * @see #getTextureAtlasData() + * @see #addTextureAtlasData() + * @see dragonBones.TextureAtlasData + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 移除 TextureAtlasData 实例。 + * @param name - TextureAtlasData 实例的缓存名称。 + * @param disposeData - 是否释放数据。 + * @see #parseTextureAtlasData() + * @see #getTextureAtlasData() + * @see #addTextureAtlasData() + * @see dragonBones.TextureAtlasData + * @version DragonBones 3.0 + * @language zh_CN + */ + removeTextureAtlasData(name: string, disposeData?: boolean): void; + /** + * - Get a specific armature data. + * @param name - The armature data name. + * @param dragonBonesName - The cached name for DragonbonesData instance. + * @see dragonBones.ArmatureData + * @version DragonBones 5.1 + * @language en_US + */ + /** + * - 获取特定的骨架数据。 + * @param name - 骨架数据名称。 + * @param dragonBonesName - DragonBonesData 实例的缓存名称。 + * @see dragonBones.ArmatureData + * @version DragonBones 5.1 + * @language zh_CN + */ + getArmatureData(name: string, dragonBonesName?: string): ArmatureData | null; + /** + * - Clear all cached DragonBonesData instances and TextureAtlasData instances. + * @param disposeData - Whether to dispose data. + * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 清除缓存的所有 DragonBonesData 实例和 TextureAtlasData 实例。 + * @param disposeData - 是否释放数据。 + * @version DragonBones 4.5 + * @language zh_CN + */ + clear(disposeData?: boolean): void; + /** + * - Create a armature from cached DragonBonesData instances and TextureAtlasData instances. + * @param armatureName - The armature data name. + * @param dragonBonesName - The cached name of the DragonBonesData instance. (If not set, all DragonBonesData instances are retrieved, and when multiple DragonBonesData instances contain a the same name armature data, it may not be possible to accurately create a specific armature) + * @param skinName - The skin name, you can set a different ArmatureData name to share it's skin data. (If not set, use the default skin data) + * @returns The armature. + * @example + *
+         *     let armature = factory.buildArmature("armatureName", "dragonBonesName");
+         *     armature.clock = factory.clock;
+         * 
+ * @see dragonBones.DragonBonesData + * @see dragonBones.ArmatureData + * @see dragonBones.Armature + * @version DragonBones 3.0 + * @language en_US + */ + /** + * - 通过缓存的 DragonBonesData 实例和 TextureAtlasData 实例创建一个骨架。 + * @param armatureName - 骨架数据名称。 + * @param dragonBonesName - DragonBonesData 实例的缓存名称。 (如果未设置,将检索所有的 DragonBonesData 实例,当多个 DragonBonesData 实例中包含同名的骨架数据时,可能无法准确的创建出特定的骨架) + * @param skinName - 皮肤名称,可以设置一个其他骨架数据名称来共享其皮肤数据(如果未设置,则使用默认的皮肤数据)。 + * @returns 骨架。 + * @example + *
+         *     let armature = factory.buildArmature("armatureName", "dragonBonesName");
+         *     armature.clock = factory.clock;
+         * 
+ * @see dragonBones.DragonBonesData + * @see dragonBones.ArmatureData + * @see dragonBones.Armature + * @version DragonBones 3.0 + * @language zh_CN + */ + buildArmature(armatureName: string, dragonBonesName?: string, skinName?: string, textureAtlasName?: string): Armature | null; + /** + * @private + */ + replaceDisplay(slot: Slot, displayData: DisplayData, displayIndex?: number): void; + /** + * - Replaces the current display data for a particular slot with a specific display data. + * Specify display data with "dragonBonesName/armatureName/slotName/displayName". + * @param dragonBonesName - The DragonBonesData instance cache name. + * @param armatureName - The armature data name. + * @param slotName - The slot data name. + * @param displayName - The display data name. + * @param slot - The slot. + * @param displayIndex - The index of the display data that is replaced. (If it is not set, replaces the current display data) + * @example + *
+         *     let slot = armature.getSlot("weapon");
+         *     factory.replaceSlotDisplay("dragonBonesName", "armatureName", "slotName", "displayName", slot);
+         * 
+ * @version DragonBones 4.5 + * @language en_US + */ + /** + * - 用特定的显示对象数据替换特定插槽当前的显示对象数据。 + * 用 "dragonBonesName/armatureName/slotName/displayName" 指定显示对象数据。 + * @param dragonBonesName - DragonBonesData 实例的缓存名称。 + * @param armatureName - 骨架数据名称。 + * @param slotName - 插槽数据名称。 + * @param displayName - 显示对象数据名称。 + * @param slot - 插槽。 + * @param displayIndex - 被替换的显示对象数据的索引。 (如果未设置,则替换当前的显示对象数据) + * @example + *
+         *     let slot = armature.getSlot("weapon");
+         *     factory.replaceSlotDisplay("dragonBonesName", "armatureName", "slotName", "displayName", slot);
+         * 
+ * @version DragonBones 4.5 + * @language zh_CN + */ + replaceSlotDisplay(dragonBonesName: string, armatureName: string, slotName: string, displayName: string, slot: Slot, displayIndex?: number): boolean; + /** + * @private + */ + replaceSlotDisplayList(dragonBonesName: string | null, armatureName: string, slotName: string, slot: Slot): boolean; + /** + * - Share specific skin data with specific armature. + * @param armature - The armature. + * @param skin - The skin data. + * @param isOverride - Whether it completely override the original skin. (Default: false) + * @param exclude - A list of slot names that do not need to be replace. + * @example + *
+         *     let armatureA = factory.buildArmature("armatureA", "dragonBonesA");
+         *     let armatureDataB = factory.getArmatureData("armatureB", "dragonBonesB");
+         *     if (armatureDataB && armatureDataB.defaultSkin) {
+         *     factory.replaceSkin(armatureA, armatureDataB.defaultSkin, false, ["arm_l", "weapon_l"]);
+         *     }
+         * 
+ * @see dragonBones.Armature + * @see dragonBones.SkinData + * @version DragonBones 5.6 + * @language en_US + */ + /** + * - 将特定的皮肤数据共享给特定的骨架使用。 + * @param armature - 骨架。 + * @param skin - 皮肤数据。 + * @param isOverride - 是否完全覆盖原来的皮肤。 (默认: false) + * @param exclude - 不需要被替换的插槽名称列表。 + * @example + *
+         *     let armatureA = factory.buildArmature("armatureA", "dragonBonesA");
+         *     let armatureDataB = factory.getArmatureData("armatureB", "dragonBonesB");
+         *     if (armatureDataB && armatureDataB.defaultSkin) {
+         *     factory.replaceSkin(armatureA, armatureDataB.defaultSkin, false, ["arm_l", "weapon_l"]);
+         *     }
+         * 
+ * @see dragonBones.Armature + * @see dragonBones.SkinData + * @version DragonBones 5.6 + * @language zh_CN + */ + replaceSkin(armature: Armature, skin: SkinData, isOverride?: boolean, exclude?: Array | null): boolean; + /** + * - Replaces the existing animation data for a specific armature with the animation data for the specific armature data. + * This enables you to make a armature template so that other armature without animations can share it's animations. + * @param armature - The armtaure. + * @param armatureData - The armature data. + * @param isOverride - Whether to completely overwrite the original animation. (Default: false) + * @example + *
+         *     let armatureA = factory.buildArmature("armatureA", "dragonBonesA");
+         *     let armatureDataB = factory.getArmatureData("armatureB", "dragonBonesB");
+         *     if (armatureDataB) {
+         *     factory.replaceAnimation(armatureA, armatureDataB);
+         *     }
+         * 
+ * @see dragonBones.Armature + * @see dragonBones.ArmatureData + * @version DragonBones 5.6 + * @language en_US + */ + /** + * - 用特定骨架数据的动画数据替换特定骨架现有的动画数据。 + * 这样就能实现制作一个骨架动画模板,让其他没有制作动画的骨架共享该动画。 + * @param armature - 骨架。 + * @param armatureData - 骨架数据。 + * @param isOverride - 是否完全覆盖原来的动画。(默认: false)。 + * @example + *
+         *     let armatureA = factory.buildArmature("armatureA", "dragonBonesA");
+         *     let armatureDataB = factory.getArmatureData("armatureB", "dragonBonesB");
+         *     if (armatureDataB) {
+         *     factory.replaceAnimation(armatureA, armatureDataB);
+         *     }
+         * 
+ * @see dragonBones.Armature + * @see dragonBones.ArmatureData + * @version DragonBones 5.6 + * @language zh_CN + */ + replaceAnimation(armature: Armature, armatureData: ArmatureData, isOverride?: boolean): boolean; + /** + * @private + */ + getAllDragonBonesData(): Map; + /** + * @private + */ + getAllTextureAtlasData(): Map>; + /** + * - An Worldclock instance updated by engine. + * @version DragonBones 5.7 + * @language en_US + */ + /** + * - 由引擎驱动的 WorldClock 实例。 + * @version DragonBones 5.7 + * @language zh_CN + */ + readonly clock: WorldClock; + /** + * @private + */ + readonly dragonBones: DragonBones; + /** + * - Deprecated, please refer to {@link #replaceSkin}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #replaceSkin}。 + * @deprecated + * @language zh_CN + */ + changeSkin(armature: Armature, skin: SkinData, exclude?: Array | null): boolean; + /** + * - Deprecated, please refer to {@link #replaceAnimation}. + * @deprecated + * @language en_US + */ + /** + * - 已废弃,请参考 {@link #replaceAnimation}。 + * @deprecated + * @language zh_CN + */ + copyAnimationsToArmature(toArmature: Armature, fromArmatreName: string, fromSkinName?: string, fromDragonBonesDataName?: string, replaceOriginalAnimation?: boolean): boolean; + } + /** + * @internal + * @private + */ + class BuildArmaturePackage { + dataName: string; + textureAtlasName: string; + data: DragonBonesData; + armature: ArmatureData; + skin: SkinData | null; + } +} + +declare namespace sp.spine { + class Animation { + name: string; + timelines: Array; + timelineIds: Array; + duration: number; + constructor(name: string, timelines: Array, duration: number); + hasTimeline(id: number): boolean; + apply(skeleton: Skeleton, lastTime: number, time: number, loop: boolean, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + static binarySearch(values: ArrayLike, target: number, step?: number): number; + static linearSearch(values: ArrayLike, target: number, step: number): number; + } + interface Timeline { + apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + getPropertyId(): number; + } + enum MixBlend { + setup = 0, + first = 1, + replace = 2, + add = 3 + } + enum MixDirection { + mixIn = 0, + mixOut = 1 + } + enum TimelineType { + rotate = 0, + translate = 1, + scale = 2, + shear = 3, + attachment = 4, + color = 5, + deform = 6, + event = 7, + drawOrder = 8, + ikConstraint = 9, + transformConstraint = 10, + pathConstraintPosition = 11, + pathConstraintSpacing = 12, + pathConstraintMix = 13, + twoColor = 14 + } + abstract class CurveTimeline implements Timeline { + static LINEAR: number; + static STEPPED: number; + static BEZIER: number; + static BEZIER_SIZE: number; + private curves; + abstract getPropertyId(): number; + constructor(frameCount: number); + getFrameCount(): number; + setLinear(frameIndex: number): void; + setStepped(frameIndex: number): void; + getCurveType(frameIndex: number): number; + setCurve(frameIndex: number, cx1: number, cy1: number, cx2: number, cy2: number): void; + getCurvePercent(frameIndex: number, percent: number): number; + abstract apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class RotateTimeline extends CurveTimeline { + static ENTRIES: number; + static PREV_TIME: number; + static PREV_ROTATION: number; + static ROTATION: number; + boneIndex: number; + frames: ArrayLike; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, degrees: number): void; + apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class TranslateTimeline extends CurveTimeline { + static ENTRIES: number; + static PREV_TIME: number; + static PREV_X: number; + static PREV_Y: number; + static X: number; + static Y: number; + boneIndex: number; + frames: ArrayLike; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, x: number, y: number): void; + apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class ScaleTimeline extends TranslateTimeline { + constructor(frameCount: number); + getPropertyId(): number; + apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class ShearTimeline extends TranslateTimeline { + constructor(frameCount: number); + getPropertyId(): number; + apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class ColorTimeline extends CurveTimeline { + static ENTRIES: number; + static PREV_TIME: number; + static PREV_R: number; + static PREV_G: number; + static PREV_B: number; + static PREV_A: number; + static R: number; + static G: number; + static B: number; + static A: number; + slotIndex: number; + frames: ArrayLike; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, r: number, g: number, b: number, a: number): void; + apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class TwoColorTimeline extends CurveTimeline { + static ENTRIES: number; + static PREV_TIME: number; + static PREV_R: number; + static PREV_G: number; + static PREV_B: number; + static PREV_A: number; + static PREV_R2: number; + static PREV_G2: number; + static PREV_B2: number; + static R: number; + static G: number; + static B: number; + static A: number; + static R2: number; + static G2: number; + static B2: number; + slotIndex: number; + frames: ArrayLike; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, r: number, g: number, b: number, a: number, r2: number, g2: number, b2: number): void; + apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class AttachmentTimeline implements Timeline { + slotIndex: number; + frames: ArrayLike; + attachmentNames: Array; + constructor(frameCount: number); + getPropertyId(): number; + getFrameCount(): number; + setFrame(frameIndex: number, time: number, attachmentName: string): void; + apply(skeleton: Skeleton, lastTime: number, time: number, events: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class DeformTimeline extends CurveTimeline { + slotIndex: number; + attachment: VertexAttachment; + frames: ArrayLike; + frameVertices: Array>; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, vertices: ArrayLike): void; + apply(skeleton: Skeleton, lastTime: number, time: number, firedEvents: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class EventTimeline implements Timeline { + frames: ArrayLike; + events: Array; + constructor(frameCount: number); + getPropertyId(): number; + getFrameCount(): number; + setFrame(frameIndex: number, event: Event): void; + apply(skeleton: Skeleton, lastTime: number, time: number, firedEvents: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class DrawOrderTimeline implements Timeline { + frames: ArrayLike; + drawOrders: Array>; + constructor(frameCount: number); + getPropertyId(): number; + getFrameCount(): number; + setFrame(frameIndex: number, time: number, drawOrder: Array): void; + apply(skeleton: Skeleton, lastTime: number, time: number, firedEvents: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class IkConstraintTimeline extends CurveTimeline { + static ENTRIES: number; + static PREV_TIME: number; + static PREV_MIX: number; + static PREV_SOFTNESS: number; + static PREV_BEND_DIRECTION: number; + static PREV_COMPRESS: number; + static PREV_STRETCH: number; + static MIX: number; + static SOFTNESS: number; + static BEND_DIRECTION: number; + static COMPRESS: number; + static STRETCH: number; + ikConstraintIndex: number; + frames: ArrayLike; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, mix: number, softness: number, bendDirection: number, compress: boolean, stretch: boolean): void; + apply(skeleton: Skeleton, lastTime: number, time: number, firedEvents: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class TransformConstraintTimeline extends CurveTimeline { + static ENTRIES: number; + static PREV_TIME: number; + static PREV_ROTATE: number; + static PREV_TRANSLATE: number; + static PREV_SCALE: number; + static PREV_SHEAR: number; + static ROTATE: number; + static TRANSLATE: number; + static SCALE: number; + static SHEAR: number; + transformConstraintIndex: number; + frames: ArrayLike; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, rotateMix: number, translateMix: number, scaleMix: number, shearMix: number): void; + apply(skeleton: Skeleton, lastTime: number, time: number, firedEvents: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class PathConstraintPositionTimeline extends CurveTimeline { + static ENTRIES: number; + static PREV_TIME: number; + static PREV_VALUE: number; + static VALUE: number; + pathConstraintIndex: number; + frames: ArrayLike; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, value: number): void; + apply(skeleton: Skeleton, lastTime: number, time: number, firedEvents: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class PathConstraintSpacingTimeline extends PathConstraintPositionTimeline { + constructor(frameCount: number); + getPropertyId(): number; + apply(skeleton: Skeleton, lastTime: number, time: number, firedEvents: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } + class PathConstraintMixTimeline extends CurveTimeline { + static ENTRIES: number; + static PREV_TIME: number; + static PREV_ROTATE: number; + static PREV_TRANSLATE: number; + static ROTATE: number; + static TRANSLATE: number; + pathConstraintIndex: number; + frames: ArrayLike; + constructor(frameCount: number); + getPropertyId(): number; + setFrame(frameIndex: number, time: number, rotateMix: number, translateMix: number): void; + apply(skeleton: Skeleton, lastTime: number, time: number, firedEvents: Array, alpha: number, blend: MixBlend, direction: MixDirection): void; + } +} +declare namespace sp.spine { + class AnimationState { + static emptyAnimation: Animation; + static SUBSEQUENT: number; + static FIRST: number; + static HOLD: number; + static HOLD_MIX: number; + static NOT_LAST: number; + data: AnimationStateData; + tracks: TrackEntry[]; + timeScale: number; + events: Event[]; + listeners: AnimationStateListener[]; + queue: EventQueue; + propertyIDs: IntSet; + animationsChanged: boolean; + trackEntryPool: Pool; + constructor(data: AnimationStateData); + update(delta: number): void; + updateMixingFrom(to: TrackEntry, delta: number): boolean; + apply(skeleton: Skeleton): boolean; + applyMixingFrom(to: TrackEntry, skeleton: Skeleton, blend: MixBlend): number; + applyRotateTimeline(timeline: Timeline, skeleton: Skeleton, time: number, alpha: number, blend: MixBlend, timelinesRotation: Array, i: number, firstFrame: boolean): void; + queueEvents(entry: TrackEntry, animationTime: number): void; + clearTracks(): void; + clearTrack(trackIndex: number): void; + setCurrent(index: number, current: TrackEntry, interrupt: boolean): void; + setAnimation(trackIndex: number, animationName: string, loop: boolean): TrackEntry; + setAnimationWith(trackIndex: number, animation: Animation, loop: boolean): TrackEntry; + addAnimation(trackIndex: number, animationName: string, loop: boolean, delay: number): TrackEntry; + addAnimationWith(trackIndex: number, animation: Animation, loop: boolean, delay: number): TrackEntry; + setEmptyAnimation(trackIndex: number, mixDuration: number): TrackEntry; + addEmptyAnimation(trackIndex: number, mixDuration: number, delay: number): TrackEntry; + setEmptyAnimations(mixDuration: number): void; + expandToIndex(index: number): TrackEntry; + trackEntry(trackIndex: number, animation: Animation, loop: boolean, last: TrackEntry): TrackEntry; + disposeNext(entry: TrackEntry): void; + _animationsChanged(): void; + computeHold(entry: TrackEntry): void; + computeNotLast(entry: TrackEntry): void; + getCurrent(trackIndex: number): TrackEntry; + addListener(listener: AnimationStateListener): void; + removeListener(listener: AnimationStateListener): void; + clearListeners(): void; + clearListenerNotifications(): void; + } + class TrackEntry { + animation: Animation; + next: TrackEntry; + mixingFrom: TrackEntry; + mixingTo: TrackEntry; + listener: AnimationStateListener; + trackIndex: number; + loop: boolean; + holdPrevious: boolean; + eventThreshold: number; + attachmentThreshold: number; + drawOrderThreshold: number; + animationStart: number; + animationEnd: number; + animationLast: number; + nextAnimationLast: number; + delay: number; + trackTime: number; + trackLast: number; + nextTrackLast: number; + trackEnd: number; + timeScale: number; + alpha: number; + mixTime: number; + mixDuration: number; + interruptAlpha: number; + totalAlpha: number; + mixBlend: MixBlend; + timelineMode: number[]; + timelineHoldMix: TrackEntry[]; + timelinesRotation: number[]; + reset(): void; + getAnimationTime(): number; + setAnimationLast(animationLast: number): void; + isComplete(): boolean; + resetRotationDirections(): void; + } + class EventQueue { + objects: Array; + drainDisabled: boolean; + animState: AnimationState; + constructor(animState: AnimationState); + start(entry: TrackEntry): void; + interrupt(entry: TrackEntry): void; + end(entry: TrackEntry): void; + dispose(entry: TrackEntry): void; + complete(entry: TrackEntry): void; + event(entry: TrackEntry, event: Event): void; + drain(): void; + clear(): void; + } + enum EventType { + start = 0, + interrupt = 1, + end = 2, + dispose = 3, + complete = 4, + event = 5 + } + interface AnimationStateListener { + start(entry: TrackEntry): void; + interrupt(entry: TrackEntry): void; + end(entry: TrackEntry): void; + dispose(entry: TrackEntry): void; + complete(entry: TrackEntry): void; + event(entry: TrackEntry, event: Event): void; + } + abstract class AnimationStateAdapter implements AnimationStateListener { + start(entry: TrackEntry): void; + interrupt(entry: TrackEntry): void; + end(entry: TrackEntry): void; + dispose(entry: TrackEntry): void; + complete(entry: TrackEntry): void; + event(entry: TrackEntry, event: Event): void; + } +} +declare namespace sp.spine { + class AnimationStateData { + skeletonData: SkeletonData; + animationToMixTime: Map; + defaultMix: number; + constructor(skeletonData: SkeletonData); + setMix(fromName: string, toName: string, duration: number): void; + setMixWith(from: Animation, to: Animation, duration: number): void; + getMix(from: Animation, to: Animation): number; + } +} +declare namespace sp.spine { + class AssetManager implements Disposable { + private pathPrefix; + private textureLoader; + private assets; + private errors; + private toLoad; + private loaded; + constructor(textureLoader: (image: HTMLImageElement) => any, pathPrefix?: string); + private static downloadText; + private static downloadBinary; + loadBinary(path: string, success?: (path: string, binary: Uint8Array) => void, error?: (path: string, error: string) => void): void; + loadText(path: string, success?: (path: string, text: string) => void, error?: (path: string, error: string) => void): void; + loadTexture(path: string, success?: (path: string, image: HTMLImageElement) => void, error?: (path: string, error: string) => void): void; + loadTextureData(path: string, data: string, success?: (path: string, image: HTMLImageElement) => void, error?: (path: string, error: string) => void): void; + loadTextureAtlas(path: string, success?: (path: string, atlas: TextureAtlas) => void, error?: (path: string, error: string) => void): void; + get(path: string): any; + remove(path: string): void; + removeAll(): void; + isLoadingComplete(): boolean; + getToLoad(): number; + getLoaded(): number; + dispose(): void; + hasErrors(): boolean; + getErrors(): Map; + } +} +declare namespace sp.spine { + class AtlasAttachmentLoader implements AttachmentLoader { + atlas: TextureAtlas; + constructor(atlas: TextureAtlas); + newRegionAttachment(skin: Skin, name: string, path: string): RegionAttachment; + newMeshAttachment(skin: Skin, name: string, path: string): MeshAttachment; + newBoundingBoxAttachment(skin: Skin, name: string): BoundingBoxAttachment; + newPathAttachment(skin: Skin, name: string): PathAttachment; + newPointAttachment(skin: Skin, name: string): PointAttachment; + newClippingAttachment(skin: Skin, name: string): ClippingAttachment; + } +} +declare namespace sp.spine { + enum BlendMode { + Normal = 0, + Additive = 1, + Multiply = 2, + Screen = 3 + } +} +declare namespace sp.spine { + class Bone implements Updatable { + data: BoneData; + skeleton: Skeleton; + parent: Bone; + children: Bone[]; + x: number; + y: number; + rotation: number; + scaleX: number; + scaleY: number; + shearX: number; + shearY: number; + ax: number; + ay: number; + arotation: number; + ascaleX: number; + ascaleY: number; + ashearX: number; + ashearY: number; + appliedValid: boolean; + a: number; + b: number; + c: number; + d: number; + worldY: number; + worldX: number; + sorted: boolean; + active: boolean; + constructor(data: BoneData, skeleton: Skeleton, parent: Bone); + isActive(): boolean; + update(): void; + updateWorldTransform(): void; + updateWorldTransformWith(x: number, y: number, rotation: number, scaleX: number, scaleY: number, shearX: number, shearY: number): void; + setToSetupPose(): void; + getWorldRotationX(): number; + getWorldRotationY(): number; + getWorldScaleX(): number; + getWorldScaleY(): number; + updateAppliedTransform(): void; + worldToLocal(world: Vector2): Vector2; + localToWorld(local: Vector2): Vector2; + worldToLocalRotation(worldRotation: number): number; + localToWorldRotation(localRotation: number): number; + rotateWorld(degrees: number): void; + } +} +declare namespace sp.spine { + class BoneData { + index: number; + name: string; + parent: BoneData; + length: number; + x: number; + y: number; + rotation: number; + scaleX: number; + scaleY: number; + shearX: number; + shearY: number; + transformMode: TransformMode; + skinRequired: boolean; + color: Color; + constructor(index: number, name: string, parent: BoneData); + } + enum TransformMode { + Normal = 0, + OnlyTranslation = 1, + NoRotationOrReflection = 2, + NoScale = 3, + NoScaleOrReflection = 4 + } +} +declare namespace sp.spine { + abstract class ConstraintData { + name: string; + order: number; + skinRequired: boolean; + constructor(name: string, order: number, skinRequired: boolean); + } +} +declare namespace sp.spine { + class Event { + data: EventData; + intValue: number; + floatValue: number; + stringValue: string; + time: number; + volume: number; + balance: number; + constructor(time: number, data: EventData); + } +} +declare namespace sp.spine { + class EventData { + name: string; + intValue: number; + floatValue: number; + stringValue: string; + audioPath: string; + volume: number; + balance: number; + constructor(name: string); + } +} +declare namespace sp.spine { + class IkConstraint implements Updatable { + data: IkConstraintData; + bones: Array; + target: Bone; + bendDirection: number; + compress: boolean; + stretch: boolean; + mix: number; + softness: number; + active: boolean; + constructor(data: IkConstraintData, skeleton: Skeleton); + isActive(): boolean; + apply(): void; + update(): void; + apply1(bone: Bone, targetX: number, targetY: number, compress: boolean, stretch: boolean, uniform: boolean, alpha: number): void; + apply2(parent: Bone, child: Bone, targetX: number, targetY: number, bendDir: number, stretch: boolean, softness: number, alpha: number): void; + } +} +declare namespace sp.spine { + class IkConstraintData extends ConstraintData { + bones: BoneData[]; + target: BoneData; + bendDirection: number; + compress: boolean; + stretch: boolean; + uniform: boolean; + mix: number; + softness: number; + constructor(name: string); + } +} +declare namespace sp.spine { + class PathConstraint implements Updatable { + static NONE: number; + static BEFORE: number; + static AFTER: number; + static epsilon: number; + data: PathConstraintData; + bones: Array; + target: Slot; + position: number; + spacing: number; + rotateMix: number; + translateMix: number; + spaces: number[]; + positions: number[]; + world: number[]; + curves: number[]; + lengths: number[]; + segments: number[]; + active: boolean; + constructor(data: PathConstraintData, skeleton: Skeleton); + isActive(): boolean; + apply(): void; + update(): void; + computeWorldPositions(path: PathAttachment, spacesCount: number, tangents: boolean, percentPosition: boolean, percentSpacing: boolean): number[]; + addBeforePosition(p: number, temp: Array, i: number, out: Array, o: number): void; + addAfterPosition(p: number, temp: Array, i: number, out: Array, o: number): void; + addCurvePosition(p: number, x1: number, y1: number, cx1: number, cy1: number, cx2: number, cy2: number, x2: number, y2: number, out: Array, o: number, tangents: boolean): void; + } +} +declare namespace sp.spine { + class PathConstraintData extends ConstraintData { + bones: BoneData[]; + target: SlotData; + positionMode: PositionMode; + spacingMode: SpacingMode; + rotateMode: RotateMode; + offsetRotation: number; + position: number; + spacing: number; + rotateMix: number; + translateMix: number; + constructor(name: string); + } + enum PositionMode { + Fixed = 0, + Percent = 1 + } + enum SpacingMode { + Length = 0, + Fixed = 1, + Percent = 2 + } + enum RotateMode { + Tangent = 0, + Chain = 1, + ChainScale = 2 + } +} +declare namespace sp.spine { + class SharedAssetManager implements Disposable { + private pathPrefix; + private clientAssets; + private queuedAssets; + private rawAssets; + private errors; + constructor(pathPrefix?: string); + private queueAsset; + loadText(clientId: string, path: string): void; + loadJson(clientId: string, path: string): void; + loadTexture(clientId: string, textureLoader: (image: HTMLImageElement) => any, path: string): void; + get(clientId: string, path: string): any; + private updateClientAssets; + isLoadingComplete(clientId: string): boolean; + dispose(): void; + hasErrors(): boolean; + getErrors(): Map; + } +} +declare namespace sp.spine { + class Skeleton { + data: SkeletonData; + bones: Array; + slots: Array; + drawOrder: Array; + ikConstraints: Array; + transformConstraints: Array; + pathConstraints: Array; + _updateCache: Updatable[]; + updateCacheReset: Updatable[]; + skin: Skin; + color: Color; + time: number; + scaleX: number; + scaleY: number; + x: number; + y: number; + constructor(data: SkeletonData); + updateCache(): void; + sortIkConstraint(constraint: IkConstraint): void; + sortPathConstraint(constraint: PathConstraint): void; + sortTransformConstraint(constraint: TransformConstraint): void; + sortPathConstraintAttachment(skin: Skin, slotIndex: number, slotBone: Bone): void; + sortPathConstraintAttachmentWith(attachment: Attachment, slotBone: Bone): void; + sortBone(bone: Bone): void; + sortReset(bones: Array): void; + updateWorldTransform(): void; + setToSetupPose(): void; + setBonesToSetupPose(): void; + setSlotsToSetupPose(): void; + getRootBone(): Bone; + findBone(boneName: string): Bone; + findBoneIndex(boneName: string): number; + findSlot(slotName: string): Slot; + findSlotIndex(slotName: string): number; + setSkinByName(skinName: string): void; + setSkin(newSkin: Skin): void; + getAttachmentByName(slotName: string, attachmentName: string): Attachment; + getAttachment(slotIndex: number, attachmentName: string): Attachment; + setAttachment(slotName: string, attachmentName: string): void; + findIkConstraint(constraintName: string): IkConstraint; + findTransformConstraint(constraintName: string): TransformConstraint; + findPathConstraint(constraintName: string): PathConstraint; + getBounds(offset: Vector2, size: Vector2, temp?: Array): void; + update(delta: number): void; + } +} +declare namespace sp.spine { + class SkeletonBinary { + static AttachmentTypeValues: number[]; + static TransformModeValues: TransformMode[]; + static PositionModeValues: PositionMode[]; + static SpacingModeValues: SpacingMode[]; + static RotateModeValues: RotateMode[]; + static BlendModeValues: BlendMode[]; + static BONE_ROTATE: number; + static BONE_TRANSLATE: number; + static BONE_SCALE: number; + static BONE_SHEAR: number; + static SLOT_ATTACHMENT: number; + static SLOT_COLOR: number; + static SLOT_TWO_COLOR: number; + static PATH_POSITION: number; + static PATH_SPACING: number; + static PATH_MIX: number; + static CURVE_LINEAR: number; + static CURVE_STEPPED: number; + static CURVE_BEZIER: number; + scale: number; + attachmentLoader: AttachmentLoader; + private linkedMeshes; + constructor(attachmentLoader: AttachmentLoader); + readSkeletonData(binary: Uint8Array): SkeletonData; + private readSkin; + private readAttachment; + private readVertices; + private readFloatArray; + private readShortArray; + private readAnimation; + private readCurve; + setCurve(timeline: CurveTimeline, frameIndex: number, cx1: number, cy1: number, cx2: number, cy2: number): void; + } +} +declare namespace sp.spine { + class SkeletonBounds { + minX: number; + minY: number; + maxX: number; + maxY: number; + boundingBoxes: BoundingBoxAttachment[]; + polygons: ArrayLike[]; + private polygonPool; + update(skeleton: Skeleton, updateAabb: boolean): void; + aabbCompute(): void; + aabbContainsPoint(x: number, y: number): boolean; + aabbIntersectsSegment(x1: number, y1: number, x2: number, y2: number): boolean; + aabbIntersectsSkeleton(bounds: SkeletonBounds): boolean; + containsPoint(x: number, y: number): BoundingBoxAttachment; + containsPointPolygon(polygon: ArrayLike, x: number, y: number): boolean; + intersectsSegment(x1: number, y1: number, x2: number, y2: number): BoundingBoxAttachment; + intersectsSegmentPolygon(polygon: ArrayLike, x1: number, y1: number, x2: number, y2: number): boolean; + getPolygon(boundingBox: BoundingBoxAttachment): ArrayLike; + getWidth(): number; + getHeight(): number; + } +} +declare namespace sp.spine { + class SkeletonClipping { + private triangulator; + private clippingPolygon; + private clipOutput; + clippedVertices: number[]; + clippedTriangles: number[]; + private scratch; + private clipAttachment; + private clippingPolygons; + clipStart(slot: Slot, clip: ClippingAttachment): number; + clipEndWithSlot(slot: Slot): void; + clipEnd(): void; + isClipping(): boolean; + clipTriangles(vertices: ArrayLike, verticesLength: number, triangles: ArrayLike, trianglesLength: number, uvs: ArrayLike, light: Color, dark: Color, twoColor: boolean): void; + clip(x1: number, y1: number, x2: number, y2: number, x3: number, y3: number, clippingArea: Array, output: Array): boolean; + static makeClockwise(polygon: ArrayLike): void; + } +} +declare namespace sp.spine { + class SkeletonData { + name: string; + bones: BoneData[]; + slots: SlotData[]; + skins: Skin[]; + defaultSkin: Skin; + events: EventData[]; + animations: Animation[]; + ikConstraints: IkConstraintData[]; + transformConstraints: TransformConstraintData[]; + pathConstraints: PathConstraintData[]; + x: number; + y: number; + width: number; + height: number; + version: string; + hash: string; + fps: number; + imagesPath: string; + audioPath: string; + findBone(boneName: string): BoneData; + findBoneIndex(boneName: string): number; + findSlot(slotName: string): SlotData; + findSlotIndex(slotName: string): number; + findSkin(skinName: string): Skin; + findEvent(eventDataName: string): EventData; + findAnimation(animationName: string): Animation; + findIkConstraint(constraintName: string): IkConstraintData; + findTransformConstraint(constraintName: string): TransformConstraintData; + findPathConstraint(constraintName: string): PathConstraintData; + findPathConstraintIndex(pathConstraintName: string): number; + } +} +declare namespace sp.spine { + class SkeletonJson { + attachmentLoader: AttachmentLoader; + scale: number; + private linkedMeshes; + constructor(attachmentLoader: AttachmentLoader); + readSkeletonData(json: string | any): SkeletonData; + readAttachment(map: any, skin: Skin, slotIndex: number, name: string, skeletonData: SkeletonData): Attachment; + readVertices(map: any, attachment: VertexAttachment, verticesLength: number): void; + readAnimation(map: any, name: string, skeletonData: SkeletonData): void; + readCurve(map: any, timeline: CurveTimeline, frameIndex: number): void; + getValue(map: any, prop: string, defaultValue: any): any; + static blendModeFromString(str: string): BlendMode; + static positionModeFromString(str: string): PositionMode; + static spacingModeFromString(str: string): SpacingMode; + static rotateModeFromString(str: string): RotateMode; + static transformModeFromString(str: string): TransformMode; + } +} +declare namespace sp.spine { + class SkinEntry { + slotIndex: number; + name: string; + attachment: Attachment; + constructor(slotIndex: number, name: string, attachment: Attachment); + } + class Skin { + name: string; + attachments: Map[]; + bones: BoneData[]; + constraints: ConstraintData[]; + constructor(name: string); + setAttachment(slotIndex: number, name: string, attachment: Attachment): void; + addSkin(skin: Skin): void; + copySkin(skin: Skin): void; + getAttachment(slotIndex: number, name: string): Attachment; + removeAttachment(slotIndex: number, name: string): void; + getAttachments(): Array; + getAttachmentsForSlot(slotIndex: number, attachments: Array): void; + clear(): void; + attachAll(skeleton: Skeleton, oldSkin: Skin): void; + } +} +declare namespace sp.spine { + class Slot { + data: SlotData; + bone: Bone; + color: Color; + darkColor: Color; + private attachment; + private attachmentTime; + deform: number[]; + constructor(data: SlotData, bone: Bone); + getSkeleton(): Skeleton; + getAttachment(): Attachment; + setAttachment(attachment: Attachment): void; + setAttachmentTime(time: number): void; + getAttachmentTime(): number; + setToSetupPose(): void; + } +} +declare namespace sp.spine { + class SlotData { + index: number; + name: string; + boneData: BoneData; + color: Color; + darkColor: Color; + attachmentName: string; + blendMode: BlendMode; + constructor(index: number, name: string, boneData: BoneData); + } +} +declare namespace sp.spine { + abstract class Texture { + protected _image: HTMLImageElement; + constructor(image: HTMLImageElement); + getImage(): HTMLImageElement; + abstract setFilters(minFilter: TextureFilter, magFilter: TextureFilter): void; + abstract setWraps(uWrap: TextureWrap, vWrap: TextureWrap): void; + abstract dispose(): void; + static filterFromString(text: string): TextureFilter; + static wrapFromString(text: string): TextureWrap; + } + enum TextureFilter { + Nearest = 9728, + Linear = 9729, + MipMap = 9987, + MipMapNearestNearest = 9984, + MipMapLinearNearest = 9985, + MipMapNearestLinear = 9986, + MipMapLinearLinear = 9987 + } + enum TextureWrap { + MirroredRepeat = 33648, + ClampToEdge = 33071, + Repeat = 10497 + } + class TextureRegion { + renderObject: any; + u: number; + v: number; + u2: number; + v2: number; + width: number; + height: number; + rotate: boolean; + offsetX: number; + offsetY: number; + originalWidth: number; + originalHeight: number; + } + class FakeTexture extends Texture { + setFilters(minFilter: TextureFilter, magFilter: TextureFilter): void; + setWraps(uWrap: TextureWrap, vWrap: TextureWrap): void; + dispose(): void; + } +} +declare namespace sp.spine { + class TextureAtlas implements Disposable { + pages: TextureAtlasPage[]; + regions: TextureAtlasRegion[]; + constructor(atlasText: string, textureLoader: (path: string) => any); + private load; + findRegion(name: string): TextureAtlasRegion; + dispose(): void; + } + class TextureAtlasPage { + name: string; + minFilter: TextureFilter; + magFilter: TextureFilter; + uWrap: TextureWrap; + vWrap: TextureWrap; + texture: Texture; + width: number; + height: number; + } + class TextureAtlasRegion extends TextureRegion { + page: TextureAtlasPage; + name: string; + x: number; + y: number; + index: number; + rotate: boolean; + degrees: number; + texture: Texture; + } +} +declare namespace sp.spine { + class TransformConstraint implements Updatable { + data: TransformConstraintData; + bones: Array; + target: Bone; + rotateMix: number; + translateMix: number; + scaleMix: number; + shearMix: number; + temp: Vector2; + active: boolean; + constructor(data: TransformConstraintData, skeleton: Skeleton); + isActive(): boolean; + apply(): void; + update(): void; + applyAbsoluteWorld(): void; + applyRelativeWorld(): void; + applyAbsoluteLocal(): void; + applyRelativeLocal(): void; + } +} +declare namespace sp.spine { + class TransformConstraintData extends ConstraintData { + bones: BoneData[]; + target: BoneData; + rotateMix: number; + translateMix: number; + scaleMix: number; + shearMix: number; + offsetRotation: number; + offsetX: number; + offsetY: number; + offsetScaleX: number; + offsetScaleY: number; + offsetShearY: number; + relative: boolean; + local: boolean; + constructor(name: string); + } +} +declare namespace sp.spine { + class Triangulator { + private convexPolygons; + private convexPolygonsIndices; + private indicesArray; + private isConcaveArray; + private triangles; + private polygonPool; + private polygonIndicesPool; + triangulate(verticesArray: ArrayLike): Array; + decompose(verticesArray: Array, triangles: Array): Array>; + private static isConcave; + private static positiveArea; + private static winding; + } +} +declare namespace sp.spine { + interface Updatable { + update(): void; + isActive(): boolean; + } +} +declare namespace sp.spine { + interface Map { + [key: string]: T; + } + class IntSet { + array: number[]; + add(value: number): boolean; + contains(value: number): boolean; + remove(value: number): void; + clear(): void; + } + interface Disposable { + dispose(): void; + } + interface Restorable { + restore(): void; + } + class Color { + r: number; + g: number; + b: number; + a: number; + static WHITE: Color; + static RED: Color; + static GREEN: Color; + static BLUE: Color; + static MAGENTA: Color; + constructor(r?: number, g?: number, b?: number, a?: number); + set(r: number, g: number, b: number, a: number): this; + setFromColor(c: Color): this; + setFromString(hex: string): this; + add(r: number, g: number, b: number, a: number): this; + clamp(): this; + static rgba8888ToColor(color: Color, value: number): void; + static rgb888ToColor(color: Color, value: number): void; + } + class MathUtils { + static PI: number; + static PI2: number; + static radiansToDegrees: number; + static radDeg: number; + static degreesToRadians: number; + static degRad: number; + static clamp(value: number, min: number, max: number): number; + static cosDeg(degrees: number): number; + static sinDeg(degrees: number): number; + static signum(value: number): number; + static toInt(x: number): number; + static cbrt(x: number): number; + static randomTriangular(min: number, max: number): number; + static randomTriangularWith(min: number, max: number, mode: number): number; + } + abstract class Interpolation { + protected abstract applyInternal(a: number): number; + apply(start: number, end: number, a: number): number; + } + class Pow extends Interpolation { + protected power: number; + constructor(power: number); + applyInternal(a: number): number; + } + class PowOut extends Pow { + constructor(power: number); + applyInternal(a: number): number; + } + class Utils { + static SUPPORTS_TYPED_ARRAYS: boolean; + static arrayCopy(source: ArrayLike, sourceStart: number, dest: ArrayLike, destStart: number, numElements: number): void; + static setArraySize(array: Array, size: number, value?: any): Array; + static ensureArrayCapacity(array: Array, size: number, value?: any): Array; + static newArray(size: number, defaultValue: T): Array; + static newFloatArray(size: number): ArrayLike; + static newShortArray(size: number): ArrayLike; + static toFloatArray(array: Array): number[] | Float32Array; + static toSinglePrecision(value: number): number; + static webkit602BugfixHelper(alpha: number, blend: MixBlend): void; + static contains(array: Array, element: T, identity?: boolean): boolean; + } + class DebugUtils { + static logBones(skeleton: Skeleton): void; + } + class Pool { + private items; + private instantiator; + constructor(instantiator: () => T); + obtain(): T; + free(item: T): void; + freeAll(items: ArrayLike): void; + clear(): void; + } + class Vector2 { + x: number; + y: number; + constructor(x?: number, y?: number); + set(x: number, y: number): Vector2; + length(): number; + normalize(): this; + } + class TimeKeeper { + maxDelta: number; + framesPerSecond: number; + delta: number; + totalTime: number; + private lastTime; + private frameCount; + private frameTime; + update(): void; + } + interface ArrayLike { + length: number; + [n: number]: T; + } + class WindowedMean { + values: Array; + addedValues: number; + lastValue: number; + mean: number; + dirty: boolean; + constructor(windowSize?: number); + hasEnoughData(): boolean; + addValue(value: number): void; + getMean(): number; + } +} +declare namespace sp.spine { + interface VertexEffect { + begin(skeleton: Skeleton): void; + transform(position: Vector2, uv: Vector2, light: Color, dark: Color): void; + end(): void; + } +} +interface Math { + fround(n: number): number; +} +declare namespace sp.spine { + abstract class Attachment { + name: string; + constructor(name: string); + abstract copy(): Attachment; + } + abstract class VertexAttachment extends Attachment { + private static nextID; + id: number; + bones: Array; + vertices: ArrayLike; + worldVerticesLength: number; + deformAttachment: VertexAttachment; + constructor(name: string); + computeWorldVertices(slot: Slot, start: number, count: number, worldVertices: ArrayLike, offset: number, stride: number): void; + copyTo(attachment: VertexAttachment): void; + } +} +declare namespace sp.spine { + interface AttachmentLoader { + newRegionAttachment(skin: Skin, name: string, path: string): RegionAttachment; + newMeshAttachment(skin: Skin, name: string, path: string): MeshAttachment; + newBoundingBoxAttachment(skin: Skin, name: string): BoundingBoxAttachment; + newPathAttachment(skin: Skin, name: string): PathAttachment; + newPointAttachment(skin: Skin, name: string): PointAttachment; + newClippingAttachment(skin: Skin, name: string): ClippingAttachment; + } +} +declare namespace sp.spine { + enum AttachmentType { + Region = 0, + BoundingBox = 1, + Mesh = 2, + LinkedMesh = 3, + Path = 4, + Point = 5, + Clipping = 6 + } +} +declare namespace sp.spine { + class BoundingBoxAttachment extends VertexAttachment { + color: Color; + constructor(name: string); + copy(): Attachment; + } +} +declare namespace sp.spine { + class ClippingAttachment extends VertexAttachment { + endSlot: SlotData; + color: Color; + constructor(name: string); + copy(): Attachment; + } +} +declare namespace sp.spine { + class MeshAttachment extends VertexAttachment { + region: TextureRegion; + path: string; + regionUVs: ArrayLike; + uvs: ArrayLike; + triangles: Array; + color: Color; + width: number; + height: number; + hullLength: number; + edges: Array; + private parentMesh; + tempColor: Color; + constructor(name: string); + updateUVs(): void; + getParentMesh(): MeshAttachment; + setParentMesh(parentMesh: MeshAttachment): void; + copy(): Attachment; + newLinkedMesh(): MeshAttachment; + } +} +declare namespace sp.spine { + class PathAttachment extends VertexAttachment { + lengths: Array; + closed: boolean; + constantSpeed: boolean; + color: Color; + constructor(name: string); + copy(): Attachment; + } +} +declare namespace sp.spine { + class PointAttachment extends VertexAttachment { + x: number; + y: number; + rotation: number; + color: Color; + constructor(name: string); + computeWorldPosition(bone: Bone, point: Vector2): Vector2; + computeWorldRotation(bone: Bone): number; + copy(): Attachment; + } +} +declare namespace sp.spine { + class RegionAttachment extends Attachment { + static OX1: number; + static OY1: number; + static OX2: number; + static OY2: number; + static OX3: number; + static OY3: number; + static OX4: number; + static OY4: number; + static X1: number; + static Y1: number; + static C1R: number; + static C1G: number; + static C1B: number; + static C1A: number; + static U1: number; + static V1: number; + static X2: number; + static Y2: number; + static C2R: number; + static C2G: number; + static C2B: number; + static C2A: number; + static U2: number; + static V2: number; + static X3: number; + static Y3: number; + static C3R: number; + static C3G: number; + static C3B: number; + static C3A: number; + static U3: number; + static V3: number; + static X4: number; + static Y4: number; + static C4R: number; + static C4G: number; + static C4B: number; + static C4A: number; + static U4: number; + static V4: number; + x: number; + y: number; + scaleX: number; + scaleY: number; + rotation: number; + width: number; + height: number; + color: Color; + path: string; + rendererObject: any; + region: TextureRegion; + offset: ArrayLike; + uvs: ArrayLike; + tempColor: Color; + constructor(name: string); + updateOffset(): void; + setRegion(region: TextureRegion): void; + computeWorldVertices(bone: Bone, worldVertices: ArrayLike, offset: number, stride: number): void; + copy(): Attachment; + } +} +declare namespace sp.spine { + class JitterEffect implements VertexEffect { + jitterX: number; + jitterY: number; + constructor(jitterX: number, jitterY: number); + begin(skeleton: Skeleton): void; + transform(position: Vector2, uv: Vector2, light: Color, dark: Color): void; + end(): void; + } +} +declare namespace sp.spine { + class SwirlEffect implements VertexEffect { + static interpolation: PowOut; + centerX: number; + centerY: number; + radius: number; + angle: number; + private worldX; + private worldY; + constructor(radius: number); + begin(skeleton: Skeleton): void; + transform(position: Vector2, uv: Vector2, light: Color, dark: Color): void; + end(): void; + } +} + +/** + * API for jsb module + * Author: haroel + * Homepage: https://github.com/haroel/creatorexDTS + */ +declare namespace jsb{ + export module reflection{ + /** + * https://docs.cocos.com/creator/manual/zh/advanced-topics/java-reflection.html + * call OBJC/Java static methods + * + * @param className + * @param methodName + * @param methodSignature + * @param parameters + */ + export function callStaticMethod (className: string, methodName: string, methodSignature: string, ...parameters:any): any; + } + /** + * 下载任务对象 + */ + export type DownloaderTask = { requestURL: string, storagePath: string, identifier: string }; + + /** + * Http file downloader for jsb! + */ + export class Downloader{ + /** + * create a download task + * @param requestURL + * @param storagePath + * @param identifier + */ + createDownloadFileTask (requestURL:string, storagePath:string, identifier?:string): DownloaderTask; + + setOnFileTaskSuccess (onSucceed: (task: DownloaderTask) => void): void; + + setOnTaskProgress (onProgress: (task: DownloaderTask, bytesReceived: number, totalBytesReceived: number, totalBytesExpected: number) => void): void; + + setOnTaskError (onError: (task: DownloaderTask, errorCode: number, errorCodeInternal: number, errorStr: string) => void): void; + + } + + export interface ManifestAsset { + md5: string; + path: string; + compressed: boolean; + size: number; + downloadState: number; + } + + export class Manifest { + constructor (manifestUrl: string); + constructor (content: string, manifestRoot: string); + parseFile (manifestUrl: string): void; + parseJSONString (content: string, manifestRoot: string): void; + + getManifestRoot (): string; + getManifestFileUrl (): string; + getVersionFileUrl (): string; + getSearchPaths (): [string]; + getVersion (): string; + getPackageUrl (): boolean; + + setUpdating (isUpdating: boolean): void; + isUpdating (): boolean; + isVersionLoaded (): boolean; + isLoaded (): boolean; + } + + export class EventAssetsManager { + // EventCode + static ERROR_NO_LOCAL_MANIFEST: number; + static ERROR_DOWNLOAD_MANIFEST: number; + static ERROR_PARSE_MANIFEST: number; + static NEW_VERSION_FOUND: number; + static ALREADY_UP_TO_DATE: number; + static UPDATE_PROGRESSION: number; + static ASSET_UPDATED: number; + static ERROR_UPDATING: number; + static UPDATE_FINISHED: number; + static UPDATE_FAILED: number; + static ERROR_DECOMPRESS: number; + + constructor (eventName: string, manager: AssetsManager, eventCode: number, + assetId?: string, message?: string, curleCode?: number, curlmCode?: number); + getAssetsManagerEx (): AssetsManager; + isResuming (): boolean; + + getDownloadedFiles (): number; + getDownloadedBytes (): number; + getTotalFiles (): number; + getTotalBytes (): number; + getPercent (): number; + getPercentByFile (): number; + + getEventCode (): number; + getMessage (): string; + getAssetId (): string; + getCURLECode (): number; + getCURLMCode (): number; + } + + export module AssetsManager { + export enum State { + UNINITED, + UNCHECKED, + PREDOWNLOAD_VERSION, + DOWNLOADING_VERSION, + VERSION_LOADED, + PREDOWNLOAD_MANIFEST, + DOWNLOADING_MANIFEST, + MANIFEST_LOADED, + NEED_UPDATE, + READY_TO_UPDATE, + UPDATING, + UNZIPPING, + UP_TO_DATE, + FAIL_TO_UPDATE, + } + } + + export class AssetsManager { + constructor (manifestUrl: string, storagePath: string, versionCompareHandle?: (versionA: string, versionB: string) => number); + static create (manifestUrl: string, storagePath: string): AssetsManager; + + getState (): AssetsManager.State; + getStoragePath (): string + getMaxConcurrentTask (): number; + // setMaxConcurrentTask (max: number): void; // actually not supported + + checkUpdate (): void; + prepareUpdate (): void; + update (): void; + isResuming (): boolean; + + getDownloadedFiles (): number; + getDownloadedBytes (): number; + getTotalFiles (): number; + getTotalBytes (): number; + downloadFailedAssets (): void; + + getLocalManifest (): Manifest; + loadLocalManifest (manifestUrl: string): boolean; + loadLocalManifest (localManifest: Manifest, storagePath: string): boolean; + getRemoteManifest (): Manifest; + loadRemoteManifest (remoteManifest: Manifest): boolean; + + /** + * Setup your own version compare handler, versionA and B is versions in string. + * if the return value greater than 0, versionA is greater than B, + * if the return value equals 0, versionA equals to B, + * if the return value smaller than 0, versionA is smaller than B. + */ + setVersionCompareHandle (versionCompareHandle?: (versionA: string, versionB: string) => number): void; + /** + * Setup the verification callback, Return true if the verification passed, otherwise return false + */ + setVerifyCallback (verifyCallback: (path: string, asset: ManifestAsset) => boolean): void; + setEventCallback (eventCallback: (event: EventAssetsManager) => void): void; + } + + /** + * FileUtils Helper class to handle file operations. + */ + export module fileUtils{ + /** + * Checks whether the path is an absolute path. + * + * @note On Android, if the parameter passed in is relative to "@assets/", this method will treat it as an absolute path. + * Also on Blackberry, path starts with "app/native/Resources/" is treated as an absolute path. + * + * @param path The path that needs to be checked. + * @return True if it's an absolute path, false if not. + */ + export function isAbsolutePath (path:string):boolean; + /** Returns the fullpath for a given filename. + + First it will try to get a new filename from the "filenameLookup" dictionary. + If a new filename can't be found on the dictionary, it will use the original filename. + Then it will try to obtain the full path of the filename using the FileUtils search rules: resolutions, and search paths. + The file search is based on the array element order of search paths and resolution directories. + + For instance: + + We set two elements("/mnt/sdcard/", "internal_dir/") to search paths vector by setSearchPaths, + and set three elements("resources-ipadhd/", "resources-ipad/", "resources-iphonehd") + to resolutions vector by setSearchResolutionsOrder. The "internal_dir" is relative to "Resources/". + + If we have a file named 'sprite.png', the mapping in fileLookup dictionary contains `key: sprite.png -> value: sprite.pvr.gz`. + Firstly, it will replace 'sprite.png' with 'sprite.pvr.gz', then searching the file sprite.pvr.gz as follows: + + /mnt/sdcard/resources-ipadhd/sprite.pvr.gz (if not found, search next) + /mnt/sdcard/resources-ipad/sprite.pvr.gz (if not found, search next) + /mnt/sdcard/resources-iphonehd/sprite.pvr.gz (if not found, search next) + /mnt/sdcard/sprite.pvr.gz (if not found, search next) + internal_dir/resources-ipadhd/sprite.pvr.gz (if not found, search next) + internal_dir/resources-ipad/sprite.pvr.gz (if not found, search next) + internal_dir/resources-iphonehd/sprite.pvr.gz (if not found, search next) + internal_dir/sprite.pvr.gz (if not found, return "sprite.png") + + If the filename contains relative path like "gamescene/uilayer/sprite.png", + and the mapping in fileLookup dictionary contains `key: gamescene/uilayer/sprite.png -> value: gamescene/uilayer/sprite.pvr.gz`. + The file search order will be: + + /mnt/sdcard/gamescene/uilayer/resources-ipadhd/sprite.pvr.gz (if not found, search next) + /mnt/sdcard/gamescene/uilayer/resources-ipad/sprite.pvr.gz (if not found, search next) + /mnt/sdcard/gamescene/uilayer/resources-iphonehd/sprite.pvr.gz (if not found, search next) + /mnt/sdcard/gamescene/uilayer/sprite.pvr.gz (if not found, search next) + internal_dir/gamescene/uilayer/resources-ipadhd/sprite.pvr.gz (if not found, search next) + internal_dir/gamescene/uilayer/resources-ipad/sprite.pvr.gz (if not found, search next) + internal_dir/gamescene/uilayer/resources-iphonehd/sprite.pvr.gz (if not found, search next) + internal_dir/gamescene/uilayer/sprite.pvr.gz (if not found, return "gamescene/uilayer/sprite.png") + + If the new file can't be found on the file system, it will return the parameter filename directly. + + This method was added to simplify multiplatform support. Whether you are using cocos2d-js or any cross-compilation toolchain like StellaSDK or Apportable, + you might need to load different resources for a given file in the different platforms. + + @since v2.1 + */ + export function fullPathForFilename (filename:string):string; + /** + * Gets string from a file. + */ + export function getStringFromFile (filename:string):string; + /** + * Removes a file. + * + * @param filepath The full path of the file, it must be an absolute path. + * @return True if the file have been removed successfully, false if not. + */ + export function removeFile (filepath:string):boolean; + /** + * Checks whether the path is a directory. + * + * @param dirPath The path of the directory, it could be a relative or an absolute path. + * @return True if the directory exists, false if not. + */ + export function isDirectoryExist (dirPath:string):boolean; + /** + * Normalize: remove . and .. + * @param filepath + */ + export function normalizePath (filepath:string):string; + /** + * Get default resource root path. + */ + export function getDefaultResourceRootPath ():string; + /** + * Loads the filenameLookup dictionary from the contents of a filename. + * + * @note The plist file name should follow the format below: + * + * @code + * + * + * + * + * filenames + * + * sounds/click.wav + * sounds/click.caf + * sounds/endgame.wav + * sounds/endgame.caf + * sounds/gem-0.wav + * sounds/gem-0.caf + * + * metadata + * + * version + * 1 + * + * + * + * @endcode + * @param filename The plist file name. + * + @since v2.1 + * @js loadFilenameLookup + * @lua loadFilenameLookup + */ + export function loadFilenameLookup (filepath:string):void; + /** Checks whether to pop up a message box when failed to load an image. + * @return True if pop up a message box when failed to load an image, false if not. + */ + export function isPopupNotify ():boolean; + /** + * Sets whether to pop-up a message box when failed to load an image. + */ + export function setPopupNotify (notify:boolean):void; + + // Converts the contents of a file to a ValueVector. + // This method is used internally. + export function getValueVectorFromFile (filepath:string):Array; + /** + * Gets the array of search paths. + * + * @return The array of search paths which may contain the prefix of default resource root path. + * @note In best practise, getter function should return the value of setter function passes in. + * But since we should not break the compatibility, we keep using the old logic. + * Therefore, If you want to get the original search paths, please call 'getOriginalSearchPaths()' instead. + * @see fullPathForFilename(const char*). + * @lua NA + */ + export function getSearchPaths ():Array; + /** + * + * @param filepath + */ + export function getFileDir (filepath:string):string; + /** + * write a ValueMap into a plist file + * + *@param dict the ValueMap want to save (key,value) + *@param fullPath The full path to the file you want to save a string + *@return bool + */ + export function writeToFile ( valueMap:any ):boolean; + /** + * Gets the original search path array set by 'setSearchPaths' or 'addSearchPath'. + * @return The array of the original search paths + */ + export function getOriginalSearchPaths ():Array; + /** + * List all files in a directory. + * + * @param dirPath The path of the directory, it could be a relative or an absolute path. + * @return File paths in a string vector + */ + export function listFiles (filepath:string):Array; + /** + * Converts the contents of a file to a ValueMap. + * @param filename The filename of the file to gets content. + * @return ValueMap of the file contents. + * @note This method is used internally. + */ + export function getValueMapFromFile (filepath:string):any; + /** + * Retrieve the file size. + * + * @note If a relative path was passed in, it will be inserted a default root path at the beginning. + * @param filepath The path of the file, it could be a relative or absolute path. + * @return The file size. + */ + export function getFileSize (filepath:string):number; + + /** Converts the contents of a file to a ValueMap. + * This method is used internally. + */ + export function getValueMapFromData (filedata:string,filesize:number):any; + /** + * Removes a directory. + * + * @param dirPath The full path of the directory, it must be an absolute path. + * @return True if the directory have been removed successfully, false if not. + */ + export function removeDirectory (dirPath:string):boolean; + /** + * Sets the array of search paths. + * + * You can use this array to modify the search path of the resources. + * If you want to use "themes" or search resources in the "cache", you can do it easily by adding new entries in this array. + * + * @note This method could access relative path and absolute path. + * If the relative path was passed to the vector, FileUtils will add the default resource directory before the relative path. + * For instance: + * On Android, the default resource root path is "@assets/". + * If "/mnt/sdcard/" and "resources-large" were set to the search paths vector, + * "resources-large" will be converted to "@assets/resources-large" since it was a relative path. + * + * @param searchPaths The array contains search paths. + * @see fullPathForFilename(const char*) + * @since v2.1 + * In js:var setSearchPaths(var jsval); + * @lua NA + */ + export function setSearchPaths ( searchPath:Array):void; + /** + * write a string into a file + * + * @param dataStr the string want to save + * @param fullPath The full path to the file you want to save a string + * @return bool True if write success + */ + export function writeStringToFile (dataStr:string,fullPath:string):boolean; + /** + * Sets the array that contains the search order of the resources. + * + * @param searchResolutionsOrder The source array that contains the search order of the resources. + * @see getSearchResolutionsOrder(), fullPathForFilename(const char*). + * @since v2.1 + * In js:var setSearchResolutionsOrder(var jsval) + * @lua NA + */ + export function setSearchResolutionsOrder (searchResolutionsOrder:Array):void; + /** + * Append search order of the resources. + * + * @see setSearchResolutionsOrder(), fullPathForFilename(). + * @since v2.1 + */ + export function addSearchResolutionsOrder (order:string,front:boolean):void; + /** + * Add search path. + * + * @since v2.1 + */ + export function addSearchPath (path:string,front:boolean):void; + /** + * write ValueVector into a plist file + * + *@param vecData the ValueVector want to save + *@param fullPath The full path to the file you want to save a string + *@return bool + */ + export function writeValueVectorToFile (vecData:Array,fullPath:string):boolean; + /** + * Checks whether a file exists. + * + * @note If a relative path was passed in, it will be inserted a default root path at the beginning. + * @param filename The path of the file, it could be a relative or absolute path. + * @return True if the file exists, false if not. + */ + export function isFileExist (filename:string):boolean; + /**©∫ + * Purges full path caches. + */ + export function purgeCachedEntries ():void; + /** + * Gets full path from a file name and the path of the relative file. + * @param filename The file name. + * @param relativeFile The path of the relative file. + * @return The full path. + * e.g. filename: hello.png, pszRelativeFile: /User/path1/path2/hello.plist + * Return: /User/path1/path2/hello.pvr (If there a a key(hello.png)-value(hello.pvr) in FilenameLookup dictionary. ) + * + */ + export function fullPathFromRelativeFile (filename:string,relativeFile:string):string; + /** + * Windows fopen can't support UTF-8 filename + * Need convert all parameters fopen and other 3rd-party libs + * + * @param filenameUtf8 std::string name file for conversion from utf-8 + * @return std::string ansi filename in current locale + */ + export function getSuitableFOpen (filenameUtf8:string):string; + /** + * write ValueMap into a plist file + * + *@param dict the ValueMap want to save + *@param fullPath The full path to the file you want to save a string + *@return bool + */ + export function writeValueMapToFile (dict:any,fullPath:string):string; + /** + * Gets filename extension is a suffix (separated from the base filename by a dot) in lower case. + * Examples of filename extensions are .png, .jpeg, .exe, .dmg and .txt. + * @param filePath The path of the file, it could be a relative or absolute path. + * @return suffix for filename in lower case or empty if a dot not found. + */ + export function getFileExtension (filePath:string):string; + /** + * Sets writable path. + */ + export function setWritablePath (writablePath:string):void; + /** + * Set default resource root path. + */ + export function setDefaultResourceRootPath (filepath:string):void; + + /** + * Gets the array that contains the search order of the resources. + * + * @see setSearchResolutionsOrder(const std::vector&), fullPathForFilename(const char*). + * @since v2.1 + * @lua NA + */ + export function getSearchResolutionsOrder ():Array; + /** + * Creates a directory. + * + * @param dirPath The path of the directory, it must be an absolute path. + * @return True if the directory have been created successfully, false if not. + */ + export function createDirectory (dirPath:string):string; + /** + * List all files recursively in a directory. + * + * @param dirPath The path of the directory, it could be a relative or an absolute path. + * @return File paths in a string vector + */ + export function listFilesRecursively (dirPath:string, files:Array):void; + /** + * Gets the writable path. + * @return The path that can be write/read a file in + */ + export function getWritablePath ():string; + } +} + +/** Running in the editor. */ +declare const CC_EDITOR: boolean; +/** Preview in browser or simulator. */ +declare const CC_PREVIEW: boolean; +/** Running in the editor or preview. */ +declare const CC_DEV: boolean; +/** Running in the editor or preview, or build in debug mode. */ +declare const CC_DEBUG: boolean; +/** Running in published project. */ +declare const CC_BUILD: boolean; +/** Running in native platforms (mobile app, desktop app, or simulator). */ +declare const CC_JSB: boolean; +/** Running in runtime environments. */ +declare const CC_RUNTIME: boolean; +/** Running in the engine's unit test. */ +declare const CC_TEST: boolean; +/** Running in the WeChat Mini Game. */ +declare const CC_WECHATGAME: boolean; diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..80c2563 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "experimentalDecorators": true + }, + "exclude": [ + "node_modules", + ".vscode", + "library", + "local", + "settings", + "temp" + ] +} \ No newline at end of file diff --git a/project.config.json b/project.config.json new file mode 100644 index 0000000..638eeae --- /dev/null +++ b/project.config.json @@ -0,0 +1,36 @@ +{ + "setting": { + "es6": true, + "postcss": true, + "minified": true, + "uglifyFileName": false, + "enhance": true, + "packNpmRelationList": [], + "babelSetting": { + "ignore": [], + "disablePlugins": [], + "outputPath": "" + }, + "useCompilerPlugins": false, + "compileWorklet": false, + "uploadWithSourceMap": true, + "packNpmManually": false, + "minifyWXSS": true, + "minifyWXML": true, + "localPlugins": false, + "disableUseStrict": false, + "condition": false, + "swc": false, + "disableSWC": true + }, + "compileType": "game", + "simulatorPluginLibVersion": {}, + "packOptions": { + "ignore": [], + "include": [] + }, + "isGameTourist": false, + "appid": "wxdd145ced49158a1e", + "editorSetting": {}, + "libVersion": "3.8.10" +} \ No newline at end of file diff --git a/project.json b/project.json new file mode 100644 index 0000000..c8443f0 --- /dev/null +++ b/project.json @@ -0,0 +1,8 @@ +{ + "engine": "cocos-creator-js", + "packages": "packages", + "name": "NewProject_1", + "id": "eee34f22-3954-4024-adc7-92336ecd4d3f", + "version": "2.4.15", + "isNew": false +} \ No newline at end of file diff --git a/project.private.config.json b/project.private.config.json new file mode 100644 index 0000000..61846ef --- /dev/null +++ b/project.private.config.json @@ -0,0 +1,22 @@ +{ + "libVersion": "3.8.10", + "projectname": "colorBlcok", + "setting": { + "urlCheck": true, + "coverView": true, + "lazyloadPlaceholderEnable": false, + "skylineRenderEnable": false, + "preloadBackgroundData": false, + "autoAudits": false, + "showShadowRootInWxmlPanel": true, + "compileHotReLoad": true, + "useApiHook": true, + "useApiHostProcess": true, + "useStaticServer": false, + "useLanDebug": false, + "showES6CompileOption": false, + "checkInvalidKey": true, + "ignoreDevUnusedFiles": true, + "bigPackageSizeSupport": false + } +} \ No newline at end of file diff --git a/settings/builder.json b/settings/builder.json new file mode 100644 index 0000000..c8064ef --- /dev/null +++ b/settings/builder.json @@ -0,0 +1,63 @@ +{ + "title": "ColorBlock", + "packageName": "org.cocos2d.demo", + "startScene": "ea96c58a-b731-4349-bcfc-c446571823ad", + "excludeScenes": [], + "orientation": { + "landscapeRight": true, + "landscapeLeft": true, + "portrait": false, + "upsideDown": false + }, + "webOrientation": "portrait", + "inlineSpriteFrames": true, + "inlineSpriteFrames_native": true, + "mainCompressionType": "subpackage", + "mainIsRemote": false, + "optimizeHotUpdate": false, + "md5Cache": true, + "nativeMd5Cache": true, + "encryptJs": true, + "xxteaKey": "07ac496c-82b0-4f", + "zipCompressJs": true, + "fb-instant-games": {}, + "android": { + "packageName": "org.cocos2d.demo", + "REMOTE_SERVER_ROOT": "" + }, + "ios": { + "packageName": "org.cocos2d.demo", + "REMOTE_SERVER_ROOT": "", + "ios_enable_jit": true + }, + "mac": { + "packageName": "org.cocos2d.demo", + "REMOTE_SERVER_ROOT": "", + "width": 1280, + "height": 720 + }, + "win32": { + "REMOTE_SERVER_ROOT": "", + "width": 1280, + "height": 720 + }, + "android-instant": { + "packageName": "org.cocos2d.demo", + "REMOTE_SERVER_ROOT": "", + "pathPattern": "", + "scheme": "https", + "host": "", + "skipRecord": false, + "recordPath": "" + }, + "appBundle": false, + "agreements": { + "20200904180755": false, + "20220901093235": false + }, + "harmonyos-next": { + "packageName": "org.cocos2d.demo", + "REMOTE_SERVER_ROOT": "", + "jsEngine": "JSVM" + } +} diff --git a/settings/collide_system_cfg.json b/settings/collide_system_cfg.json new file mode 100644 index 0000000..146bfd2 --- /dev/null +++ b/settings/collide_system_cfg.json @@ -0,0 +1 @@ +{"group_arr":[{"name":"default","id":1,"arr":[1,1]},{"name":"role","id":2,"arr":[6,5,4]},{"name":"role_bullet","id":3,"arr":[4]},{"name":"enemy","id":4,"arr":[2,3]},{"name":"enemy_bullet","id":5,"arr":[2]},{"name":"prop","id":6,"arr":[2]}],"switch_auto_run":true,"switch_print_log":false,"switch_quad_tree":true,"max_node_len":10,"max_node_level":4,"active_area_x":0,"active_area_y":0,"active_area_width":1080,"active_area_height":2300,"per_frame":60} \ No newline at end of file diff --git a/settings/project.json b/settings/project.json new file mode 100644 index 0000000..b737fff --- /dev/null +++ b/settings/project.json @@ -0,0 +1,61 @@ +{ + "last-module-event-record-time": 1758181829513, + "group-list": [ + "default", + "Map" + ], + "collision-matrix": [ + [ + true + ], + [ + false, + false + ] + ], + "excluded-modules": [ + "Label Effect", + "NodePool", + "Native Socket", + "Physics", + "PageView", + "PageViewIndicator", + "RichText", + "StudioComponent", + "TiledMap", + "VideoPlayer", + "3D", + "3D Primitive", + "3D Physics/cannon.js", + "3D Physics/Builtin", + "3D Particle" + ], + "preview-port": 7456, + "design-resolution-width": 960, + "design-resolution-height": 640, + "fit-width": true, + "fit-height": false, + "use-project-simulator-setting": false, + "simulator-orientation": false, + "use-customize-simulator": true, + "simulator-resolution": { + "width": 960, + "height": 640 + }, + "clear-simulator-cache": true, + "facebook": { + "enable": false, + "appID": "", + "live": { + "enable": false + }, + "audience": { + "enable": false + } + }, + "start-scene": "ea96c58a-b731-4349-bcfc-c446571823ad", + "migrate-history": [ + "cloud-function" + ], + "assets-sort-type": "name" +} diff --git a/settings/services.json b/settings/services.json new file mode 100644 index 0000000..599b09e --- /dev/null +++ b/settings/services.json @@ -0,0 +1,6 @@ +{ + "game": { + "name": "未知游戏", + "appid": "UNKNOW" + } +} \ No newline at end of file diff --git a/settings/wechatgame.json b/settings/wechatgame.json new file mode 100644 index 0000000..503f91d --- /dev/null +++ b/settings/wechatgame.json @@ -0,0 +1,8 @@ +{ + "appid": "wxdd145ced49158a1e", + "orientation": "portrait", + "separate_engine": true, + "REMOTE_SERVER_ROOT": "", + "subContext": "SubContextView", + "startSceneAssetBundle": true +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..93c0b22 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ "es2015", "es2017", "dom" ], + "target": "es5", + "experimentalDecorators": true, + "skipLibCheck": true, + "outDir": "temp/vscode-dist", + "forceConsistentCasingInFileNames": true + }, + "exclude": [ + "node_modules", + "library", + "local", + "temp", + "build", + "settings" + ] +} \ No newline at end of file